Skip to content

Commit

Permalink
feat: Canister snapshots (#3861)
Browse files Browse the repository at this point in the history
  • Loading branch information
adamspofford-dfinity authored Aug 7, 2024
1 parent e6459e9 commit 6329b94
Show file tree
Hide file tree
Showing 19 changed files with 755 additions and 211 deletions.
13 changes: 13 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,10 @@

# UNRELEASED

### feat: Add canister snapshots

The new `dfx canister snapshot` command can be used to create, apply, and delete snapshots of stopped canisters.

### feat: PocketIC HTTP gateway

icx-proxy's HTTP gateway has been replaced with PocketIC's. (This does not impact the meaning of `--pocketic` in `dfx start`.)
Expand All @@ -13,6 +17,15 @@ A test key id `Ed25519:dfx_test_key` is ready to be used by locally created cani

### feat: Added settings_digest field to the network-id file

## Dependencies

### Replica

Updated replica to elected commit 3d0b3f10417fc6708e8b5d844a0bac5e86f3e17d.
This incorporates the following executed proposals:

- [131473](https://dashboard.internetcomputer.org/proposal/131473)

# 0.22.1

## Dependencies
Expand Down
128 changes: 79 additions & 49 deletions Cargo.lock

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

6 changes: 3 additions & 3 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -21,11 +21,11 @@ license = "Apache-2.0"
[workspace.dependencies]
candid = "0.10.4"
candid_parser = "0.1.4"
ic-agent = { git = "https://github.com/dfinity/agent-rs.git", rev = "be929fd7967249c879f48f2f494cbfc5805a7d98" }
ic-agent = { git = "https://github.com/dfinity/agent-rs.git", rev = "60a64dd2d5368180f03a75df80f475d6e2caf21a" }
ic-asset = { path = "src/canisters/frontend/ic-asset" }
ic-cdk = "0.13.1"
ic-identity-hsm = { git = "https://github.com/dfinity/agent-rs.git", rev = "be929fd7967249c879f48f2f494cbfc5805a7d98" }
ic-utils = { git = "https://github.com/dfinity/agent-rs.git", rev = "be929fd7967249c879f48f2f494cbfc5805a7d98" }
ic-identity-hsm = { git = "https://github.com/dfinity/agent-rs.git", rev = "60a64dd2d5368180f03a75df80f475d6e2caf21a" }
ic-utils = { git = "https://github.com/dfinity/agent-rs.git", rev = "60a64dd2d5368180f03a75df80f475d6e2caf21a" }

aes-gcm = "0.10.3"
anyhow = "1.0.56"
Expand Down
Loading

0 comments on commit 6329b94

Please sign in to comment.