summaryrefslogtreecommitdiff
AgeCommit message (Collapse)Author
2025-06-18Fix noise in headless mode on STDOUT (#1184)Allen Hutchison
2025-06-18Edit pass of docs/cli/tutorials.md (#1186)starsandskies
Make a pass through the docs/cli/tutorials.md file to hopefully improve readability and consistency.
2025-06-18Cherry pick fix for enabling the agent to verify changes using tests (#1185)anj-s
2025-06-18CCPA Count Token support (#1170)Tommaso Sciortino
2025-06-18feat: consolidate sandbox configurations into a single object (#1154)Brandon Keiji
2025-06-18fix: check package.json for app version (#1160) (#1182)Brandon Keiji
2025-06-18Support logging in with Application Default Credentials (#1157)Tommaso Sciortino
Co-authored-by: N. Taylor Mullen <[email protected]>
2025-06-18Cherrypick endless loops fix onto release (#1181)anj-s
2025-06-18Fix flakey test (#1178)Tommaso Sciortino
2025-06-18Move the logs.json to a project specific user home dir (#1145)Louis Jimenez
2025-06-17feat: update default gemini model to GA 2.5 pro (#1173)N. Taylor Mullen
2025-06-17Remove learnings.md. (#1172)DeWitt Clinton
2025-06-18fix: regression in completion filtering (#1135)Anas H. Sulaiman
2025-06-18docs: update documentation from starsandskies/patch-2 (#1143)N. Taylor Mullen
Co-authored-by: starsandskies <[email protected]> Co-authored-by: matt korwel <[email protected]>
2025-06-17feat: shell history (#1169)Abhi
2025-06-17Clear out untracked files when restoring a checkpoint (#1139)Louis Jimenez
2025-06-18Fixup pull_request_template.md (#1166)Seth Troisi
Co-authored-by: matt korwel <[email protected]>
2025-06-17Move theme discussion from configuration.md to themes.md (#1158)starsandskies
This content looks like it is better hosted in the themes.md doc. This is as close as possible to an as-is cut-paste from one file to the other, with the goal of minimizing fine-grained review in this particular PR. I'll take another pass through themes.md specifically to improve the moved content in a follow up PR
2025-06-17Updating CONTRIBUTING.md (#1144)Seth Troisi
2025-06-17Forked PR: Contributing.md (#1146)matt korwel
2025-06-17Support escaping carriage returns with \ (#1127)Billy Biggs
2025-06-17code review followup for compress command (#1097)Jacob MacDonald
Followup to https://github.com/google-gemini/gemini-cli/pull/986
2025-06-17Auto-update notifications (#1110)Eddie Santos
2025-06-17Update CONTRIBUTING.md (#1130)matt korwel
2025-06-16Update /help page (#1119)Miguel Solorio
2025-06-16Cache credentials in home dir, not working dir (#1122)Tommaso Sciortino
2025-06-16Simplify Error handling in Code Assist onboarding (#1123)Tommaso Sciortino
2025-06-16Fix bug where single line inserts were deleting all text after the in… (#1114)Jacob Richman
2025-06-16Propagate abort signal to ccpa generateContent. (#1106)Tommaso Sciortino
2025-06-16fix: add httpOptions with headers field to CCPA client and set User-Agent ↵Marlon Gamez
header (#1103)
2025-06-16Mock out 'open' in tests. Fix test issues. (#1100)Tommaso Sciortino
2025-06-16Preflight and integration npx (#1096)matt korwel
2025-06-15Add ask mode approvers to code owners.Taylor Mullen
2025-06-16Added sandbox error hint when MCP servers fail to launch in sandbox mode (#972)Mark McDonald
2025-06-16feat: clear should also clear chat history (#1008)Abhi
2025-06-16Move the shadow git repository to the user's home dir (#1013)Louis Jimenez
2025-06-16feat: text-buffer: input sanitization and delete character handling. (#1031)Jacob Richman
2025-06-16feat(cli): Standardize keyboard shortcut hints (#1092)N. Taylor Mullen
2025-06-16fix version release for Dockerfile build (#1080)Zach Sais
2025-06-15Update /tools desc to show the name of each tool as known to the model (#1091)Billy Biggs
2025-06-15feat(test): Increase test coverage across CLI and Core packages (#1089)N. Taylor Mullen
2025-06-15feat(ci): run actions on the release branch (#1086)N. Taylor Mullen
2025-06-16Add Vertex env vars to sandbox (#1005)Mark McDonald
Co-authored-by: Scott Densmore <[email protected]>
2025-06-16small fixes in telemetry docs (#1081)Jerop Kipruto
- `GOOGLE_CLOUD_PROJECT` --> `OTLP_GOOGLE_CLOUD_PROJECT` - Remove `npm run start:gcp` shorthand from docs until after improving cleanup process
2025-06-15feat: Adds shell command context to gemini history (#1076)Abhi
2025-06-15Add a command for starting Gemini CLI with GCP telemetry (#1079)Jerop Kipruto
This command enables starting the application with GCP telemetry: ```shell npm run start:gcp ```
2025-06-16Decouple telemetry project ID configuration (#1077)Jerop Kipruto
#750 Renames project ID for telemetry from `GOOGLE_CLOUD_PROJECT` to `OTLP_GOOGLE_CLOUD_PROJECT`. This change allows for a separate Google Cloud Project to be used for telemetry data, distinct from the project used for other services like Vertex AI or Code Assist. This enhances clarity and flexibility in project configuration.
2025-06-15bug: Fix modify edit (#1078)Leo
2025-06-15refactor(cli): Use excludeTools for non-interactive mode (#1072)N. Taylor Mullen
2025-06-15Stabilize /bug command tests with consistent version mocking (#1070)Jerop Kipruto
The `/bug` command tests in `slashCommandProcessor.test.ts` were flaky due to inconsistent CLI versioning. This commit: - Implements a flexible, top-level mock for `getCliVersion` that can be overridden per test. - Sets a default mock value for `/bug` command tests via `beforeEach`. - Overrides the mock in one test case requiring a specific version ('test-version'). - Ensures the test's helper `getExpectedUrl` receives the correct explicit version. - Aligns the expected CLI version in the custom bug URL test with the default mock. These changes ensure consistent CLI versioning in tests, resolving flakiness. #1071