File tree Expand file tree Collapse file tree 5 files changed +19
-11
lines changed
Expand file tree Collapse file tree 5 files changed +19
-11
lines changed Original file line number Diff line number Diff line change 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
Original file line number Diff line number Diff line change 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 `
Original file line number Diff line number Diff line change 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
Original file line number Diff line number Diff line change 11name : cedar_ffi
22description : FFI bindings for the Cedar policy language, written in Rust.
3- version : 0.3 .0
3+ version : 1.0 .0
44repository : https://github.com/celest-dev/cedar-dart/tree/main/packages/cedar_ffi
55
66environment :
Original file line number Diff line number Diff 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
You can’t perform that action at this time.
0 commit comments