Skip to content

0.28.0-beta.0

Pre-release
Pre-release
Compare
Choose a tag to compare
@github-actions github-actions released this 28 Jun 00:39
· 16 commits to master since this release
3da26c6

fix: deps deploy works with Canister ID out of the ranges of the pocket-ic subnets

The dfx deps deploy command didn't work when the pulled dependency's Canister ID is out of the ranges of the pocket-ic subnets.

The removed replica had one subnet to cover all subnets. While the pocket-ic can dynamically create new subnet when trying to create a canister with specified ID.

chore: update bitcoin regtest configuration to be same as the bitcoin mainnet

Update bitcoin regtest configuration to be same as the bitcoin mainnet.

fees = record {
      get_current_fee_percentiles = 10_000_000 : nat;
      get_utxos_maximum = 10_000_000_000 : nat;
      get_block_headers_cycles_per_ten_instructions = 10 : nat;
      get_current_fee_percentiles_maximum = 100_000_000 : nat;
      send_transaction_per_byte = 20_000_000 : nat;
      get_balance = 10_000_000 : nat;
      get_utxos_cycles_per_ten_instructions = 10 : nat;
      get_block_headers_base = 50_000_000 : nat;
      get_utxos_base = 50_000_000 : nat;
      get_balance_maximum = 100_000_000 : nat;
      send_transaction_base = 5_000_000_000 : nat;
      get_block_headers_maximum = 10_000_000_000 : nat;
    };

You can get the fees by get_config API on the BTC Mainnet Canister.

feat: dfx start now starts a single pocket-ic process to serve as the server and gateway

If you were using the contents of the pocket-ic-proxy-port file to determine the port for
the /http_gateway endpoint, you should instead use dfx info pocketic-config-port

feat: add dfx native support for aarch64-Darwin

Add dfx native support for aarch64-Darwin.

Dependencies

Replica

Updated replica to commit 60fb469c46e44e6071193a3314cc442044fcf17a.
This incorporates the following executed proposals:

Motoko

Updated Motoko to 0.14.12

Frontend canister

Added missing fields to the asset canister .wasm: SetAssetContentArguments.last_chunk : opt blob, and HttpResponse.upgrade: opt bool

  • Module hash: 2f73b9e18b992f221a5fbab7fc59d840a9cbc461f7cfe875049f51354d23696c
  • #4289
  • #4285
  • #4286