Skip to content

Commit fc575bb

Browse files
chore(main): release sdk 0.5.0
1 parent 709a732 commit fc575bb

File tree

8 files changed

+24
-10
lines changed

8 files changed

+24
-10
lines changed
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
{
2-
".": "0.4.0"
2+
".": "0.5.0"
33
}

CHANGELOG.md

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,19 @@
11
# Changelog
22

3+
## [0.5.0](https://github.com/opentdf/web-sdk/compare/sdk/v0.4.0...sdk-v0.5.0) (2025-08-07)
4+
5+
6+
### Features
7+
8+
* add system metadata assertion ([#630](https://github.com/opentdf/web-sdk/issues/630)) ([922965c](https://github.com/opentdf/web-sdk/commit/922965c25c0a63b616dc833275152c4c55148ac3))
9+
10+
11+
### Bug Fixes
12+
13+
* `signingKey` should not be part of the computed hash ([#696](https://github.com/opentdf/web-sdk/issues/696)) ([b763278](https://github.com/opentdf/web-sdk/commit/b7632783b17413393db3ff2ac49a2ad9201ed8ef))
14+
* **sdk:** Fix new API not setting nano attributes ([#679](https://github.com/opentdf/web-sdk/issues/679)) ([f0d9719](https://github.com/opentdf/web-sdk/commit/f0d97196ab258122fe9a07b7d7895017299a46c2))
15+
* SEC-4653 prevent ReDoS vulnerability in HTML payload unwrapping regex ([#686](https://github.com/opentdf/web-sdk/issues/686)) ([09d0360](https://github.com/opentdf/web-sdk/commit/09d036055a4eea621d182f04b706fae6dc78c195))
16+
317
## [0.4.0](https://github.com/opentdf/web-sdk/compare/v0.3.2...v0.4.0) (2025-06-26)
418

519

Makefile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11

22
# x-release-please-start-version
3-
version=0.4.0
3+
version=0.5.0
44
# x-release-please-end
55
extras=cli web-app
66
pkgs=lib $(extras)

cli/package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@opentdf/ctl",
3-
"version": "0.4.0",
3+
"version": "0.5.0",
44
"description": "Node based CLI for opentdf",
55
"repository": {
66
"type": "git",
@@ -51,7 +51,7 @@
5151
"typescript-eslint": "^8.26.0"
5252
},
5353
"dependencies": {
54-
"@opentdf/sdk": "file:../lib/opentdf-sdk-0.4.0.tgz",
54+
"@opentdf/sdk": "file:../lib/opentdf-sdk-0.5.0.tgz",
5555
"yargs": "^17.7.2"
5656
}
5757
}

lib/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@opentdf/sdk",
3-
"version": "0.4.0",
3+
"version": "0.5.0",
44
"description": "OpenTDF for the Web",
55
"homepage": "https://github.com/opentdf/web-sdk",
66
"bugs": {

lib/src/version.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
/**
22
* Exposes the released version number of the `@opentdf/sdk` package
33
*/
4-
export const version = '0.4.0'; // x-release-please-version
4+
export const version = '0.5.0'; // x-release-please-version
55

66
/**
77
* A string name used to label requests as coming from this library client.

version.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
0.4.0
1+
0.5.0

web-app/package.json

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "web-app",
3-
"version": "0.4.0",
3+
"version": "0.5.0",
44
"license": "BSD-3-Clause-Clear",
55
"type": "module",
66
"scripts": {
@@ -14,10 +14,10 @@
1414
"preview": "vite preview",
1515
"test": "vite build && vitest",
1616
"test:ui": "vite build && vitest --ui",
17-
"rebuild": "npm remove @opentdf/sdk && npm add file:../lib/opentdf-sdk-0.4.0.tgz && npm run dev"
17+
"rebuild": "npm remove @opentdf/sdk && npm add file:../lib/opentdf-sdk-0.5.0.tgz && npm run dev"
1818
},
1919
"dependencies": {
20-
"@opentdf/sdk": "file:../lib/opentdf-sdk-0.4.0.tgz",
20+
"@opentdf/sdk": "file:../lib/opentdf-sdk-0.5.0.tgz",
2121
"clsx": "^2.1.1",
2222
"native-file-system-adapter": "^3.0.1",
2323
"react": "^19.0.0",

0 commit comments

Comments
 (0)