diff --git a/CHANGELOG.md b/CHANGELOG.md index 8e76dab1a8..285f5d3320 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,6 +2,11 @@ # UNRELEASED +### feat: `dfx info pocketic-config-port` + +Due to the incompatibility between the APIs on the replica port and the PocketIC port, `dfx info replica-port` +no longer works with PocketIC, and the PocketIC port is provided by a new command, `dfx info pocketic-config-port`. + ### fix: template frontends now have unsupported browser warnings DFX's default security headers cause Safari to break when viewing local canisters. Warning messages diff --git a/docs/cli-reference/dfx-info.mdx b/docs/cli-reference/dfx-info.mdx index 6ff0b43215..10ce99290b 100644 --- a/docs/cli-reference/dfx-info.mdx +++ b/docs/cli-reference/dfx-info.mdx @@ -14,14 +14,15 @@ dfx info [type] [flag] These are the types of information that the `dfx info` command can display. -| Information | Description | -|--------------------|--------------------------------------------------------------------------------------------------------------------| -| candid-ui-url | The URL of the Candid UI canister. | -| networks-json-path | Path to network definition file networks.json. | -| replica-port | The listening port of the replica. | -| replica-rev | The revision of the bundled replica. | -| security-policy | Show the headers that gets applied to assets in .ic-assets.json5 if "security_policy" is "standard" or "hardened". | -| webserver-port | The local webserver port. | +| Information | Description | +|----------------------|--------------------------------------------------------------------------------------------------------------------| +| candid-ui-url | The URL of the Candid UI canister. | +| networks-json-path | Path to network definition file networks.json. | +| replica-port | The listening port of the replica. | +| pocketic-config-port | The listening port of PocketIC. | +| replica-rev | The revision of the bundled replica. | +| security-policy | Show the headers that gets applied to assets in .ic-assets.json5 if "security_policy" is "standard" or "hardened". | +| webserver-port | The local webserver port. | ## Options