3cb6ca5f92
## Why The Release run [27844631141](https://github.com/e2b-dev/E2B/actions/runs/27844631141/job/82412481993) **published all packages successfully** but then failed at the final *"Commit new versions"* step — the version-bump commit-back to \`main\` was rejected as non-fast-forward (another PR landed on \`main\` during the release window). As a result the registries are ahead of the repo: | Package | Published | Repo (main) before this PR | |---|---|---| | \`e2b\` (JS) | 2.30.4 (npm) | 2.30.3 | | \`@e2b/cli\` | 2.12.2 (npm) | 2.12.1 | | \`e2b\` (Python) | 2.29.4 (PyPI) | 2.29.3 | The changeset \`fix-logo-pypi-npm.md\` was also never consumed and is still on \`main\`. ## What this PR does Replays exactly what the failed *"Commit new versions"* step would have committed — i.e. \`pnpm run version\` (changeset version + \`postVersion\` poetry sync) + lockfile update: - Bumps \`e2b\` → 2.30.4, \`@e2b/cli\` → 2.12.2, \`@e2b/python-sdk\` → 2.29.4 (matching what's already published) - Deletes the consumed changeset \`fix-logo-pypi-npm.md\` - Updates \`pnpm-lock.yaml\` (CLI's \`e2b\` dep → 2.30.4) No new packages are published by merging this — it only syncs the repo to the registries. **Do not re-run the Release workflow** for this changeset; the versions already exist on npm/PyPI.
95 lines
2.2 KiB
JSON
95 lines
2.2 KiB
JSON
{
|
|
"name": "@e2b/cli",
|
|
"version": "2.12.2",
|
|
"description": "CLI for managing e2b sandbox templates",
|
|
"homepage": "https://e2b.dev",
|
|
"license": "MIT",
|
|
"author": {
|
|
"name": "FoundryLabs, Inc.",
|
|
"email": "hello@e2b.dev",
|
|
"url": "https://e2b.dev"
|
|
},
|
|
"bugs": "https://github.com/e2b-dev/e2b/issues",
|
|
"repository": {
|
|
"type": "git",
|
|
"url": "https://github.com/e2b-dev/e2b",
|
|
"directory": "packages/cli"
|
|
},
|
|
"publishConfig": {
|
|
"access": "public"
|
|
},
|
|
"keywords": [
|
|
"e2b",
|
|
"ai-agents",
|
|
"agents",
|
|
"ai",
|
|
"code-interpreter",
|
|
"sandbox",
|
|
"code",
|
|
"cli",
|
|
"runtime",
|
|
"vm",
|
|
"nodejs",
|
|
"javascript",
|
|
"typescript"
|
|
],
|
|
"sideEffects": false,
|
|
"scripts": {
|
|
"prepublishOnly": "pnpm build",
|
|
"build": "tsc --noEmit --skipLibCheck && tsup --minify",
|
|
"dev": "tsup --watch",
|
|
"typecheck": "tsc --noEmit --skipLibCheck",
|
|
"lint": "eslint src",
|
|
"format": "prettier --write src",
|
|
"test:interactive": "pnpm build && ./dist/index.js",
|
|
"test": "vitest run",
|
|
"test:watch": "vitest watch",
|
|
"test:coverage": "vitest run --coverage",
|
|
"check-deps": "knip"
|
|
},
|
|
"devDependencies": {
|
|
"@types/handlebars": "^4.1.0",
|
|
"@types/inquirer": "^9.0.7",
|
|
"@types/json2md": "^1.5.4",
|
|
"@types/node": "^20.19.19",
|
|
"@types/npmcli__package-json": "^4.0.4",
|
|
"@types/statuses": "^2.0.5",
|
|
"@vitest/coverage-v8": "^4.1.0",
|
|
"json2md": "^2.0.1",
|
|
"knip": "^5.43.6",
|
|
"tsup": "^8.4.0",
|
|
"typescript": "^5.4.5",
|
|
"vitest": "^4.1.8"
|
|
},
|
|
"files": [
|
|
"dist",
|
|
"LICENSE",
|
|
"README",
|
|
"package.json"
|
|
],
|
|
"bin": {
|
|
"e2b": "dist/index.js"
|
|
},
|
|
"dependencies": {
|
|
"@iarna/toml": "^2.2.5",
|
|
"@inquirer/prompts": "^7.9.0",
|
|
"@npmcli/package-json": "^5.2.1",
|
|
"async-listen": "^3.0.1",
|
|
"boxen": "^7.1.1",
|
|
"chalk": "^5.3.0",
|
|
"cli-highlight": "^2.1.11",
|
|
"commander": "^11.1.0",
|
|
"console-table-printer": "^2.11.2",
|
|
"dockerfile-ast": "^0.6.1",
|
|
"e2b": "^2.30.4",
|
|
"handlebars": "^4.7.9",
|
|
"inquirer": "^12.10.0",
|
|
"simple-update-notifier": "^2.0.0",
|
|
"statuses": "^2.0.1",
|
|
"yup": "^1.3.2"
|
|
},
|
|
"engines": {
|
|
"node": ">=20"
|
|
}
|
|
}
|