| Age | Commit message (Collapse) | Author | |
|---|---|---|---|
| 2025-07-01 | update check + tests (#2772) | Eddie Santos | |
| 2025-06-28 | quiet dotenv log message (#2239) | Mot | |
| Co-authored-by: Scott Densmore <[email protected]> | |||
| 2025-06-28 | chore: bump to 0.1.8 (#2308) | Brandon Keiji | |
| 2025-06-27 | Upgrade to Ink 6 and React 19 (#2096) | Sandy Tao | |
| Co-authored-by: jacob314 <[email protected]> | |||
| 2025-06-27 | fix: add missing gaxios dependency (#2302) | Brandon Keiji | |
| 2025-06-27 | Fix a circular dependency (#2246) | Xi Chen | |
| Co-authored-by: Scott Densmore <[email protected]> | |||
| 2025-06-27 | chore: bump to 0.1.6 (#2285) | Brandon Keiji | |
| 2025-06-26 | fix: add repository field to package.jsons (#2032) | Brandon Keiji | |
| 2025-06-26 | chore: bump to 0.1.5 (#1731) | Brandon Keiji | |
| 2025-06-26 | feat: add release trigger configuration (#1697) | Brandon Keiji | |
| 2025-06-25 | Add tos and privacy links docs for clarity (#1571) | anj-s | |
| 2025-06-25 | Version 0 1 1 (#1426) | matt korwel | |
| 2025-06-25 | fix: prepublish changes to package names (#1420) | Brandon Keiji | |
| 2025-06-24 | Prerelease: Cleanup (#1404) | matt korwel | |
| 2025-06-23 | Use concurrently to run start script with GCP telemetry (#1329) | Jerop Kipruto | |
| ## TLDR Introduces the `concurrently` package to simplify the dev startup process with GCP telemetry enabled. ## Dive Deeper Previously, developers had to run the telemetry script and the main application start script in separate terminals. This change updates the `start:gcp` script to use `concurrently`, allowing both processes to be launched and managed with a single command. This improves the developer experience and reduces the chance of forgetting to start one of the required processes. ## Reviewer Test Plan Set the required environment variable: ```shell export OTLP_GOOGLE_CLOUD_PROJECT=<your-project-id> ``` Run the following command: ```shell npm run start:gcp ``` #750 cc @teeler | |||
| 2025-06-17 | Auto-update notifications (#1110) | Eddie Santos | |
| 2025-06-16 | Preflight and integration npx (#1096) | matt korwel | |
| 2025-06-15 | feat(cli): add glob as a direct dependency (#1065) | N. Taylor Mullen | |
| 2025-06-13 | Improvements to web-fetch tool (#1030) | Allen Hutchison | |
| 2025-06-13 | fix: add micromatch to package deps (#1020) | Brandon Keiji | |
| 2025-06-13 | Add web socket protocol support for IDE MCP server (#987) | Shreya Keshive | |
| Co-authored-by: matt korwel <[email protected]> | |||
| 2025-06-12 | Improve some tools to support abortSignal (#997) | Tommaso Sciortino | |
| 2025-06-13 | Revert "Make glob tool support abortSignal" (#996) | matt korwel | |
| 2025-06-12 | Reduce coupling between core and cli packages (#961) | Marat Boshernitsan | |
| Co-authored-by: Marat Boshernitsan <[email protected]> | |||
| 2025-06-12 | Make glob tool support abortSignal (#988) | Tommaso Sciortino | |
| 2025-06-12 | chore(deps-dev): bump esbuild from 0.23.1 to 0.25.0 (#872) | dependabot[bot] | |
| Signed-off-by: dependabot[bot] <[email protected]> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> | |||
| 2025-06-11 | Restore Checkpoint Feature (#934) | Louis Jimenez | |
| 2025-06-10 | Register dependency added in PR:910 (#925) | Tommaso Sciortino | |
| 2025-06-10 | Basic code assist support (#910) | Tommaso Sciortino | |
| 2025-06-10 | restricted networking for all sandboxing methods, new seatbelt profiles, ↵ | Olcan | |
| updated docs, fixes to sandbox build, debugging through sandbox (#891) | |||
| 2025-06-09 | Windows: Refactor Shell Scripts to Node.js for Cross-Platform Compatibility ↵ | matt korwel | |
| (#784) | |||
| 2025-06-09 | Bump @google/genai dependency (#870) | Abhi | |
| 2025-06-08 | Rollforward AST changes to unblock Sandboxing (#863) | matt korwel | |
| 2025-06-08 | feat(git): Refactor gitignore handling to use `ignore` library instead of ↵ | N. Taylor Mullen | |
| `minimatch` (#864) | |||
| 2025-06-08 | fix(deps): externalize tree-sitter (#840) | matt korwel | |
| Submitting without approval to fix broken deployment on main. But also, we should lock this down. | |||
| 2025-06-07 | refactor: rename gemini-code to gemini-cli (#822) | cperry-goog | |
| 2025-06-07 | Creating Node AST Tool. (#756) | matt korwel | |
| 2025-06-05 | OpenTelemetry Integration & Telemetry Control Flag (#762) | Jerop Kipruto | |
| 2025-06-05 | Add support for `.geminiignore` file (#757) | Eddie Santos | |
| 2025-06-05 | Checks for diff changes before displaying the code snippet (#751) | anj-s | |
| 2025-06-04 | Ignore folders files (#651) | Keith Ballinger | |
| # Add .gitignore-Aware File Filtering to gemini-cli This pull request introduces .gitignore-based file filtering to the gemini-cli, ensuring that git-ignored files are automatically excluded from file-related operations and suggestions throughout the CLI. The update enhances usability, reduces noise from build artifacts and dependencies, and provides new configuration options for fine-tuning file discovery. Key Improvements .gitignore File Filtering All @ (at) commands, file completions, and core discovery tools now honor .gitignore patterns by default. Git-ignored files (such as node_modules/, dist/, .env, and .git) are excluded from results unless explicitly overridden. The behavior can be customized via a new fileFiltering section in settings.json, including options for: Turning .gitignore respect on/off. Adding custom ignore patterns. Allowing or excluding build artifacts. Configuration & Documentation Updates settings.json schema extended with fileFiltering options. Documentation updated to explain new filtering controls and usage patterns. Testing New and updated integration/unit tests for file filtering logic, configuration merging, and edge cases. Test coverage ensures .gitignore filtering works as intended across different workflows. Internal Refactoring Core file discovery logic refactored for maintainability and extensibility. Underlying tools (ls, glob, read-many-files) now support git-aware filtering out of the box. Co-authored-by: N. Taylor Mullen <[email protected]> | |||
| 2025-06-04 | Update package-lock.json (#738) | N. Taylor Mullen | |
| 2025-06-03 | fixed strip-ansi dep by installing it in core package (also ran npm install ↵ | Olcan | |
| in cli package that resulted in the minor changes here) (#727) | |||
| 2025-06-02 | feat: Refactor CLI header for customizable logo text (#658) | N. Taylor Mullen | |
| 2025-05-31 | feat: allow custom filename for context files (#654) | Allen Hutchison | |
| Co-authored-by: N. Taylor Mullen <[email protected]> | |||
| 2025-05-30 | Rename server->core (#638) | Tommaso Sciortino | |
| 2025-05-30 | use npx json instead of jq (#617) | Olcan | |
| 2025-05-29 | fix: publish @gemini-code/server (#605) | Brandon Keiji | |
| 2025-05-28 | feat: add git branch name to footer (#589) | Brandon Keiji | |
| 2025-05-26 | feat: Replace SQLite with JSON logging for macOS sandbox compatibility | Taylor Mullen | |
| - Removes the sqlite3 dependency and refactors the logging mechanism to use a JSON file (logs.json) instead of a database. - This change is a temporary workaround to address issues with macOS sandboxing that were caused by the SQLite native module. - Storing all logs in a single JSON file may introduce scalability concerns in the future. Fixes https://github.com/google-gemini/gemini-cli/issues/522 | |||
