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
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,7 @@ Each release entry covers the motivation, new features, breaking changes (if any

| Version | Blog post |
| -------------------------------------------------------------------------- | --------------------------------------------------------------------------------------------------------------- |
| [v1.11.0](https://fulll.github.io/github-code-search/blog/release-v1-11-0) | Team pick mode, `--exclude-template-repositories`, security hardening and Windows installer fixes |
| [v1.10.0](https://fulll.github.io/github-code-search/blog/release-v1-10-0) | Native regex syntax `/pattern/flags` — automatic term extraction, top-level alternation and `--regex-hint` |
| [v1.9.0](https://fulll.github.io/github-code-search/blog/release-v1-9-0) | Windows support — native x64, x64-modern, x64-baseline and ARM64 binaries with one-line PowerShell installer |
| [v1.8.3](https://fulll.github.io/github-code-search/blog/release-v1-8-3) | Fix TUI layout: header/footer anchoring, viewport packing, narrow-terminal clipping, active-row contrast |
Expand Down
1 change: 1 addition & 0 deletions docs/blog/index.md
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,7 @@ Full release notes and changelogs are always available on

| Release | Highlights |
| ---------------------------- | ---------------------------------------------------------------------------------------------------------- |
| [v1.11.0](./release-v1-11-0) | Team pick mode, `--exclude-template-repositories`, security hardening and Windows installer fixes |
| [v1.10.0](./release-v1-10-0) | Native regex syntax `/pattern/flags` — automatic term extraction, top-level alternation and `--regex-hint` |
| [v1.9.0](./release-v1-9-0) | Windows support — native x64, x64-modern, x64-baseline and ARM64 binaries with one-line PowerShell install |
| [v1.8.3](./release-v1-8-3) | Fix TUI layout: header/footer anchoring, viewport packing and narrow-terminal rendering |
Expand Down
83 changes: 83 additions & 0 deletions docs/blog/release-v1-11-0.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,83 @@
---
title: "What's new in v1.11.0"
description: "Team pick mode and --exclude-template-repositories — resolve multi-team sections interactively or via CLI, and filter template repos from search results."
date: 2026-03-30
---

# What's new in github-code-search v1.11.0

> Full release notes: <https://github.com/fulll/github-code-search/releases/tag/v1.11.0>

## Highlights

### Team pick mode — resolve multi-team ownership interactively

When using `--group-by-team-prefix`, repositories that belong to **multiple teams** appear under combined section headers such as `squad-frontend + squad-mobile`. In v1.11.0, you can now resolve these ambiguous sections in real time from the TUI.

Navigate to a combined section header and press **`p`** to enter pick mode. The header turns into a horizontal picker:

```
── [ squad-frontend ] squad-mobile
```

The highlighted team (bold, wrapped in `[ ]`) is the current candidate. Navigate sideways and confirm your choice:

| Key | Action |
| --------- | ---------------------------------------- |
| `←` / `→` | Move focus between candidate teams |
| `Enter` | Confirm — section label updates in place |
| `Esc` | Cancel — no change |

Repos moved by pick mode are annotated with a **`◈`** badge so you can track assignments at a glance.

### `--pick-team` — pre-assign sections without the TUI

Assignments can also be made up front with the repeatable `--pick-team` option — useful in CI or when replaying a previous run:

```bash
github-code-search query "useFeatureFlag" --org fulll \
--group-by-team-prefix squad- \
--pick-team "squad-frontend + squad-mobile"=squad-frontend \
--pick-team "squad-backend + squad-data"=squad-backend
```

The replay command printed at the top of the markdown output now includes `--pick-team` flags automatically when picks were confirmed interactively, so **every run is fully reproducible**.

If a combined label is not found (typo, stale label), a warning is emitted on stderr listing the available sections — the run continues without error.

### `--exclude-template-repositories` — clean up template noise

GitHub template repositories often appear in search results even when they are not the target of the search (e.g. a boilerplate that was never extended). A new flag lets you exclude them entirely:

```bash
github-code-search "useFeatureFlag" --org fulll \
--exclude-template-repositories
```

Template repos are identified using the `is_template` field returned by the GitHub API — no additional token scope is required. The flag is also recorded in the replay command so non-interactive reruns are consistent.

### Security improvements

This release also ships **hardened implementations** of the `cache` and `upgrade` modules, guided by an Aikido security scan:

- Path inputs are now validated before any filesystem operations.
- The upgrade path uses a safer temporary-file write strategy.
- A `dependabot.yml` is now in place to keep GitHub Actions dependencies up to date.

### Windows installer fixes (patch)

The PowerShell installer (`install.ps1`) now:

- Avoids the `Invoke-WebRequest` security warning that appeared on default Windows security configurations.
- Falls back to `curl.exe` (bundled with Windows 10+) when the GitHub API is unreachable for a specific version lookup.

---

## Upgrade

```sh
github-code-search upgrade
```

Or download the latest binary from
[GitHub Releases](https://github.com/fulll/github-code-search/releases/tag/v1.11.0).
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "github-code-search",
"version": "1.10.0",
"version": "1.11.0",
"description": "Interactive GitHub code search with per-repo aggregation",
"keywords": [
"bun",
Expand Down
Loading