diff --git a/CHANGELOG.md b/CHANGELOG.md index c2258dcc59..7e5418017d 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -45,6 +45,13 @@ This incorporates the following executed proposals: # 0.30.2 +### Improve frontend canister sync logic + +Previously, committing frontend canister changes happened in multiple batches defined by simple heuristics that would likely not exceed the ingress message size limit. +Now, the ingress message size limit is respected more explicitly, and also a limit of total content size per batch since all content in the batch newly gets hashed in the canister. + +## Dependencies + ### Frontend canister Sets the `ic_env` cookie for all HTML files only if the canister environment changed in the `commit_batch` method. @@ -55,13 +62,6 @@ Use canister self-calls to avoid hitting instruction limits during `commit_batch - https://github.com/dfinity/sdk/pull/4450 - https://github.com/dfinity/sdk/pull/4446 -### Improve frontend canister sync logic - -Previously, committing frontend canister changes happened in multiple batches defined by simple heuristics that would likely not exceed the ingress message size limit. -Now, the ingress message size limit is respected more explicitly, and also a limit of total content size per batch since all content in the batch newly gets hashed in the canister. - -## Dependencies - ### Motoko Updated Motoko to [0.16.3](https://github.com/dfinity/motoko/releases/tag/0.16.3) diff --git a/Cargo.lock b/Cargo.lock index 3cdc7d2503..88d133fae7 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -1619,7 +1619,7 @@ checksum = "abd57806937c9cc163efc8ea3910e00a62e2aeb0b8119f1793a978088f8f6b04" [[package]] name = "dfx" -version = "0.30.1" +version = "0.30.2" dependencies = [ "actix", "aes-gcm", diff --git a/public/manifest.json b/public/manifest.json index 50f8cc9641..e30d01bc20 100644 --- a/public/manifest.json +++ b/public/manifest.json @@ -1,6 +1,6 @@ { "tags": { - "latest": "0.30.1" + "latest": "0.30.2" }, "versions": [ "0.5.0", @@ -85,6 +85,7 @@ "0.29.0", "0.29.1", "0.29.2", - "0.30.1" + "0.30.1", + "0.30.2" ] } diff --git a/src/dfx/Cargo.toml b/src/dfx/Cargo.toml index 02501c19fa..110a376501 100644 --- a/src/dfx/Cargo.toml +++ b/src/dfx/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "dfx" -version = "0.30.1" +version = "0.30.2" authors.workspace = true edition.workspace = true repository.workspace = true