Skip to content

Commit

Permalink
Update dfx to 0.15.3
Browse files Browse the repository at this point in the history
  • Loading branch information
adamspofford-dfinity committed Jan 5, 2024
1 parent ff44630 commit 550d4b4
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 1 deletion.
2 changes: 2 additions & 0 deletions docs/other/updates/release-notes/release-notes.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,8 @@

| Version | Release Notes | Migration Guide |
|---------|---------------------------------------------------------------------|------------------------------------------------------------------------------------------------------------|
| 0.15.3 | [release notes](https://github.com/dfinity/sdk/releases/tag/0.15.3) | |
| 0.15.2 | [release notes](https://github.com/dfinity/sdk/releases/tag/0.15.2) | |
| 0.15.1 | [release notes](https://github.com/dfinity/sdk/releases/tag/0.15.1) | |
| 0.15.0 | [release notes](https://github.com/dfinity/sdk/releases/tag/0.15.0) | [migration guide](https://github.com/dfinity/sdk/blob/master/docs/migration/dfx-0.15-migration-guide.md) |
| 0.14.4 | [release notes](https://github.com/dfinity/sdk/releases/tag/0.14.4) | |
Expand Down
2 changes: 1 addition & 1 deletion submodules/sdk
Submodule sdk updated 80 files
+69 −0 .github/workflows/bitcoin-canister-update.yml
+49 −7 .github/workflows/e2e.yml
+47 −0 .github/workflows/publish-dfxvm-install-script.yml
+3 −0 .github/workflows/publish-manifest.yml
+122 −2 CHANGELOG.md
+760 −618 Cargo.lock
+11 −11 Cargo.toml
+1 −0 docs/cli-reference/dfx-canister.md
+3 −3 docs/cli-reference/dfx-ledger.md
+1 −0 docs/cli-reference/dfx-start.md
+23 −0 docs/design/asset-canister-interface.md
+37 −0 docs/dfx-json-schema.json
+40 −0 docs/networks-json-schema.json
+0 −501 docs/process/release.adoc
+119 −0 docs/process/release.md
+42 −39 e2e/tests-dfx/assetscanister.bash
+1 −1 e2e/tests-dfx/build_granular.bash
+1 −0 e2e/tests-dfx/certificate.bash
+13 −0 e2e/tests-dfx/delete.bash
+37 −0 e2e/tests-dfx/dotenv.bash
+6 −0 e2e/tests-dfx/extension.bash
+33 −1 e2e/tests-dfx/install.bash
+6 −0 e2e/tests-dfx/ledger.bash
+42 −0 e2e/tests-dfx/start.bash
+2 −2 e2e/utils/cycles-ledger.bash
+75 −75 nix/sources.json
+1 −1 public/install/200_downloader.sh
+3 −2 public/manifest.json
+341 −0 scripts/test-uis.py
+2 −1 scripts/workflows/provision-darwin.sh
+2 −1 scripts/workflows/provision-linux.sh
+2 −2 src/canisters/frontend/ic-asset/src/lib.rs
+1 −1 src/canisters/frontend/ic-certified-assets/Cargo.toml
+19 −1 src/canisters/frontend/ic-certified-assets/assets.did
+12 −18 src/canisters/frontend/ic-certified-assets/src/asset_certification/mod.rs
+3 −38 src/canisters/frontend/ic-certified-assets/src/asset_certification/tree.rs
+22 −8 src/canisters/frontend/ic-certified-assets/src/asset_certification/types/certification.rs
+10 −5 src/canisters/frontend/ic-certified-assets/src/asset_certification/types/http.rs
+13 −2 src/canisters/frontend/ic-certified-assets/src/lib.rs
+15 −1 src/canisters/frontend/ic-certified-assets/src/state_machine.rs
+56 −1 src/canisters/frontend/ic-certified-assets/src/tests.rs
+24 −0 src/canisters/frontend/ic-certified-assets/src/types.rs
+5 −4 src/canisters/frontend/ic-frontend-canister/src/lib.rs
+3 −3 src/canisters/frontend/icx-asset/src/main.rs
+5 −1 src/dfx-core/src/config/model/canister_id_store.rs
+40 −0 src/dfx-core/src/config/model/dfinity.rs
+14 −2 src/dfx-core/src/config/model/local_server_descriptor.rs
+16 −0 src/dfx-core/src/error/config.rs
+1 −1 src/dfx-core/src/json/structure.rs
+7 −0 src/dfx-core/src/network/provider.rs
+2 −1 src/dfx-core/src/util/mod.rs
+0 −37 src/dfx/.gitignore
+1 −1 src/dfx/Cargo.toml
+53 −53 src/dfx/assets/dfx-asset-sources.toml
+1 −1 src/dfx/assets/new_project_node_files/src/__project_name___frontend/assets/.ic-assets.json5
+1 −1 src/dfx/assets/new_project_node_files/src/__project_name___frontend/src/.ic-assets.json5
+8 −0 src/dfx/src/actors/icx_proxy.rs
+1 −3 src/dfx/src/commands/build.rs
+16 −15 src/dfx/src/commands/canister/delete.rs
+2 −2 src/dfx/src/commands/canister/deposit_cycles.rs
+26 −9 src/dfx/src/commands/canister/install.rs
+3 −3 src/dfx/src/commands/canister/send.rs
+3 −0 src/dfx/src/commands/cycles/balance.rs
+1 −3 src/dfx/src/commands/deploy.rs
+4 −0 src/dfx/src/commands/extension/install.rs
+2 −0 src/dfx/src/commands/ledger/balance.rs
+9 −7 src/dfx/src/commands/ledger/top_up.rs
+14 −0 src/dfx/src/commands/start.rs
+16 −2 src/dfx/src/commands/wallet/redeem_faucet_coupon.rs
+5 −5 src/dfx/src/lib/builders/mod.rs
+3 −0 src/dfx/src/lib/environment.rs
+0 −2 src/dfx/src/lib/ledger_types/mod.rs
+6 −2 src/dfx/src/lib/operations/canister/install_canister.rs
+2 −2 src/dfx/src/lib/replica/status.rs
+13 −0 src/dfx/src/lib/sign/sign_transport.rs
+89 −11 src/dfx/src/util/clap/parsers.rs
+2 −2 src/dfx/src/util/currency_conversion.rs
+19 −1 src/distributed/assetstorage.did
+ src/distributed/assetstorage.wasm.gz
+ src/distributed/ui.wasm

0 comments on commit 550d4b4

Please sign in to comment.