| Age | Commit message (Collapse) | Author | |
|---|---|---|---|
| 2025-06-14 | centralize file filtering in `FileDiscoveryService` (#1039) | Anas H. Sulaiman | |
| 2025-06-14 | Fix 404 URL for Vertex Auth (#1040) | Steren | |
| 2025-06-14 | feat: Add custom URL support for the /bug command (#1017) | Allen Hutchison | |
| 2025-06-13 | Add a local telemetry launcher (#1015) | Keir Mierle | |
| 2025-06-13 | initialize `FileDiscoveryService` once (#1029) | Anas H. Sulaiman | |
| 2025-06-13 | Stop extension MCPs from hopping into settings. (#1026) | Tommaso Sciortino | |
| 2025-06-13 | Fix default extension context filename and update docs (#1024) | Tommaso Sciortino | |
| 2025-06-13 | Don't exclude config.test.ts. (#1021) | Tommaso Sciortino | |
| 2025-06-13 | Update contextFileName to support an optional list of strings (#1001) | Billy Biggs | |
| 2025-06-13 | cleanup unused `allowBuildArtifacts` (#1010) | Anas H. Sulaiman | |
| 2025-06-13 | refactor: Use default centralized Flash & Pro models everywhere (#994) | N. Taylor Mullen | |
| 2025-06-12 | Code Assist cleanup and docs (#993) | Tommaso Sciortino | |
| 2025-06-12 | Reduce coupling between core and cli packages (#961) | Marat Boshernitsan | |
| Co-authored-by: Marat Boshernitsan <[email protected]> | |||
| 2025-06-12 | remove enable editor flag (#984) | Leo | |
| 2025-06-11 | feat: External editor settings (#882) | Leo | |
| 2025-06-11 | add excludeTools flag to settings.json config (#957) | JingboWang1997-1 | |
| 2025-06-11 | Extensibility: Gemini.md files (#944) | matt korwel | |
| 2025-06-11 | Restore Checkpoint Feature (#934) | Louis Jimenez | |
| 2025-06-11 | fix version set for cli and slash commands (#892) | Zach Sais | |
| 2025-06-11 | refactor: Centralize session ID generation and propagation | jerop | |
| 2025-06-10 | Remove unneeded `mockRestore()`s from tests (#919) | Seth Troisi | |
| 2025-06-10 | Change yolo mode so it doesn't disable sandboxing. (#918) | Tommaso Sciortino | |
| 2025-06-10 | Basic code assist support (#910) | Tommaso Sciortino | |
| 2025-06-10 | Allow simple extensions for registering MCPservers (#890) | Tommaso Sciortino | |
| 2025-06-10 | GEMINI_SANDBOX=false should disable seatbelt (#888) | Tommaso Sciortino | |
| 2025-06-10 | Add a window title when CLI is launched (#787) | Mark McDonald | |
| 2025-06-09 | Use GOOGLE_API_KEY as default if both GEMINI and GOOGLE set (#777) | Seth Troisi | |
| 2025-06-09 | Simplify user agent handling. (#828) | Tommaso Sciortino | |
| 2025-06-08 | feat: Add flow to allow modifying edits during edit tool call (#808) | Leo | |
| 2025-06-07 | Introduce ContentGeneratorConfig (#826) | Tommaso Sciortino | |
| 2025-06-07 | refactor: rename gemini-code to gemini-cli (#822) | cperry-goog | |
| 2025-06-07 | Eliminate createServerConfig() (#821) | Tommaso Sciortino | |
| 2025-06-07 | Fix missing arg warning in tests (#820) | Tommaso Sciortino | |
| 2025-06-07 | Add embedder (#818) | Eddie Santos | |
| 2025-06-07 | Push model-switching logging into loadCliConfig (#815) | Tommaso Sciortino | |
| 2025-06-07 | More version simplifiction. (#810) | Tommaso Sciortino | |
| 2025-06-06 | clean up version lookup code (#804) | Tommaso Sciortino | |
| 2025-06-06 | Exit with an error message if parsing settings.json fails. (#747) | Jacob Richman | |
| 2025-06-06 | Test: Verify concatenated env var resolution in settings | jerop | |
| Adds a test case to `settings.test.ts` to specifically verify the correct resolution of multiple environment variables concatenated within a single string value (e.g., ${HOST}:${PORT} ). | |||
| 2025-06-06 | Refactor: Improve env var resolution in settings | jerop | |
| Refactors the `resolveEnvVarsInObject` function in settings to explicitly handle primitive types (null, undefined, boolean, number) at the beginning of the function. This clarifies the logic for subsequent string, array, and object processing. | |||
| 2025-06-06 | feat: Enable environment variable substitution in settings | jerop | |
| This commit introduces the ability to use system environment variables within the settings files (e.g., `settings.json`). Users can now reference environment variables using the `${VAR_NAME}` syntax. This enhancement improves security and flexibility, particularly for configurations like MCP server settings, which often require sensitive tokens. Previously, to configure an MCP server, a token might be directly embedded: ```json "mcpServers": { "github": { "env": { "GITHUB_PERSONAL_ACCESS_TOKEN": "pat_abc123" } // ... } } ``` With this change, the same configuration can securely reference an environment variable: ```json "mcpServers": { "github": { "env": { "GITHUB_PERSONAL_ACCESS_TOKEN": "${GITHUB_PERSONAL_ACCESS_TOKEN}" } // ... } } ``` This allows users to avoid storing secrets directly in configuration files. | |||
| 2025-06-05 | OpenTelemetry Integration & Telemetry Control Flag (#762) | Jerop Kipruto | |
| 2025-06-05 | Bump default model to `gemini-2.5-pro-preview-06-05` (#765) | Eddie Santos | |
| 2025-06-05 | Add support for `.geminiignore` file (#757) | Eddie Santos | |
| 2025-06-04 | CLI_TITLE env var for setting the CLI title (#748) | Tommaso Sciortino | |
| 2025-06-04 | Bring back 2.5-pro usage (#744) | N. Taylor Mullen | |
| https://chat.google.com/room/AAQApBm33UQ/8DQw4Ykp8f0/8DQw4Ykp8f0?cls=10 | |||
| 2025-06-04 | feat(accessibility): Add option to disable loading phrases (#745) | N. Taylor Mullen | |
| 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-03 | remove noop code (#728) | Olcan | |
| 2025-06-03 | Fix flash preview (#723) | N. Taylor Mullen | |
