Skip to content

Commit

Permalink
chore: update to Cedar 3.1.4 (#23)
Browse files Browse the repository at this point in the history
Signed-off-by: Kevin Hakanson <kevhak@amazon.com>
  • Loading branch information
hakanson authored May 17, 2024
1 parent 2120a3d commit 54c1c11
Show file tree
Hide file tree
Showing 10 changed files with 372 additions and 171 deletions.
3 changes: 2 additions & 1 deletion .vscode/settings.json
Original file line number Diff line number Diff line change
Expand Up @@ -32,5 +32,6 @@
"PATH": "/usr/local/opt/llvm/bin/:$PATH",
"CC": "/usr/local/opt/llvm/bin/clang",
"AR": "/usr/local/opt/llvm/bin/llvm-ar"
}
},
"git.alwaysSignOff": true
}
5 changes: 5 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,8 @@
## v0.7.5 (Pre-release) 2024-05-17

- Update to Cedar 3.1.4
- Fix human-readable schema display bugs

## v0.7.4 (Pre-release) 2024-04-26

- Problems contain additional help text
Expand Down
134 changes: 64 additions & 70 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

11 changes: 8 additions & 3 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@
"url": "https://github.com/cedar-policy/vscode-cedar/issues"
},
"qna": "https://github.com/cedar-policy/vscode-cedar/issues",
"version": "0.7.4",
"version": "0.7.5",
"preview": true,
"icon": "icons/cedar-policy.png",
"engines": {
Expand Down Expand Up @@ -92,6 +92,11 @@
"category": "Cedar",
"title": "About Cedar extension"
},
{
"command": "cedar.documentation",
"category": "Cedar",
"title": "Open docs.cedarpolicy.com"
},
{
"command": "cedar.export",
"category": "Cedar",
Expand Down Expand Up @@ -270,8 +275,8 @@
"@typescript-eslint/eslint-plugin": "^5.62.0",
"@typescript-eslint/parser": "^5.62.0",
"@vscode/test-cli": "^0.0.4",
"@vscode/test-electron": "^2.3.9",
"@vscode/vsce": "^2.26.0",
"@vscode/test-electron": "^2.3.10",
"@vscode/vsce": "^2.26.1",
"eslint": "^8.57.0",
"js-yaml": "^4.1.0",
"mocha": "^10.4.0",
Expand Down
1 change: 1 addition & 0 deletions src/commands.ts
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@
// strings need to match commands in package.json
export const COMMAND_CEDAR_ACTIVATE = 'cedar.activate';
export const COMMAND_CEDAR_ABOUT = 'cedar.about';
export const COMMAND_CEDAR_DOCUMENTATION = 'cedar.documentation';
export const COMMAND_CEDAR_VALIDATE = 'cedar.validate';
export const COMMAND_CEDAR_EXPORT = 'cedar.export';
export const COMMAND_CEDAR_SCHEMAVALIDATE = 'cedar.schemavalidate';
Expand Down
Loading

0 comments on commit 54c1c11

Please sign in to comment.