(fix): bump @appwrite.io/console to 15.4.0 in CLI template - #1678
(fix): bump @appwrite.io/console to 15.4.0 in CLI template#1678ChiragAgg5k wants to merge 1 commit into
Conversation
Greptile SummaryThis PR updates the console SDK used by the CLI template. The main change is:
Confidence Score: 4/5The generated CLI dependency installation can fail until its lockfile templates match version 15.4.0.
templates/cli/package.json.twig, templates/cli/bun.lock.twig, and templates/cli/package-lock.json.twig Important Files Changed
Prompt To Fix All With AIFix the following 1 code review issue. Work through them one at a time, proposing concise fixes.
---
### Issue 1 of 1
templates/cli/package.json.twig:54
**Frozen Lockfile Version Mismatch**
The generated Bun lockfile still resolves `@appwrite.io/console` at 15.3.0, but this manifest now requires 15.4.0. CI and publish use `bun install --frozen-lockfile`, so generated CLI builds can fail during dependency installation before the new SDK methods are compiled. The Bun and npm lockfile templates need to be regenerated with this version bump.
Reviews (1): Last reviewed commit: "(fix): bump @appwrite.io/console to 15.4..." | Re-trigger Greptile |
| }, | ||
| "dependencies": { | ||
| "@appwrite.io/console": "15.3.0", | ||
| "@appwrite.io/console": "15.4.0", |
There was a problem hiding this comment.
Frozen Lockfile Version Mismatch
The generated Bun lockfile still resolves @appwrite.io/console at 15.3.0, but this manifest now requires 15.4.0. CI and publish use bun install --frozen-lockfile, so generated CLI builds can fail during dependency installation before the new SDK methods are compiled. The Bun and npm lockfile templates need to be regenerated with this version bump.
Prompt To Fix With AI
This is a comment left during a code review.
Path: templates/cli/package.json.twig
Line: 54
Comment:
**Frozen Lockfile Version Mismatch**
The generated Bun lockfile still resolves `@appwrite.io/console` at 15.3.0, but this manifest now requires 15.4.0. CI and publish use `bun install --frozen-lockfile`, so generated CLI builds can fail during dependency installation before the new SDK methods are compiled. The Bun and npm lockfile templates need to be regenerated with this version bump.
How can I resolve this? If you propose a fix, please make it concise.|
Closing — handled locally; the CLI template pin will be updated in a future generator release. |
Bumps the CLI template's
@appwrite.io/consoledependency to 15.4.0 (published today) so the regenerated CLI can use the new console SDK methods. Required for appwrite/sdk-for-cli#342 build validation.