This repository has been archived by the owner on Aug 30, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 16
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Specify and implement “extract from UVCI”-operation (#57)
Constituent squashed commits: * expand the CertLogic specification with a domain-specific operation * fix misspellings ("UCVI") in texts + add clarification to specification * (fix wrong invocations of Mocha + rename scripts to action-based) * implement the new operation in the JS-evaluator (and -validator) That includes both unit tests, and test cases in the test suite. * restructure Kotlin sources a bit * fix some minor things with the JS impl. and specification * fix an inconsistency w.r.t. reporting about time units * add `extractFromUVCI` operation to Kotlin evaluator and validator + add/transpile unit tests + some restructuring and adding of `internal` keywords. + supported specification * fix and align some textual details * added some more info regarding the rationale in the design decisions * add a note about providing/implementing custom operations
- Loading branch information
Showing
24 changed files
with
657 additions
and
103 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,8 @@ | ||
# IntelliJ/IDEA: | ||
/.idea | ||
.idea | ||
*.iml | ||
|
||
# results of running validations: | ||
/out | ||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,12 +1,17 @@ | ||
# Change log | ||
|
||
## 0.9.0 | ||
|
||
* Implement the `extractFromUVCI` operation | ||
|
||
|
||
## 0.8.2 | ||
|
||
* Integrate everything from the `certlogic-validation` NPM package back into this `certlogic-js` NPM package. | ||
* Integrate everything from the `certlogic-validation` NPM package back into this `certlogic-js` NPM package | ||
|
||
|
||
## 0.8.1 | ||
|
||
* Invalid data access (`var` operation) on `null` now also throws | ||
* Fixed bugs in `certlogic-validation` | ||
* Fix bugs in `certlogic-validation` | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,8 +1,13 @@ | ||
# Change log | ||
|
||
|
||
## 0.9.0 | ||
|
||
* Implement the `extractFromUVCI` operation | ||
|
||
|
||
## 0.8.1 | ||
|
||
* Implement a validator | ||
* Invalid data access (`var` operation) on `null` now also throws | ||
* Implemented validator | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.