Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Release 3.0.0 #407

Merged
merged 1 commit into from
Dec 17, 2024
Merged
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
2 changes: 1 addition & 1 deletion .cz.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ commitizen:
name: cz_conventional_commits
tag_format: $version
update_changelog_on_bump: true
version: 2.6.0
version: 3.0.0
version_files:
- Cargo.toml
- packages/certificate-verification-js/package.json:version
Expand Down
9 changes: 8 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
## Unreleased
## 3.0.0 (2024-12-17)

### BREAKING CHANGE

Expand All @@ -8,6 +8,12 @@

### Feat

- **ic-asset-certification**: allow adding additional headers to redi… (#400)
- **ic-http-certification**: add http response convenience methods (#398)
- **ic-asset-certification**: add ability to delete assets by path (#402)
- **ic-http-certification**: add request method enum (#397)
- **ic-asset-certification**: allow overriding asset response status code (#394)
- **ic-asset-certification**: add function to delete all assets (#393)
- **ic-asset-certification**: add asset map for querying assets in the asset router (#387)
- **ic-asset-certification**: add Range as a certified request header
- **ic-asset-certification**: add certification for individual chunks
Expand All @@ -29,6 +35,7 @@

### Fix

- **ic-http-certification**: fix handling of uncertified query parameters (#403)
- update tests and fix a corner-case
- remove text_io-dependency
- **ic-asset-certification**: remove dependency on regex to reduce WASM size
Expand Down
40 changes: 20 additions & 20 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

16 changes: 8 additions & 8 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ default-members = [
]

[workspace.package]
version = "2.6.0"
version = "3.0.0"
authors = ["DFINITY Stiftung"]
edition = "2021"
repository = "https://github.com/dfinity/response-verification"
Expand Down Expand Up @@ -95,15 +95,15 @@ rand = "0.8"
getrandom = { version = "0.2", features = ["js"] }
rand_chacha = "0.3"

ic-asset-certification = { path = "./packages/ic-asset-certification", version = "2.6.0" }
ic-certification = { path = "./packages/ic-certification", default-features = false, version = "2.6.0" }
ic-http-certification = { path = "./packages/ic-http-certification", version = "2.6.0" }
ic-asset-certification = { path = "./packages/ic-asset-certification", version = "3.0.0" }
ic-certification = { path = "./packages/ic-certification", default-features = false, version = "3.0.0" }
ic-http-certification = { path = "./packages/ic-http-certification", version = "3.0.0" }
ic-certification-testing = { path = "./packages/ic-certification-testing" }
ic-representation-independent-hash = { path = "./packages/ic-representation-independent-hash", version = "2.6.0" }
ic-certificate-verification = { path = "./packages/ic-certificate-verification", version = "2.6.0" }
ic-response-verification = { path = "./packages/ic-response-verification", version = "2.6.0" }
ic-representation-independent-hash = { path = "./packages/ic-representation-independent-hash", version = "3.0.0" }
ic-certificate-verification = { path = "./packages/ic-certificate-verification", version = "3.0.0" }
ic-response-verification = { path = "./packages/ic-response-verification", version = "3.0.0" }
ic-response-verification-test-utils = { path = "./packages/ic-response-verification-test-utils" }
ic-cbor = { path = "./packages/ic-cbor", version = "2.6.0" }
ic-cbor = { path = "./packages/ic-cbor", version = "3.0.0" }


[workspace.dependencies.ic-types]
Expand Down
2 changes: 1 addition & 1 deletion packages/certificate-verification-js/package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "@dfinity/certificate-verification",
"description": "Client side certificate verification for the Internet Computer",
"version": "2.6.0",
"version": "3.0.0",
"author": "DFINITY Stiftung",
"license": "Apache-2.0",
"repository": "github:dfinity/response-verification",
Expand Down
2 changes: 1 addition & 1 deletion packages/ic-certification-testing-wasm/package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "@dfinity/certification-testing",
"description": "Utilities for testing applications that work with Internet Computer certification",
"version": "2.6.0",
"version": "3.0.0",
"author": "DFINITY Stiftung",
"license": "Apache-2.0",
"repository": "github:dfinity/response-verification",
Expand Down
2 changes: 1 addition & 1 deletion packages/ic-response-verification-wasm/package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "@dfinity/response-verification",
"description": "Client side response verification for the Internet Computer",
"version": "2.6.0",
"version": "3.0.0",
"author": "DFINITY Stiftung",
"license": "Apache-2.0",
"repository": "github:dfinity/response-verification",
Expand Down
Loading