Compare commits

...

5 Commits

6 changed files with 14 additions and 12 deletions
+2 -2
View File
@@ -136,11 +136,11 @@ In addition to a project settings file, a project's `.gemini` directory can cont
},
"myDockerServer": {
"command": "docker",
"args": ["run", "i", "--rm", "-e", "API_KEY", "ghcr.io/foo/bar"],
"args": ["run", "-i", "--rm", "-e", "API_KEY", "ghcr.io/foo/bar"],
"env": {
"API_KEY": "$MY_API_TOKEN"
}
},
}
}
```
+4 -4
View File
@@ -1,12 +1,12 @@
{
"name": "@google/gemini-cli",
"version": "0.1.9",
"version": "0.1.10",
"lockfileVersion": 3,
"requires": true,
"packages": {
"": {
"name": "@google/gemini-cli",
"version": "0.1.9",
"version": "0.1.10",
"workspaces": [
"packages/*"
],
@@ -11318,7 +11318,7 @@
},
"packages/cli": {
"name": "@google/gemini-cli",
"version": "0.1.9",
"version": "0.1.10",
"dependencies": {
"@google/gemini-cli-core": "file:../core",
"@types/update-notifier": "^6.0.8",
@@ -11497,7 +11497,7 @@
},
"packages/core": {
"name": "@google/gemini-cli-core",
"version": "0.1.9",
"version": "0.1.10",
"dependencies": {
"@google/genai": "^1.8.0",
"@modelcontextprotocol/sdk": "^1.11.0",
+2 -2
View File
@@ -1,6 +1,6 @@
{
"name": "@google/gemini-cli",
"version": "0.1.9",
"version": "0.1.10",
"engines": {
"node": ">=20.0.0"
},
@@ -14,7 +14,7 @@
"url": "git+https://github.com/google-gemini/gemini-cli.git"
},
"config": {
"sandboxImageUri": "us-docker.pkg.dev/gemini-code-dev/gemini-cli/sandbox:0.1.9"
"sandboxImageUri": "us-docker.pkg.dev/gemini-code-dev/gemini-cli/sandbox:0.1.10"
},
"scripts": {
"start": "node scripts/start.js",
+2 -2
View File
@@ -1,6 +1,6 @@
{
"name": "@google/gemini-cli",
"version": "0.1.9",
"version": "0.1.10",
"description": "Gemini CLI",
"repository": {
"type": "git",
@@ -25,7 +25,7 @@
"dist"
],
"config": {
"sandboxImageUri": "us-docker.pkg.dev/gemini-code-dev/gemini-cli/sandbox:0.1.9"
"sandboxImageUri": "us-docker.pkg.dev/gemini-code-dev/gemini-cli/sandbox:0.1.10"
},
"dependencies": {
"@google/gemini-cli-core": "file:../core",
+1 -1
View File
@@ -1,6 +1,6 @@
{
"name": "@google/gemini-cli-core",
"version": "0.1.9",
"version": "0.1.10",
"description": "Gemini CLI Core",
"repository": {
"type": "git",
+3 -1
View File
@@ -234,7 +234,9 @@ describe('GrepTool', () => {
};
// The path will be relative to the tempRootDir, so we check for containment.
expect(grepTool.getDescription(params)).toContain("'testPattern' within");
expect(grepTool.getDescription(params)).toContain('src/app');
expect(grepTool.getDescription(params)).toContain(
path.join('src', 'app'),
);
});
it('should generate correct description with pattern, include, and path', () => {