Skip to content

Commit 78457be

Browse files
authored
chore(version): V1 (#105)
1 parent c2f1d51 commit 78457be

File tree

5 files changed

+19
-11
lines changed

5 files changed

+19
-11
lines changed

.github/workflows/cedar.yaml

Lines changed: 1 addition & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -30,9 +30,4 @@ jobs:
3030
- name: Get Packages
3131
run: dart pub get
3232
- name: Test
33-
run: dart test --fail-fast
34-
# TODO: Corpus tests will not run currently because of large integers in test data.
35-
# - name: Test (dart2js)
36-
# run: dart test -p chrome --fail-fast
37-
- name: Test (dart2wasm)
38-
run: dart test -p chrome -c dart2wasm --fail-fast
33+
run: dart test -p chrome,vm -c dart2js,dart2wasm --fail-fast

packages/cedar/CHANGELOG.md

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,15 @@
1+
## 1.0.0
2+
3+
- chore: Bump Dart SDK constraint to ^3.8.0
4+
- feat: Implement Cedar V4 parity
5+
- Implement IP address extensions
6+
- Add datetime and duration extensions
7+
- Template linking and diagnostics
8+
- Schema parsing and validation
9+
- Adds v4 protobuf schemas
10+
- Fixes remaining discrepancies in implementation
11+
- Updates corpus tests
12+
113
## 0.2.6
214

315
- chore: Bump Dart SDK constraint to `^3.7.0`

packages/cedar_ffi/CHANGELOG.md

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,8 @@
1-
## NEXT
1+
## 1.0.0
22

3-
- chore: Update native assets dependencies
4-
- chore: Remove unused dependencies
3+
- chore: Bump Dart SDK constraint to ^3.9.0
4+
- chore: Update dependencies
5+
- fix!: Adjust FFI bindings for Cedar 4.7 changes
56

67
## 0.2.1
78

packages/cedar_ffi/pubspec.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
name: cedar_ffi
22
description: FFI bindings for the Cedar policy language, written in Rust.
3-
version: 0.3.0
3+
version: 1.0.0
44
repository: https://github.com/celest-dev/cedar-dart/tree/main/packages/cedar_ffi
55

66
environment:

packages/cedar_ffi/test/corpus_test.dart

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -60,7 +60,7 @@ void main() {
6060
response.errors.map((it) => it.policyId),
6161
orderedEquals(query.errors),
6262
);
63-
expect(response.reasons, query.reasons);
63+
expect(response.reasons, unorderedEquals(query.reasons));
6464
});
6565
}
6666

0 commit comments

Comments
 (0)