Skip to content

Commit

Permalink
Update dfx to 0.25.0 (#5439)
Browse files Browse the repository at this point in the history
  • Loading branch information
adamspofford-dfinity authored Feb 19, 2025
1 parent e8b9776 commit b9084c7
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 1 deletion.
1 change: 1 addition & 0 deletions .github/workflows/preview-deployment.yml
Original file line number Diff line number Diff line change
Expand Up @@ -88,6 +88,7 @@ jobs:
env:
DFX_IDENTITY_PREVIEW: ${{ secrets.DFX_IDENTITY_PREVIEW }}
DFX_WARNING: -mainnet_plaintext_identity
POOL_CANISTER_ID: ${{ secrets.POOL_CANISTER_ID }}
CONTENTFUL_ACCESS_TOKEN: ${{ secrets.CONTENTFUL_ACCESS_TOKEN }}
CONTENTFUL_HOST: ${{ secrets.CONTENTFUL_HOST }}
Expand Down
1 change: 1 addition & 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,7 @@

| Version | Release Notes | Migration Guide |
|---------|---------------------------------------------------------------------|------------------------------------------------------------------------------------------------------------|
| 0.25.0 | [release notes](https://github.com/dfinity/sdk/releases/tag/0.25.0) | |
| 0.24.2 | [release notes](https://github.com/dfinity/sdk/releases/tag/0.24.2) | |
| 0.24.1 | [release notes](https://github.com/dfinity/sdk/releases/tag/0.24.1) | |
| 0.24.0 | [release notes](https://github.com/dfinity/sdk/releases/tag/0.24.0) | |
Expand Down
2 changes: 1 addition & 1 deletion submodules/sdk
Submodule sdk updated 93 files
+1 −1 .github/workflows/audit.yml
+16 −3 CHANGELOG.md
+455 −404 Cargo.lock
+3 −3 Cargo.toml
+1 −0 deny.toml
+1 −0 e2e/assets/playground_backend/mops.toml
+19 −2 e2e/assets/playground_backend/service/pool/IC.mo
+8 −1 e2e/assets/playground_backend/service/pool/Main.mo
+2 −1 e2e/assets/playground_backend/wasm-utils.did
+ e2e/assets/playground_backend/wasm-utils.wasm
+5 −0 e2e/assets/remote/download_did/canister_ids.json
+25 −0 e2e/assets/remote/download_did/dfx.json
+3 −0 e2e/assets/remote/download_did/main.mo
+13 −14 e2e/tests-dfx/assetscanister.bash
+6 −6 e2e/tests-dfx/call.bash
+2 −2 e2e/tests-dfx/deploy.bash
+2 −3 e2e/tests-dfx/error_context.bash
+4 −3 e2e/tests-dfx/install.bash
+9 −9 e2e/tests-dfx/mode_reinstall.bash
+6 −0 e2e/tests-dfx/remote.bash
+1 −1 e2e/tests-dfx/start.bash
+3 −3 e2e/tests-replica/deploy.bash
+75 −75 nix/sources.json
+4 −1 public/manifest.json
+1 −1 rust-toolchain.toml
+1 −1 scripts/release.sh
+51 −20 src/canisters/frontend/ic-asset/src/batch_upload/plumbing.rs
+11 −1 src/canisters/frontend/ic-asset/src/canister_api/methods/asset_properties.rs
+10 −0 src/canisters/frontend/ic-asset/src/canister_api/methods/chunk.rs
+6 −1 src/canisters/frontend/ic-asset/src/evidence/mod.rs
+3 −1 src/canisters/frontend/ic-asset/src/lib.rs
+57 −0 src/canisters/frontend/ic-asset/src/progress.rs
+72 −21 src/canisters/frontend/ic-asset/src/sync.rs
+3 −0 src/canisters/frontend/ic-asset/src/upload.rs
+4 −0 src/canisters/frontend/ic-certified-assets/src/asset_certification/mod.rs
+1 −0 src/canisters/frontend/ic-certified-assets/src/asset_certification/types/certification.rs
+1 −1 src/canisters/frontend/icx-asset/src/commands/sync.rs
+1 −1 src/canisters/frontend/icx-asset/src/commands/upload.rs
+15 −5 src/dfx-core/src/canister/mod.rs
+0 −17 src/dfx-core/src/cli/mod.rs
+2 −0 src/dfx-core/src/config/project_templates.rs
+0 −1 src/dfx-core/src/lib.rs
+3 −0 src/dfx-core/src/progress/mod.rs
+2 −2 src/dfx/Cargo.toml
+53 −53 src/dfx/assets/dfx-asset-sources.toml
+1 −1 src/dfx/src/actors/btc_adapter.rs
+4 −4 src/dfx/src/actors/canister_http_adapter.rs
+4 −3 src/dfx/src/actors/mod.rs
+4 −4 src/dfx/src/actors/pocketic.rs
+7 −11 src/dfx/src/actors/pocketic_proxy.rs
+13 −10 src/dfx/src/actors/post_start.rs
+4 −4 src/dfx/src/actors/replica.rs
+10 −5 src/dfx/src/actors/shutdown_controller.rs
+3 −5 src/dfx/src/commands/build.rs
+29 −17 src/dfx/src/commands/canister/call.rs
+5 −5 src/dfx/src/commands/canister/delete.rs
+26 −8 src/dfx/src/commands/canister/install.rs
+2 −2 src/dfx/src/commands/canister/update_settings.rs
+7 −6 src/dfx/src/commands/deploy.rs
+6 −5 src/dfx/src/commands/generate.rs
+1 −2 src/dfx/src/commands/language_service.rs
+2 −2 src/dfx/src/commands/new.rs
+2 −4 src/dfx/src/commands/start.rs
+1 −1 src/dfx/src/commands/wallet/add_controller.rs
+1 −1 src/dfx/src/commands/wallet/authorize.rs
+1 −1 src/dfx/src/commands/wallet/deauthorize.rs
+2 −3 src/dfx/src/commands/wallet/redeem_faucet_coupon.rs
+1 −1 src/dfx/src/commands/wallet/remove_controller.rs
+1 −1 src/dfx/src/commands/wallet/set_name.rs
+36 −16 src/dfx/src/lib/builders/assets.rs
+2 −4 src/dfx/src/lib/builders/custom.rs
+48 −53 src/dfx/src/lib/builders/mod.rs
+0 −3 src/dfx/src/lib/builders/motoko.rs
+0 −3 src/dfx/src/lib/builders/pull.rs
+5 −4 src/dfx/src/lib/builders/rust.rs
+6 −8 src/dfx/src/lib/canister_logs/log_visibility.rs
+3 −2 src/dfx/src/lib/deps/mod.rs
+12 −0 src/dfx/src/lib/environment.rs
+22 −13 src/dfx/src/lib/installers/assets/mod.rs
+3 −3 src/dfx/src/lib/logger.rs
+9 −7 src/dfx/src/lib/metadata/dfx.rs
+1 −1 src/dfx/src/lib/migrate.rs
+1 −0 src/dfx/src/lib/mod.rs
+26 −18 src/dfx/src/lib/models/canister.rs
+6 −3 src/dfx/src/lib/named_canister.rs
+17 −13 src/dfx/src/lib/operations/canister/deploy_canisters.rs
+50 −53 src/dfx/src/lib/operations/canister/install_canister.rs
+33 −27 src/dfx/src/lib/operations/canister/mod.rs
+161 −0 src/dfx/src/lib/progress/asset_sync_progress_renderer.rs
+3 −0 src/dfx/src/lib/progress/mod.rs
+37 −0 src/dfx/src/util/assets.rs
+53 −27 src/dfx/src/util/mod.rs
+ src/distributed/assetstorage.wasm.gz

0 comments on commit b9084c7

Please sign in to comment.