-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
🚨 Require allowlisting KASes on decrypt and upsert (#195)
- Creates helper function for validating input KAS urls are secure - This only logs at 'error', as there are many sitations where we want http KAS urls in practice - Creates helper function to validate a URL is appropriately prefixed (or 'safe') - Fail on `upsert` and `rewrap` against 'unsafe' URL before emitting the request - 1.3.0 minor autobump - Adds new error type, `UnsafeUrlError`, with a `url` proprerty to allow applications to update the client `allowKases` list and retry
- Loading branch information
1 parent
74c8995
commit 893788d
Showing
14 changed files
with
1,126 additions
and
1,435 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,5 +1,5 @@ | ||
|
||
version=1.2.2 | ||
version=1.3.0 | ||
pkgs=lib web-app | ||
|
||
.PHONY: all audit license-check lint test ci i start format clean | ||
|
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
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,6 +1,6 @@ | ||
{ | ||
Check notice on line 1 in lib/package.json GitHub Actions / deliver-ghp
|
||
"name": "@opentdf/client", | ||
"version": "1.2.2", | ||
"version": "1.3.0", | ||
"description": "Access and generate tdf protected content", | ||
"homepage": "https://github.com/opentdf/client-web", | ||
"bugs": { | ||
|
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,2 +1,2 @@ | ||
export const version = '1.2.2'; | ||
export const version = '1.3.0'; | ||
export const clientType = 'tdf3-js-client'; |
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.