Skip to content
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
14 changes: 7 additions & 7 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -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.
Expand All @@ -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)
Expand Down
2 changes: 1 addition & 1 deletion Cargo.lock

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

5 changes: 3 additions & 2 deletions public/manifest.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"tags": {
"latest": "0.30.1"
"latest": "0.30.2"
},
"versions": [
"0.5.0",
Expand Down Expand Up @@ -85,6 +85,7 @@
"0.29.0",
"0.29.1",
"0.29.2",
"0.30.1"
"0.30.1",
"0.30.2"
]
}
2 changes: 1 addition & 1 deletion src/dfx/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "dfx"
version = "0.30.1"
version = "0.30.2"
authors.workspace = true
edition.workspace = true
repository.workspace = true
Expand Down