You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
This adds support for the WASM memory threshold, used in conjunction with `--wasm-memory-limit`.
29
+
When the remaining memory until the limit falls below the threshold, the canister's
30
+
`on_low_wasm_memory` handler is run.
31
+
32
+
### fix: `dfx deploy --by-proposal` no longer sends chunk data in ProposeCommitBatch
33
+
34
+
Recently we made `dfx deploy` include some chunk data in CommitBatch, in order to streamline
35
+
deploys for smaller projects. `dfx deploy` splits up larger change lists and submits them in
36
+
smaller batches, in order to remain within message and compute limits.
37
+
38
+
This change also applied to `dfx deploy --by-proposal`, which submits all changes in a single
39
+
message. This made it more likely that `dfx deploy --by-proposal` will fail due to exceeding
40
+
message limits.
41
+
42
+
This fix makes it so `dfx deploy --by-proposal` never includes this chunk data in
43
+
ProposeCommitBatch, which will allow for more changes before hitting message limits.
44
+
5
45
### feat: `dfx start --pocketic` supports `--force` and shared networks.
6
46
7
47
`dfx start --pocketic` is now compatible with `--force` and shared networks.
@@ -67,6 +107,23 @@ Your principal for ICP wallets and decentralized exchanges: ueuar-wxbnk-bdcsr-dn
67
107
(run `dfx identity get-principal` to display)
68
108
```
69
109
110
+
### feat: Add pre-install tasks
111
+
112
+
Add pre-install tasks, which can be defined by the new `pre-install` key for canister objects in `dfx.json` with a command or list of commands.
113
+
114
+
### chore: Warn when the 'canister_ids.json' file is first generated for persistent networks.
115
+
116
+
Warn when the 'canister_ids.json' file is first generated for persistent networks.
117
+
118
+
```
119
+
dfx deploy --network ic
120
+
...
121
+
test_backend canister created on network ic with canister id: j36qm-pqaaa-aaaan-qzqya-cai
122
+
WARN: The "/home/sdk/repos/test/canister_ids.json" file has been generated. Please make sure you store it correctly, e.g., submitting it to a GitHub repository.
123
+
Building canisters...
124
+
...
125
+
```
126
+
70
127
## Dependencies
71
128
72
129
### Frontend canister
@@ -83,6 +140,23 @@ and reserves that much space for the ValueSerializer's buffer.
83
140
84
141
Updated Motoko to [0.13.5](https://github.com/dfinity/motoko/releases/tag/0.13.5)
85
142
143
+
### Replica
144
+
145
+
Updated replica to elected commit 3e24396441e4c7380928d4e8b4ccff7de77d0e7e.
146
+
This incorporates the following executed proposals:
0 commit comments