Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 0 additions & 7 deletions .changeset/all-phones-read.md

This file was deleted.

5 changes: 0 additions & 5 deletions .changeset/blue-stamps-bow.md

This file was deleted.

7 changes: 0 additions & 7 deletions .changeset/fresh-kiwis-doubt.md

This file was deleted.

7 changes: 0 additions & 7 deletions .changeset/jolly-cats-cheat.md

This file was deleted.

7 changes: 0 additions & 7 deletions .changeset/proud-candles-tap.md

This file was deleted.

9 changes: 0 additions & 9 deletions .changeset/tame-mice-hunt.md

This file was deleted.

7 changes: 0 additions & 7 deletions .changeset/tame-otters-relax.md

This file was deleted.

20 changes: 20 additions & 0 deletions packages/c2pa-node/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,25 @@
# @contentauth/c2pa-node

## 0.9.0

### Minor Changes

- b3b3196: Introduce new c2pa-utilities package, and update c2pa-web and c2pa-node to use it.
- f2f6ada: Move the Reader asset size check into `c2pa-utilities`, shared by both `c2pa-web` and `c2pa-node`. `c2pa-node`'s Reader now validates asset size before reading, using its own server-appropriate limit.

`validateAssetSize` treats a `maxSizeInBytes` of `0` as a request to use the new `DEFAULT_MAX_SIZE_IN_BYTES`, and throws a `RangeError` for non-finite or negative size/limit values.

### Patch Changes

- 2de9ba5: c2pa-rs bump
- 1102535: Bump c2pa-rs version to v0.90.10
- 4c8ad00: c2pa-rs version bump to v0.90.12
- 0f42fe8: Consolidate the `SigningAlg` type into `@contentauth/c2pa-utilities` (derived from `@contentauth/c2pa-types`'s schema-generated type). Re-use `ManifestAssertionKind` from `@contentauth/c2pa-types` instead of a duplicate hand-written copy. Fix `c2pa-node`'s `package.json` to list `@contentauth/c2pa-types` as a `dependency` rather than a `devDependency`, matching `c2pa-web`.
- Updated dependencies [b3b3196]
- Updated dependencies [f2f6ada]
- Updated dependencies [0f42fe8]
- @contentauth/c2pa-utilities@0.2.0

## 0.8.3

### Patch Changes
Expand Down
2 changes: 1 addition & 1 deletion packages/c2pa-node/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
"url": "git+https://github.com/contentauth/c2pa-js.git",
"directory": "packages/c2pa-node"
},
"version": "0.8.3",
"version": "0.9.0",
"description": "Node.js bindings for C2PA",
"main": "dist/index.js",
"type": "module",
Expand Down
12 changes: 12 additions & 0 deletions packages/c2pa-utilities/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
# @contentauth/c2pa-utilities

## 0.2.0

### Minor Changes

- b3b3196: Introduce new c2pa-utilities package, and update c2pa-web and c2pa-node to use it.
- f2f6ada: Move the Reader asset size check into `c2pa-utilities`, shared by both `c2pa-web` and `c2pa-node`. `c2pa-node`'s Reader now validates asset size before reading, using its own server-appropriate limit.

`validateAssetSize` treats a `maxSizeInBytes` of `0` as a request to use the new `DEFAULT_MAX_SIZE_IN_BYTES`, and throws a `RangeError` for non-finite or negative size/limit values.

- 0f42fe8: Consolidate the `SigningAlg` type into `@contentauth/c2pa-utilities` (derived from `@contentauth/c2pa-types`'s schema-generated type). Re-use `ManifestAssertionKind` from `@contentauth/c2pa-types` instead of a duplicate hand-written copy. Fix `c2pa-node`'s `package.json` to list `@contentauth/c2pa-types` as a `dependency` rather than a `devDependency`, matching `c2pa-web`.
2 changes: 1 addition & 1 deletion packages/c2pa-utilities/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@contentauth/c2pa-utilities",
"version": "0.1.0",
"version": "0.2.0",
"license": "MIT",
"repository": {
"type": "git",
Expand Down
8 changes: 8 additions & 0 deletions packages/c2pa-wasm/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,13 @@
# @contentauth/c2pa-wasm

## 0.11.3

### Patch Changes

- 2de9ba5: c2pa-rs bump
- 1102535: Bump c2pa-rs version to v0.90.10
- 4c8ad00: c2pa-rs version bump to v0.90.12

## 0.11.2

### Patch Changes
Expand Down
2 changes: 1 addition & 1 deletion packages/c2pa-wasm/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@contentauth/c2pa-wasm",
"version": "0.11.2",
"version": "0.11.3",
"license": "MIT",
"repository": {
"type": "git",
Expand Down
25 changes: 25 additions & 0 deletions packages/c2pa-web/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,30 @@
# @contentauth/c2pa-web

## 0.14.0

### Minor Changes

- b3b3196: Introduce new c2pa-utilities package, and update c2pa-web and c2pa-node to use it.
- f2f6ada: Move the Reader asset size check into `c2pa-utilities`, shared by both `c2pa-web` and `c2pa-node`. `c2pa-node`'s Reader now validates asset size before reading, using its own server-appropriate limit.

`validateAssetSize` treats a `maxSizeInBytes` of `0` as a request to use the new `DEFAULT_MAX_SIZE_IN_BYTES`, and throws a `RangeError` for non-finite or negative size/limit values.

### Patch Changes

- 2de9ba5: c2pa-rs bump
- 4b22953: Remove ts-deepmerge from vite.config.ts's external array so that it gets bundled into c2pa-web.
- 1102535: Bump c2pa-rs version to v0.90.10
- 4c8ad00: c2pa-rs version bump to v0.90.12
- 0f42fe8: Consolidate the `SigningAlg` type into `@contentauth/c2pa-utilities` (derived from `@contentauth/c2pa-types`'s schema-generated type). Re-use `ManifestAssertionKind` from `@contentauth/c2pa-types` instead of a duplicate hand-written copy. Fix `c2pa-node`'s `package.json` to list `@contentauth/c2pa-types` as a `dependency` rather than a `devDependency`, matching `c2pa-web`.
- Updated dependencies [2de9ba5]
- Updated dependencies [b3b3196]
- Updated dependencies [1102535]
- Updated dependencies [4c8ad00]
- Updated dependencies [f2f6ada]
- Updated dependencies [0f42fe8]
- @contentauth/c2pa-wasm@0.11.3
- @contentauth/c2pa-utilities@0.2.0

## 0.13.4

### Patch Changes
Expand Down
2 changes: 1 addition & 1 deletion packages/c2pa-web/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@contentauth/c2pa-web",
"version": "0.13.4",
"version": "0.14.0",
"license": "MIT",
"repository": {
"type": "git",
Expand Down