Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
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
16 changes: 16 additions & 0 deletions .github/dependabot.yml
Original file line number Diff line number Diff line change
Expand Up @@ -44,6 +44,14 @@ updates:
groups:
all-python:
patterns: ["*"]
ignore:
# Cedar engine parity — bump in lockstep with @cedar-policy/cedar-wasm via a
# dedicated coordinated PR. See docs/design/CEDAR_HITL_GATES.md §15.6 (decision #23).
- dependency-name: "cedarpy"
update-types:
- "version-update:semver-major"
- "version-update:semver-minor"
- "version-update:semver-patch"

- package-ecosystem: "npm"
directories:
Expand All @@ -59,3 +67,11 @@ updates:
groups:
all-npm:
patterns: ["*"]
ignore:
# Cedar engine parity — bump in lockstep with cedarpy via a dedicated
# coordinated PR. See docs/design/CEDAR_HITL_GATES.md §15.6 (decision #23).
- dependency-name: "@cedar-policy/cedar-wasm"
update-types:
- "version-update:semver-major"
- "version-update:semver-minor"
- "version-update:semver-patch"
2 changes: 1 addition & 1 deletion agent/pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ dependencies = [
# in cdk/package.json AND refresh the parity fixtures, in the same
# commit. See docs/design/CEDAR_HITL_GATES.md §15.6 (decision #23) and
# the parity-contract banner in mise.toml.
"cedarpy==4.8.0", #https://github.com/k9securityio/cedar-py — EXACT pin (no ^/~), parity with @cedar-policy/cedar-wasm@4.10.0
"cedarpy==4.8.3", #https://github.com/k9securityio/cedar-py — EXACT pin (no ^/~), parity with @cedar-policy/cedar-wasm@4.8.2 (both Cedar Rust 4.8.2)
]

[tool.uv]
Expand Down
34 changes: 17 additions & 17 deletions agent/uv.lock

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

2 changes: 1 addition & 1 deletion cdk/layers/cedar-wasm/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,6 @@
"private": true,
"description": "Lambda layer bundling @cedar-policy/cedar-wasm for Cedar HITL policy handlers. Pinned version must match cdk/package.json.",
"dependencies": {
"@cedar-policy/cedar-wasm": "4.10.0"
"@cedar-policy/cedar-wasm": "4.8.2"
}
}
2 changes: 1 addition & 1 deletion cdk/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@
"@aws-sdk/s3-presigned-post": "^3.1021.0",
"@aws-sdk/s3-request-presigner": "^3.1021.0",
"@aws/durable-execution-sdk-js": "^1.1.0",
"@cedar-policy/cedar-wasm": "4.10.0",
"@cedar-policy/cedar-wasm": "4.8.2",
"aws-cdk-lib": "^2.257.0",
"cdk-nag": "^2.38.2",
"constructs": "^10.3.0",
Expand Down
2 changes: 1 addition & 1 deletion cdk/src/constructs/cedar-wasm-layer.ts
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ import { Construct } from 'constructs';
* lets the tests assert we ship the right version without duplicating
* the number across files.
*/
export const CEDAR_WASM_VERSION = '4.10.0';
export const CEDAR_WASM_VERSION = '4.8.2';

/**
* Minimum memory the Lambda attaching this layer should be configured
Expand Down
8 changes: 4 additions & 4 deletions yarn.lock

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

Loading