Skip to content

Commit 0d7b574

Browse files
authored
Merge branch 'main' into rcaril/CDTOOL-1269-refactor-commands-using-old-scenario-framework
2 parents 985f41d + a720700 commit 0d7b574

4 files changed

Lines changed: 11 additions & 6 deletions

File tree

.fastly/config.toml

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,11 @@ toolchain_constraint = ">= 1.21" # Go toolchain constraint for use wit
1818
toolchain_constraint_tinygo = ">= 1.18" # Go toolchain constraint for use with TinyGo.
1919

2020
[language.rust]
21-
toolchain_constraint = ">= 1.78 != 1.91.0" # Rust 1.91.0 produces broken WASM packages which crash when handling requests
21+
# * Rust 1.91.0 has a bug where it produces broken wasm packages which crash
22+
# when handling requests; the bug is fixed in Rust 1.91.1.
23+
# * Rust 1.93.0 has a bug on wasm32-wasip2 where it leaks file descriptors in
24+
# `std::fs::File`; the bug is fixed in Rust 1.93.1.
25+
toolchain_constraint = ">= 1.78 != 1.91.0 != 1.93.0"
2226
wasm_wasi_target = "wasm32-wasip1"
2327

2428
[wasm-tools]

CHANGELOG.md

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -110,6 +110,7 @@ both the old and new forms are:
110110
- feat(service/resourcelink): moved the `resource-link` commands under the `service` command, with an unlisted and deprecated alias of `resource-link` ([#1635](https://github.com/fastly/cli/pull/1635))
111111
- feat(service/logging): moved the `logging` commands under the `service` command, with an unlisted and deprecated alias of `logging` ([#1642](https://github.com/fastly/cli/pull/1642))
112112
- feat(service/auth): moved the `service-auth` commands under the `service` command and renamed to `auth`, with an unlisted and deprecated alias of `service-auth` ([#1643](https://github.com/fastly/cli/pull/1643))
113+
- feat(compute/build): Block version 1.93.0 of Rust to avoid a wasm32-wasip2 bug. ([#1653](https://github.com/fastly/cli/pull/1653))
113114

114115
### Bug fixes:
115116

@@ -250,7 +251,7 @@ both the old and new forms are:
250251
### Enhancements:
251252

252253
- feat(manifest): Enable loading Secret Store configuration through environment variables ([#1540](https://github.com/fastly/cli/pull/1540))
253-
- feat(products): Add enable/disable support for API Discovery ([#1543](https://github.com/fastly/go-fastly/pull/1543))
254+
- feat(products): Add enable/disable support for API Discovery ([#1543](https://github.com/fastly/cli/pull/1543))
254255

255256
### Bug fixes:
256257

@@ -311,7 +312,7 @@ both the old and new forms are:
311312

312313
### Dependencies:
313314

314-
- build(deps): `github.com/fastly/go-fastly/v11` from 10 to 111 ([#14XX](https://github.com/fastly/cli/pull/14XX))
315+
- build(deps): `github.com/fastly/go-fastly/v11` from 10 to 11 ([#1514](https://github.com/fastly/cli/pull/1514))
315316
- build(deps): `golang.org/x/sys` from 0.33.0 to 0.34.0 ([#1508](https://github.com/fastly/cli/pull/1508))
316317
- build(deps): `golang.org/x/term` from 0.32.0 to 0.33.0 ([#1508](https://github.com/fastly/cli/pull/1508))
317318
- build(deps): `golang.org/x/crypto` from 0.39.0 to 0.40.0 ([#1508](https://github.com/fastly/cli/pull/1508))
@@ -1963,7 +1964,7 @@ a single character (e.g. `--k` and `--v`). These were corrected to `--key` and
19631964
- Make `--name` flag for `service search` command a required flag [#529](https://github.com/fastly/cli/pull/529)
19641965
- Update config `last_checked` field even on config load error [#528](https://github.com/fastly/cli/pull/528)
19651966
- Implement Compute@Edge Free Trial Activation [#531](https://github.com/fastly/cli/pull/531)
1966-
- Bump Rust toolchain constraint to `1.56.1` for 2021 edition [#533](https://github.com/fastly/cli/pull/533533533533533)
1967+
- Bump Rust toolchain constraint to `1.56.1` for 2021 edition [#533](https://github.com/fastly/cli/pull/533)
19671968
- Support Arch User Repositories [#530](https://github.com/fastly/cli/pull/530)
19681969

19691970
## [v1.6.0](https://github.com/fastly/cli/releases/tag/v1.6.0) (2022-01-20)

DOCUMENTATION.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,6 @@
22

33
The help output from the Fastly CLI is consumed by the Fastly Developer Hub to produce online documentation: https://www.fastly.com/documentation/reference/cli
44

5-
Part of the documentation is to provide additional usage examples and links to APIs used by the CLI commands (example: https://www.fastly.com/documentation/reference/clibackend/create/#examples).
5+
Part of the documentation is to provide additional usage examples and links to APIs used by the CLI commands (example: https://www.fastly.com/documentation/reference/cli/backend/create/#examples).
66

77
These examples and API references are defined in [`pkg/app/metadata.json`](./pkg/app/metadata.json).

RELEASE.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010
1. Merge CHANGELOG.
1111
1. Rebase latest remote main branch locally (`git pull --rebase origin main`).
1212
1. Create a new signed tag (replace `{{remote}}` with the remote pointing to the official repository i.e. `origin` or `upstream` depending on your Git workflow): `tag=vX.Y.Z && git tag -s $tag -m $tag && git push {{remote}} $tag`
13-
- Triggers a [github action](https://github.com/fastly/cli/blob/main/.github/workflows/tag_release.yml) that produces a 'draft' release.
13+
- Triggers a [github action](https://github.com/fastly/cli/blob/main/.github/workflows/tag_to_draft_release.yml) that produces a 'draft' release.
1414
1. Copy/paste CHANGELOG into the [draft release](https://github.com/fastly/cli/releases).
1515
1. Publish draft release.
1616

0 commit comments

Comments
 (0)