v0.39.3
v0.39.3 (2021-10-06)
Bug fixes:
- Add missing description for
user list --customer-id
#425 - Trim the rust version to fix parse errors #427
Enhancements:
- Abstraction layer for
[setup.backends]
#421
fastly.toml
manifest version update
The structure of the [setup]
table changed between manifest version 1
and 2
.
It changed from manifest_version = 1
:
[[setup.backends]]
name = "backend_name"
prompt = "Backend able to serve `/articles` path"
address = "reqbin.com"
port = 443
[[setup.backends]]
name = "other_backend_name"
prompt = "Backend able to serve `/anything` path"
address = "httpbin.org"
port = 443
To manifest_version = 2
:
[setup.backends.backend_name]
address = "reqbin.com"
port = 443
prompt = "Backend able to serve `/articles` path"
[setup.backends.other_backend_name]
address = "httpbin.org"
port = 443
prompt = "Backend able to serve `/anything` path"
Refer to the specification documentation for details:
https://developer.fastly.com/reference/compute/fastly-toml/