Skip to content

Commit 034dfe8

Browse files
committed
fix: run compatibility CI on Node 24
1 parent e3ebdbf commit 034dfe8

4 files changed

Lines changed: 20 additions & 3 deletions

File tree

.github/workflows/compatibility.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ jobs:
1414
- uses: actions/checkout@v4
1515
- uses: actions/setup-node@v4
1616
with:
17-
node-version: 20
17+
node-version: 24
1818
- run: npm install
1919
- run: npm run typecheck
2020
- run: npm test
@@ -25,7 +25,7 @@ jobs:
2525
- uses: actions/checkout@v4
2626
- uses: actions/setup-node@v4
2727
with:
28-
node-version: 20
28+
node-version: 24
2929
- run: npm install
3030
- run: npm install --no-save @opencode-ai/plugin@latest
3131
- run: npm run typecheck

CHANGELOG.md

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,13 @@ All notable changes to this project will be documented in this file.
55
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
66
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
77

8+
## [1.3.2] - 2026-04-27
9+
10+
### Fixed
11+
12+
- Compatibility CI now installs dependencies with `npm install` so it works in this no-lockfile repository.
13+
- Compatibility CI now runs on Node 24, matching the test command's `--experimental-strip-types` requirement.
14+
815
## [1.3.1] - 2026-04-27
916

1017
### Added

RELEASE_NOTES.md

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,15 @@
11
# Release Notes
22

3+
## 1.3.2 (2026-04-27)
4+
5+
### CI Compatibility Patch
6+
7+
- Fixed the compatibility workflow so dependency installation works without a committed lockfile.
8+
- Moved compatibility CI to Node 24 so TypeScript-stripping tests run correctly.
9+
- No runtime or storage changes.
10+
11+
---
12+
313
## 1.3.1 (2026-04-27)
414

515
### Security and Reliability Patch

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "opencode-working-memory",
3-
"version": "1.3.1",
3+
"version": "1.3.2",
44
"description": "Three-layer memory architecture for OpenCode with workspace memory and hot session state",
55
"type": "module",
66
"main": "index.ts",

0 commit comments

Comments
 (0)