Skip to content

Commit

Permalink
feat: Bump UI (#3396)
Browse files Browse the repository at this point in the history
- Add `merge_init_args` method in Candid UI.
- Draw flamegraph for canister upgrade.
  • Loading branch information
chenyan-dfinity authored Sep 28, 2023
1 parent a368e87 commit 344225d
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 1 deletion.
6 changes: 6 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -79,6 +79,12 @@ Changes in behavior:
- after setting a custom "etag" header in .ic-assets.json, the asset canister will return an incorrect certification in the 200 response.
- assets with certain characters in the filename (example: "æ") will no longer be served correctly. The definition of "certain characters" is not yet known.

### Candid UI

- Module hash: 934756863c010898a24345ce4842d173b3ea7639a8eb394a0d027a9423c70b5c
- Add `merge_init_args` method in Candid UI.
- Draw flamegraph for canister upgrade.

### Frontend canister

For certification v1, if none of the requested encoding are certified but another encoding is certified, then the frontend canister once again returns the certificatie even though the response hash won't match.
Expand Down
3 changes: 2 additions & 1 deletion src/distributed/ui.did
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
service : {
did_to_js : (text) -> (opt text) query;
binding : (text, text) -> (opt text) query;
subtype : (text, text) -> (variant {Ok; Err : text}) query;
subtype : (new: text, old: text) -> (variant { Ok: null; Err: text }) query;
merge_init_args : (text, text) -> (opt text) query
}
Binary file modified src/distributed/ui.wasm
Binary file not shown.

0 comments on commit 344225d

Please sign in to comment.