Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

chore: update to Cedar 3.1.4 #23

Merged
merged 3 commits into from
May 17, 2024
Merged
Show file tree
Hide file tree
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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