-
Notifications
You must be signed in to change notification settings - Fork 0
[EPIC #60] Enrich version management UX: upgrade output, release blog, contextual help #61
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Merged
Merged
Changes from all commits
Commits
Show all changes
10 commits
Select commit
Hold shift + click to select a range
87f700b
feat(docs): add What's New blog section with v1.0.0 post
shouze 99febf9
feat(ci): auto-generate blog stub on major release tags
shouze 35ec1cc
feat(upgrade): enrich upgrade output with release notes and doc links
shouze bae7b8d
feat: add deep doc links to --help and update-available notice
shouze 1574244
feat(cli): colorize --help output with Commander style hooks
shouze bf0fd09
Address PR #61 review comments
shouze 74ac2d0
docs(agents): document release process in AGENTS.md and instruction f…
shouze 0d5c9cd
v1.3.0
shouze 5ec4bb0
v1.3.0
shouze f366ee3
Address remaining PR #61 review comments
shouze File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,21 @@ | ||
| # What's New | ||
|
|
||
| Release highlights for every version of `github-code-search`. | ||
| Each post covers the main features, fixes, and upgrade notes for that release. | ||
| Full release notes and changelogs are always available on | ||
| [GitHub Releases](https://github.com/fulll/github-code-search/releases). | ||
|
|
||
| --- | ||
|
|
||
| ## v1 series | ||
|
|
||
| | Release | Highlights | | ||
| | -------------------------- | --------------------------------------------------------------------------------------------------- | | ||
| | [v1.3.0](./release-v1-3-0) | Richer upgrade output, update-available notice, colorized `--help`, deep doc links, What's New blog | | ||
| | [v1.0.0](./release-v1-0-0) | Initial public release — interactive TUI, per-repo aggregation, markdown / JSON output | | ||
|
|
||
| --- | ||
|
|
||
| ::: tip Upgrading? | ||
| Run `github-code-search upgrade` to update to the latest version in one command. | ||
| ::: |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,73 @@ | ||
| --- | ||
| title: "What's new in v1.0.0" | ||
| description: "Initial public release of github-code-search — interactive TUI, per-repo aggregation, markdown/JSON output." | ||
| date: 2025-01-01 | ||
| --- | ||
|
|
||
| # What's new in github-code-search v1.0.0 | ||
|
|
||
| > Full release notes: <https://github.com/fulll/github-code-search/releases/tag/v1.0.0> | ||
|
|
||
| ## The beginning | ||
|
|
||
| `github-code-search` is an interactive CLI for searching GitHub code across an entire organisation. | ||
| It wraps the [GitHub Code Search API](https://docs.github.com/en/rest/search/search#search-code) | ||
| and adds a keyboard-driven TUI on top, so you can browse results, fold/unfold extracts, and select | ||
| the ones you care about before printing structured output. | ||
|
|
||
| ## Highlights | ||
|
|
||
| ### Keyboard-driven TUI | ||
|
|
||
| Search results are loaded and displayed in an interactive terminal UI. | ||
| Navigate with <kbd>↑</kbd> / <kbd>↓</kbd>, fold/unfold extracts with <kbd>→</kbd> / <kbd>←</kbd>, | ||
| select results with <kbd>Space</kbd>, and confirm with <kbd>Enter</kbd>. | ||
| Press <kbd>?</kbd> to show the full keyboard shortcut reference. | ||
|
|
||
| → [Interactive mode guide](/usage/interactive-mode) | ||
|
|
||
| ### Per-repository aggregation | ||
|
|
||
| All code matches for the same repository are grouped together, with per-file headings. | ||
| No more scanning through a flat list of individual matches. | ||
|
|
||
| ### Markdown and JSON output | ||
|
|
||
| Use `--format markdown` (default) for human-readable output, or `--format json` for | ||
| machine-readable output suitable for further processing. | ||
|
|
||
| Use `--output-type repo-only` to print only repository names (no code extracts). | ||
|
|
||
| → [Output formats guide](/usage/output-formats) | ||
|
|
||
| ### Filtering | ||
|
|
||
| Exclude noisy repositories with `--exclude-repositories` or specific extracts with | ||
| `--exclude-extracts`. Both flags accept short (`repoName`) and long (`org/repoName`) forms. | ||
|
|
||
| → [Filtering guide](/usage/filtering) | ||
|
|
||
| ### Team grouping | ||
|
|
||
| Group results by team prefix using `--group-by-team-prefix`. Results are arranged in sections | ||
| per team, making it easy to see which squads own the code that matches your search. | ||
|
|
||
| → [Team grouping guide](/usage/team-grouping) | ||
|
|
||
| ### Non-interactive / CI mode | ||
|
|
||
| Use `--no-interactive` (or set `CI=true`) to pipe output directly to downstream tools. | ||
| Syntax highlighting and TUI chrome are stripped so the output is clean. | ||
|
|
||
| → [Non-interactive mode guide](/usage/non-interactive-mode) | ||
|
|
||
| ### Built-in upgrade command | ||
|
|
||
| ```bash | ||
| github-code-search upgrade | ||
| ``` | ||
|
|
||
| Checks for a newer binary on GitHub Releases and replaces the running binary in-place. | ||
| No package manager required. | ||
|
|
||
| → [Upgrade guide](/usage/upgrade) |
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Uh oh!
There was an error while loading. Please reload this page.