Version 0 1 1 (#1426)

This commit is contained in:
matt korwel 2025-06-25 06:47:27 -07:00 committed by GitHub
parent 452dca4301
commit 6991ba1387
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
5 changed files with 23 additions and 14 deletions

View File

@ -38,7 +38,7 @@ For security and isolation, Gemini CLI can be run inside a container. This is th
You can run the published sandbox image directly. This is useful for environments where you only have Docker and want to run the CLI. You can run the published sandbox image directly. This is useful for environments where you only have Docker and want to run the CLI.
```bash ```bash
# Run the published sandbox image # Run the published sandbox image
docker run --rm -it us-docker.pkg.dev/gemini-code-dev/gemini-cli/sandbox:0.1.0 docker run --rm -it us-docker.pkg.dev/gemini-code-dev/gemini-cli/sandbox:0.1.1
``` ```
- **Using the `--sandbox` flag:** - **Using the `--sandbox` flag:**
If you have Gemini CLI installed locally (using the standard installation described above), you can instruct it to run inside the sandbox container. If you have Gemini CLI installed locally (using the standard installation described above), you can instruct it to run inside the sandbox container.

17
package-lock.json generated
View File

@ -1,15 +1,18 @@
{ {
"name": "gemini-cli", "name": "@google/gemini-cli",
"version": "0.1.0", "version": "0.1.1",
"lockfileVersion": 3, "lockfileVersion": 3,
"requires": true, "requires": true,
"packages": { "packages": {
"": { "": {
"name": "gemini-cli", "name": "@google/gemini-cli",
"version": "0.1.0", "version": "0.1.1",
"workspaces": [ "workspaces": [
"packages/*" "packages/*"
], ],
"dependencies": {
"@google/gemini-cli": "^0.1.1"
},
"bin": { "bin": {
"gemini": "bundle/gemini.js" "gemini": "bundle/gemini.js"
}, },
@ -11598,9 +11601,9 @@
}, },
"packages/cli": { "packages/cli": {
"name": "@google/gemini-cli", "name": "@google/gemini-cli",
"version": "0.1.0", "version": "0.1.1",
"dependencies": { "dependencies": {
"@google/gemini-cli-core": "file:../core", "@google/gemini-cli-core": "0.1.1",
"@types/update-notifier": "^6.0.8", "@types/update-notifier": "^6.0.8",
"command-exists": "^1.2.9", "command-exists": "^1.2.9",
"diff": "^7.0.0", "diff": "^7.0.0",
@ -11671,7 +11674,7 @@
}, },
"packages/core": { "packages/core": {
"name": "@google/gemini-cli-core", "name": "@google/gemini-cli-core",
"version": "0.1.0", "version": "0.1.1",
"dependencies": { "dependencies": {
"@google/genai": "^1.4.0", "@google/genai": "^1.4.0",
"@modelcontextprotocol/sdk": "^1.11.0", "@modelcontextprotocol/sdk": "^1.11.0",

View File

@ -1,10 +1,14 @@
{ {
"name": "@google/gemini-cli", "name": "@google/gemini-cli",
"version": "0.1.0", "version": "0.1.1",
"type": "module", "type": "module",
"workspaces": [ "workspaces": [
"packages/*" "packages/*"
], ],
"repository": "google-gemini/gemini-cli",
"config": {
"sandboxImageUri": "us-docker.pkg.dev/gemini-code-dev/gemini-cli/sandbox:0.1.1"
},
"scripts": { "scripts": {
"generate": "node scripts/generate-git-commit-info.js", "generate": "node scripts/generate-git-commit-info.js",
"build": "node scripts/build.js", "build": "node scripts/build.js",
@ -74,5 +78,8 @@
"react-devtools-core": "^4.28.5", "react-devtools-core": "^4.28.5",
"typescript-eslint": "^8.30.1", "typescript-eslint": "^8.30.1",
"yargs": "^17.7.2" "yargs": "^17.7.2"
},
"dependencies": {
"@google/gemini-cli": "^0.1.1"
} }
} }

View File

@ -1,6 +1,6 @@
{ {
"name": "@google/gemini-cli", "name": "@google/gemini-cli",
"version": "0.1.0", "version": "0.1.1",
"description": "Gemini CLI", "description": "Gemini CLI",
"type": "module", "type": "module",
"main": "dist/index.js", "main": "dist/index.js",
@ -19,17 +19,16 @@
"typecheck": "tsc --noEmit", "typecheck": "tsc --noEmit",
"prerelease:version": "node ../../scripts/bind_package_version.js", "prerelease:version": "node ../../scripts/bind_package_version.js",
"prerelease:deps": "node ../../scripts/bind_package_dependencies.js", "prerelease:deps": "node ../../scripts/bind_package_dependencies.js",
"prepublishOnly": "npm publish --workspace=@google/gemini-cli-core",
"prepack": "npm run build" "prepack": "npm run build"
}, },
"files": [ "files": [
"dist" "dist"
], ],
"config": { "config": {
"sandboxImageUri": "gemini-cli-sandbox" "sandboxImageUri": "us-docker.pkg.dev/gemini-code-dev/gemini-cli/sandbox:0.1.1"
}, },
"dependencies": { "dependencies": {
"@google/gemini-cli-core": "0.1.0", "@google/gemini-cli-core": "0.1.1",
"@types/update-notifier": "^6.0.8", "@types/update-notifier": "^6.0.8",
"command-exists": "^1.2.9", "command-exists": "^1.2.9",
"diff": "^7.0.0", "diff": "^7.0.0",

View File

@ -1,6 +1,6 @@
{ {
"name": "@google/gemini-cli-core", "name": "@google/gemini-cli-core",
"version": "0.1.0", "version": "0.1.1",
"description": "Gemini CLI Server", "description": "Gemini CLI Server",
"type": "module", "type": "module",
"main": "dist/index.js", "main": "dist/index.js",