Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
19 changes: 18 additions & 1 deletion .github/workflows/deploy-docs.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,8 @@ on:
- 'docs/site/**'
- 'mkdocs.yml'
- '.github/workflows/deploy-docs.yml'
release:
types: [published]
workflow_dispatch:

permissions:
Expand All @@ -34,7 +36,22 @@ jobs:
- name: Install MkDocs and theme
run: |
pip install 'mkdocs-material==9.*'


- name: Regenerate changelog from GitHub Releases
env:
GH_TOKEN: ${{ github.token }}
run: |
{
echo "# Changelog"
echo
echo "Release notes for \`cu\`. This page is regenerated from [GitHub Releases](https://github.com/timimsms/cu/releases) on every documentation deploy."
echo
gh api "repos/${GITHUB_REPOSITORY}/releases" --paginate \
--jq '.[] | select(.draft == false) | "## [\(.tag_name)](\(.html_url)) — \(.published_at[:10])\n\n" + ((.body // "") | gsub("\r";"") | sub("^## ClickUp CLI[^\n]*\n";"") | split("\n## Installation")[0] | gsub("\n## ";"\n### ") | gsub("\n### Changelog\n";"\n")) + "\n"' \
| sed -E 's/^\* [0-9a-f]{40}: /* /; s/ \([^()]+ <[^>]+>\)$//'
} | cat -s > docs/site/changelog.md
head -5 docs/site/changelog.md

- name: Build documentation
run: mkdocs build --strict --site-dir _site

Expand Down
2 changes: 1 addition & 1 deletion LICENSE
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
MIT License

Copyright (c) 2025 Tim
Copyright (c) 2025-2026 Tim Walsh

Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
Expand Down
1 change: 1 addition & 0 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
# cu - ClickUp CLI

[![CI](https://github.com/timimsms/cu/actions/workflows/ci.yml/badge.svg)](https://github.com/timimsms/cu/actions/workflows/ci.yml)
[![Release](https://img.shields.io/github/v/release/timimsms/cu)](https://github.com/timimsms/cu/releases/latest)
[![Documentation](https://img.shields.io/badge/docs-timimsms.github.io%2Fcu-blue)](https://timimsms.github.io/cu/)

> **Note**: `cu` is an unofficial, community-maintained project and is not affiliated with or endorsed by ClickUp.
Expand Down
53 changes: 53 additions & 0 deletions docs/site/changelog.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,53 @@
# Changelog

Release notes for `cu`. This page is regenerated from [GitHub Releases](https://github.com/timimsms/cu/releases) on every documentation deploy.

## [v0.1.0](https://github.com/timimsms/cu/releases/tag/v0.1.0) — 2026-07-15

### New Features
* feat: Add authentication, output formatting, and error handling
* feat: Complete API client foundation with ClickUp SDK integration
* feat: Implement Phase 2 core features - basic commands
* feat: Initialize project structure with Cobra CLI framework
* feat: add API passthrough command for direct API access
* feat: add GoReleaser config and release workflow for distribution
* feat: add MkDocs documentation site setup
* feat: add advanced filtering and sorting to task list
* feat: add cache management commands
* feat: add command documentation generation
* feat: add comprehensive task search functionality
* feat: add documentation build test to CI workflow
* feat: add interactive mode for task management
* feat: add project-specific configuration support
* feat: add task close and reopen commands
* feat: add task comment management commands
* feat: add task export functionality with multiple formats
* feat: implement bulk operations for task management
* feat: implement task create command
* feat: implement task update command
* feat: implement task view command
* feat: implement user ID lookup for assignee management
* feat: register new commands in root command structure
### Bug Fixes
* fix: Add permissions for SARIF upload in security scan
* fix: Resolve CI/CD pipeline failures
* fix: Resolve gosec security scan failure
* fix: correct mkdocstrings-go package installation in deploy-docs workflow
* fix: improve CI script formatting checks
* fix: make cache tests platform-agnostic
* fix: remove mkdocstrings dependencies from deploy-docs workflow
* fix: remove mkdocstrings plugin from documentation configuration
* fix: remove unused resolveComment variable
* fix: resolve CI linting issues
* fix: resolve G304 security vulnerability in cache system
* fix: resolve code formatting issues
* fix: resolve gosec G304 security vulnerability in export command
* fix: resolve gosec G304 security warnings in cache.go
* fix: resolve gosec security vulnerabilities in project config
* fix: resolve linting issues
* fix: resolve linting issues in API command
* fix: resolve staticcheck linting issues
* fix: skip permission-bit and symlink tests on Windows
* fix: update documentation navigation to match generated command files
* fix: use more restrictive permissions for directory creation

3 changes: 3 additions & 0 deletions docs/site/index.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,7 @@
# cu - ClickUp CLI

[![Release](https://img.shields.io/github/v/release/timimsms/cu)](https://github.com/timimsms/cu/releases/latest)

> **Note**: `cu` is an unofficial, community-maintained project and is not affiliated with or endorsed by ClickUp.

A GitHub CLI-inspired command-line interface for ClickUp.
Expand Down Expand Up @@ -64,6 +66,7 @@ cu task create

## Next Steps

- [Changelog](changelog.md) - What's new in each release
- [Authentication & Security](authentication.md) - Create a token and connect `cu` to ClickUp
- [Command Reference](commands/cu.md) - Explore all available commands
- [Task Management](commands/cu_task.md) - Learn how to manage tasks
Expand Down
1 change: 1 addition & 0 deletions mkdocs.yml
Original file line number Diff line number Diff line change
Expand Up @@ -33,6 +33,7 @@ theme:
nav:
- Home: index.md
- Authentication & Security: authentication.md
- Changelog: changelog.md
- Commands:
- cu: commands/cu.md
- Authentication:
Expand Down
Loading