Skip to content

Commit 4f83518

Browse files
authored
feat: Cedar SDK 4.5.0 support (#34)
Signed-off-by: Kevin Hakanson <kevhak@amazon.com>
1 parent 9dac651 commit 4f83518

File tree

16 files changed

+630
-367
lines changed

16 files changed

+630
-367
lines changed

.vscode-test.js

Lines changed: 17 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,5 +5,21 @@ module.exports = defineConfig({
55
files: 'out/test/**/*.test.js',
66
// --disable-gpu prevents the following error
77
// ERROR:gl_display.cc(497)] EGL Driver message (Error) eglQueryDeviceAttribEXT: Bad attribute.
8-
launchArgs: ['--disable-gpu'],
8+
launchArgs: [
9+
'--disable-gpu',
10+
'--no-sandbox',
11+
'--disable-extensions',
12+
'--disable-dev-shm-usage',
13+
'--disable-workspace-trust',
14+
'--skip-release-notes',
15+
'--disable-telemetry',
16+
'--disable-updates'
17+
],
18+
env: {
19+
SHELL: '/bin/bash',
20+
VSCODE_SKIP_PRELAUNCH: 'true'
21+
},
22+
settings: {
23+
'terminal.integrated.inheritEnv': false
24+
}
925
});

CHANGELOG.md

Lines changed: 13 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,9 @@
1+
## v0.9.2 (Pre-release) 2025-07-18
2+
3+
- Update to Cedar SDK 4.5.0
4+
- Support enumerated entity types
5+
- Require Visual Studio Code version [1.83](https://code.visualstudio.com/updates/v1_83) or later
6+
17
## v0.9.1 (Pre-release) 2025-05-02
28

39
- Update to Cedar SDK 4.4.0
@@ -7,19 +13,24 @@
713

814
- Update to Cedar SDK 4.3.2
915

16+
## v0.8.0 (Preview) 2024-09-26
17+
18+
- Update to Cedar 3.4.1
19+
- Human-readable schema IntelliSense, validation, and translation
20+
1021
## v0.7.7 (Pre-release) 2024-09-25
1122

1223
- Update to Cedar 3.4.1
1324

14-
## v0.6.4 (Pre-release) 2024-06-03
25+
## v0.6.4 (Preview) 2024-06-03
1526

1627
- Update to Cedar 2.4.7
1728

1829
## v0.7.6 (Pre-release) 2024-06-03
1930

2031
- Update to Cedar 3.2.1
2132

22-
## v0.6.3 (Pre-release) 2024-05-17
33+
## v0.6.3 (Preview) 2024-05-17
2334

2435
- Update to Cedar 2.4.6
2536
- Cedar schema syntax highlighting

development.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -51,16 +51,16 @@ The `package.json` directly refers to the `vscode-cedar-wasm/pkg` folder.
5151
},
5252
```
5353

54-
`package.json` also determines version [1.95](https://code.visualstudio.com/updates/v1_95) or higher by setting `engines` and pinning `devDependencies` on `@types` for that version of `vscode` and the closest matching version of `node`
54+
`package.json` also determines version [1.83](https://code.visualstudio.com/updates/v1_83) or higher by setting `engines` and pinning `devDependencies` on `@types` for that version of `vscode` and the closest matching version of `node`
5555

5656
```json
5757
"engines": {
58-
"vscode": "^1.95.0"
58+
"vscode": "^1.83.0"
5959
},
6060

6161
"devDependencies": {
62-
"@types/node": "=20.17.32",
63-
"@types/vscode": "=1.95.0",
62+
"@types/node": "=18.15.0",
63+
"@types/vscode": "=1.83.0",
6464
// ...
6565
}
6666
```

0 commit comments

Comments
 (0)