Skip to content

Commit 63aabb7

Browse files
Bump @opencode-ai/sdk from 1.14.28 to 1.15.5 in /apps/desktop (#267)
* Bump @opencode-ai/sdk from 1.14.28 to 1.15.5 in /apps/desktop Bumps [@opencode-ai/sdk](https://github.com/sst/opencode-sdk-js) from 1.14.28 to 1.15.5. - [Release notes](https://github.com/sst/opencode-sdk-js/releases) - [Changelog](https://github.com/anomalyco/opencode-sdk-js/blob/main/CHANGELOG.md) - [Commits](https://github.com/sst/opencode-sdk-js/commits) --- updated-dependencies: - dependency-name: "@opencode-ai/sdk" dependency-version: 1.14.41 dependency-type: direct:production update-type: version-update:semver-patch ... Signed-off-by: dependabot[bot] <support@github.com> * ship: iteration 1 - fix OpenCode SDK upgrade * ship: iteration 2 - fix Windows OpenCode payload * ship: iteration 3 - shrink runtime artifact uploads --------- Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Co-authored-by: Arul Sharma <31745423+arul28@users.noreply.github.com>
1 parent 623e712 commit 63aabb7

32 files changed

Lines changed: 1560 additions & 116 deletions

.github/workflows/ci.yml

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -211,6 +211,10 @@ jobs:
211211
run: |
212212
apps/ade-cli/dist-static/ade-${{ matrix.target }} --version
213213
tar -tzf apps/ade-cli/dist-static/ade-${{ matrix.target }}.native.tar.gz | grep -q '^\./node_modules/'
214+
if tar -tzf apps/ade-cli/dist-static/ade-${{ matrix.target }}.native.tar.gz | grep -Eq '^\./node_modules/opencode-(darwin|linux|windows)-'; then
215+
echo "Unexpected duplicate OpenCode platform package in native runtime archive"
216+
exit 1
217+
fi
214218
215219
- name: Upload ADE runtime binary
216220
uses: actions/upload-artifact@v4
@@ -220,6 +224,7 @@ jobs:
220224
apps/ade-cli/dist-static/ade-${{ matrix.target }}
221225
apps/ade-cli/dist-static/ade-${{ matrix.target }}.native.tar.gz
222226
if-no-files-found: error
227+
compression-level: 0
223228

224229
validate-docs:
225230
needs: install

.github/workflows/release-core.yml

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -353,6 +353,10 @@ jobs:
353353
run: |
354354
apps/ade-cli/dist-static/ade-${{ matrix.target }} --version
355355
tar -tzf apps/ade-cli/dist-static/ade-${{ matrix.target }}.native.tar.gz | grep -q '^\./node_modules/'
356+
if tar -tzf apps/ade-cli/dist-static/ade-${{ matrix.target }}.native.tar.gz | grep -Eq '^\./node_modules/opencode-(darwin|linux|windows)-'; then
357+
echo "Unexpected duplicate OpenCode platform package in native runtime archive"
358+
exit 1
359+
fi
356360
357361
- name: Upload ADE runtime binary
358362
uses: actions/upload-artifact@v4
@@ -362,6 +366,7 @@ jobs:
362366
apps/ade-cli/dist-static/ade-${{ matrix.target }}
363367
apps/ade-cli/dist-static/ade-${{ matrix.target }}.native.tar.gz
364368
if-no-files-found: error
369+
compression-level: 0
365370

366371
publish-release:
367372
if: ${{ inputs.publish }}

apps/ade-cli/package-lock.json

Lines changed: 276 additions & 7 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

apps/ade-cli/package.json

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@
2929
"@cursor/sdk": "^1.0.9",
3030
"@linear/sdk": "^84.0.0",
3131
"@openai/codex": "0.130.0",
32-
"@opencode-ai/sdk": "^1.4.2",
32+
"@opencode-ai/sdk": "^1.15.5",
3333
"@wize-logic/nodejs-rfb": "^4.2.0",
3434
"@xterm/addon-fit": "^0.11.0",
3535
"@xterm/addon-serialize": "^0.14.0",
@@ -43,6 +43,7 @@
4343
"marked": "^18.0.3",
4444
"node-cron": "^3.0.3",
4545
"node-pty": "^1.1.0",
46+
"opencode-ai": "^1.15.5",
4647
"react": "^18.3.1",
4748
"sql.js": "^1.13.0",
4849
"ws": "^8.20.0",

0 commit comments

Comments
 (0)