Conversation
|
The latest updates on your projects. Learn more about Vercel for GitHub.
|
Greptile SummaryThis is an automated daily update that bumps IDE extension/CLI package versions and adds version 75 morph snapshots (captured 2026-03-20) for both sandbox presets. The changes are mechanical and low-risk overall, but one dependency version stands out as requiring human verification before merging. Key changes:
Issues found:
Confidence Score: 3/5
Important Files Changed
Sequence DiagramsequenceDiagram
participant GHA as GitHub Actions (daily cron)
participant Registry as Package Registries (npm / VS Code Marketplace)
participant Repo as manaflow-ai/manaflow
participant Sandbox as Sandbox Session
GHA->>Registry: Query latest versions for IDE extensions & CLI packages
Registry-->>GHA: Return latest version strings
GHA->>Registry: Query latest morph snapshot metadata
Registry-->>GHA: Return snapshot IDs & capturedAt timestamps
GHA->>Repo: Open PR updating configs/ide-deps.json & morph-snapshots.json
Repo-->>Sandbox: On PR merge, sandbox reads updated ide-deps.json
Sandbox->>Registry: Install IDE extensions & CLI packages at pinned versions
Sandbox-->>Sandbox: Provision using latest morph snapshot (version 75)
Last reviewed commit: "chore: daily morph s..." |
| "publisher": "openai", | ||
| "name": "chatgpt", |
There was a problem hiding this comment.
Unusual version jump for ChatGPT extension
The chatgpt VS Code extension version changed from 0.5.76 to 26.5318.11754 — a major version jump from 0 to 26 with a non-standard version format. This is highly unusual. Standard semver would produce something like 1.0.0, not 26.5318.11754. This could indicate:
- The automated update script picked up a wrong/corrupted version string from the registry.
- OpenAI switched to a timestamp-based or build-based versioning scheme (the middle segment
5318could be a day-of-year offset and11754a build number), but this should be verified.
It's worth manually confirming this is the correct version on the VS Code Marketplace before merging, since an unexpected version format could cause installation failures in sandboxes.
| "publisher": "anthropic", | ||
| "name": "claude-code", | ||
| "version": "2.1.49" | ||
| "version": "2.1.79" | ||
| }, | ||
| { | ||
| "publisher": "openai", | ||
| "name": "chatgpt", | ||
| "version": "0.5.76" | ||
| "version": "26.5318.11754" | ||
| }, | ||
| { | ||
| "publisher": "ms-vscode", | ||
| "name": "vscode-typescript-next", | ||
| "version": "6.0.20260219" | ||
| "version": "6.0.20260319" | ||
| }, | ||
| { | ||
| "publisher": "ms-python", | ||
| "name": "python", | ||
| "version": "2026.2.2026021801" | ||
| "version": "2026.5.2026031201" | ||
| }, |
There was a problem hiding this comment.
Minor version mismatch between VS Code extension and npm package for Claude Code
The VS Code extension claude-code was updated to 2.1.79, while the npm package @anthropic-ai/claude-code (in the packages section) was updated to 2.1.80. These are typically released in sync. While this could be intentional (e.g., a hotfix on the npm package side), it's worth confirming this one-version delta is expected rather than an artifact of the update script running at slightly different times.
Automated daily morph snapshot update.
Changes
Test plan
Summary by cubic
Updated morph snapshots to v75 and refreshed IDE/CLI dependencies to keep sandboxes current and compatible. Bumped VS Code extensions and dev packages in
configs/ide-deps.json, and added the latest snapshot entries and timestamps inpackages/shared/src/morph-snapshots.json.Written for commit 662098d. Summary will update on new commits.