Skip to content

Commit

Permalink
chore: release 0.18.0-beta.1 (#3634)
Browse files Browse the repository at this point in the history
* chore: changelog header 0.18.0

* reorder and clarify

* chore: changelog header 0.18.0 (#3633)

* chore: changelog header 0.18.0

* reorder and clarify

* chore: Release 0.18.0-beta.1

Signed-off-by: Linwei Shang <[email protected]>

---------

Signed-off-by: Linwei Shang <[email protected]>
  • Loading branch information
lwshang authored Mar 4, 2024
1 parent 8598ac6 commit c057cab
Show file tree
Hide file tree
Showing 4 changed files with 19 additions and 12 deletions.
24 changes: 15 additions & 9 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,11 +2,13 @@

# UNRELEASED

### chore: bump candid to 0.10.4
# 0.18.0

Fix the Typescript binding for init args.
### fix!: removed the `dfx upgrade` command

The `dfx upgrade` command now prints a message directing the user to install dfxvm.

## fix!: Remove fallback .env formats
### fix!: Remove fallback .env formats

In dfx 0.14.0, we standardized on `CANISTER_ID_<CANISTER_NAME_UPPERCASE>` and
`CANISTER_CANDID_PATH_<CANISTER_NAME_UPPERCASE>` for
Expand All @@ -22,11 +24,15 @@ For reference, these formats were removed (any '-' characters were replaced by '
- `CANISTER_CANDID_PATH_<canister_name_case_from_dfx_json>`
- `<CANISTER_NAME_UPPERCASE>_CANISTER_ID`

### feat: add `dfx canister logs <canister_id>` for fetching canister's logs
### feat: add `dfx canister logs <canister_id>` for fetching canister's logs (preview)

There is a new subcomand `logs` to fetch canister's logs.
There is a new subcommand `logs` to fetch canister's logs.
When printing the log entries it tries to guess if the content can be converted to UTF-8 text and prints an array of hex bytes if it fails.

**Note**

This feature is still in development. Changes may occur in following releases.

### feat: display local asset canister URLs in subdomain format

Locally, canisters can either be accessed via `<canister_id>.localhost:<port>` or `localhost:<port>?canisterId=<canister_id>`.
Expand Down Expand Up @@ -77,10 +83,6 @@ For detailed explanations on how these fields work please refer to the [ICRC-2 s
The script at https://internetcomputer.org/install.sh now installs
the [dfxvm version manager](https://github.com/dfinity/dfxvm) instead of the dfx binary.

### fix!: removed the `dfx upgrade` command

The `dfx upgrade` command now prints a message directing the user to install dfxvm.

### fix(deps): init/deploy still requires hash check

`dfx deps pull` was recently changed to allow hash mismatch wasm. But `init` and `deploy` weren't change accordingly.
Expand All @@ -99,6 +101,10 @@ Fixed a bug where `dfx canister install` would fail when specify a canister id a

Fixed a bug where `dfx canister call` would fail when the deployed canister was removed from dfx.json.

### chore: bump candid to 0.10.4

Fix the Typescript binding for init args.

## Dependencies

### Replica
Expand Down
2 changes: 1 addition & 1 deletion Cargo.lock

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

3 changes: 2 additions & 1 deletion public/manifest.json
Original file line number Diff line number Diff line change
Expand Up @@ -64,6 +64,7 @@
"0.15.3",
"0.16.0",
"0.16.1",
"0.17.0"
"0.17.0",
"0.18.0-beta.1"
]
}
2 changes: 1 addition & 1 deletion src/dfx/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "dfx"
version = "0.16.1"
version = "0.18.0-beta.1"
authors.workspace = true
edition.workspace = true
repository.workspace = true
Expand Down

0 comments on commit c057cab

Please sign in to comment.