File tree Expand file tree Collapse file tree 20 files changed +65
-33
lines changed Expand file tree Collapse file tree 20 files changed +65
-33
lines changed Original file line number Diff line number Diff line change 11# Changelog
22
3+ ## [ v2.1.1] ( https://github.com/fastly/fastly-rust/releases/tag/release/v2.1.1 ) (2023-05-22)
4+
5+ ** Bug fixes:**
6+
7+ - fix(acl): change ` version ` from int to string.
8+ - fix(acl): add missing methods for ` service_id ` and ` service_version ` properties.
9+ - fix(backend): make ` ssl_check_cert ` nullable.
10+ - fix(purge): skip URL escape for ` surrogate_key ` param.
11+ - fix(snippets): change ` priority ` and ` version ` from int to string.
12+ - fix(snippets): add missing methods for ` service_id ` and ` service_version ` properties.
13+
314## [ v2.1.0] ( https://github.com/fastly/fastly-rust/releases/tag/release/v2.1.0 ) (2023-05-17)
415
516** Enhancements:**
Original file line number Diff line number Diff line change 11[package ]
22name = " fastly-api"
3- version = " 2.1.0 "
3+ version = " 2.1.1 "
44authors = [
" Fastly <[email protected] >" ]
55edition = " 2021"
66description = " Fastly API client"
Original file line number Diff line number Diff line change @@ -13,7 +13,7 @@ Rust 2021 Edition
1313Add the following to ` Cargo.toml ` under ` [dependencies] ` :
1414
1515``` toml
16- fastly-api = " 2.1.0 "
16+ fastly-api = " 2.1.1 "
1717```
1818
1919## Usage
Original file line number Diff line number Diff line change @@ -9,7 +9,7 @@ Name | Type | Description | Notes
99** deleted_at** | Option<** String** > | Date and time in ISO 8601 format. | [ readonly]
1010** updated_at** | Option<** String** > | Date and time in ISO 8601 format. | [ readonly]
1111** service_id** | Option<** String** > | | [ readonly]
12- ** version** | Option<** i32 ** > | | [ readonly]
12+ ** version** | Option<** String ** > | String representing the number identifying a version of the service. | [ readonly]
1313** id** | Option<** String** > | | [ readonly]
1414
1515[[ Back to API list]] ( ../README.md#documentation-for-api-endpoints ) [[ Back to README]] ( ../README.md )
Original file line number Diff line number Diff line change 44
55Name | Type | Description | Notes
66------------ | ------------- | ------------- | -------------
7+ ** service_id** | Option<** String** > | | [ readonly]
8+ ** version** | Option<** String** > | String representing the number identifying a version of the service. | [ readonly]
79** id** | Option<** String** > | | [ readonly]
810
911[[ Back to API list]] ( ../README.md#documentation-for-api-endpoints ) [[ Back to README]] ( ../README.md )
Original file line number Diff line number Diff line change @@ -8,12 +8,12 @@ Name | Type | Description | Notes
88** dynamic** | Option<** i32** > | Sets the snippet version. |
99** _ type** | Option<** String** > | The location in generated VCL where the snippet should be placed. |
1010** content** | Option<** String** > | The VCL code that specifies exactly what the snippet does. |
11- ** priority** | Option<** i32** > | Priority determines execution order. Lower numbers execute first. | [ default to 100]
12- ** service_id** | Option<** String** > | | [ readonly]
13- ** version** | Option<** i32** > | | [ readonly]
11+ ** priority** | Option<** String** > | Priority determines execution order. Lower numbers execute first. | [ default to 100]
1412** created_at** | Option<** String** > | Date and time in ISO 8601 format. | [ readonly]
1513** deleted_at** | Option<** String** > | Date and time in ISO 8601 format. | [ readonly]
1614** updated_at** | Option<** String** > | Date and time in ISO 8601 format. | [ readonly]
15+ ** service_id** | Option<** String** > | | [ readonly]
16+ ** version** | Option<** String** > | String representing the number identifying a version of the service. | [ readonly]
1717** id** | Option<** String** > | | [ readonly]
1818
1919[[ Back to API list]] ( ../README.md#documentation-for-api-endpoints ) [[ Back to README]] ( ../README.md )
Original file line number Diff line number Diff line change @@ -8,7 +8,7 @@ Name | Type | Description | Notes
88** dynamic** | Option<** i32** > | Sets the snippet version. |
99** _ type** | Option<** String** > | The location in generated VCL where the snippet should be placed. |
1010** content** | Option<** String** > | The VCL code that specifies exactly what the snippet does. |
11- ** priority** | Option<** i32 ** > | Priority determines execution order. Lower numbers execute first. | [ default to 100]
11+ ** priority** | Option<** String ** > | Priority determines execution order. Lower numbers execute first. | [ default to 100]
1212
1313[[ Back to API list]] ( ../README.md#documentation-for-api-endpoints ) [[ Back to README]] ( ../README.md )
1414
Original file line number Diff line number Diff line change @@ -36,7 +36,7 @@ Name | Type | Description | Required | Notes
3636** dynamic** | Option\< ** i32** > | Sets the snippet version. | |
3737** _ type** | Option\< ** String** > | The location in generated VCL where the snippet should be placed. | |
3838** content** | Option\< ** String** > | The VCL code that specifies exactly what the snippet does. | |
39- ** priority** | Option\< ** i32 ** > | Priority determines execution order. Lower numbers execute first. | |[ default to 100]
39+ ** priority** | Option\< ** String ** > | Priority determines execution order. Lower numbers execute first. | |[ default to 100]
4040
4141### Return type
4242
@@ -223,7 +223,7 @@ Name | Type | Description | Required | Notes
223223** dynamic** | Option\< ** i32** > | Sets the snippet version. | |
224224** _ type** | Option\< ** String** > | The location in generated VCL where the snippet should be placed. | |
225225** content** | Option\< ** String** > | The VCL code that specifies exactly what the snippet does. | |
226- ** priority** | Option\< ** i32 ** > | Priority determines execution order. Lower numbers execute first. | |[ default to 100]
226+ ** priority** | Option\< ** String ** > | Priority determines execution order. Lower numbers execute first. | |[ default to 100]
227227
228228### Return type
229229
Original file line number Diff line number Diff line change @@ -8,12 +8,12 @@ Name | Type | Description | Notes
88** dynamic** | Option<** i32** > | Sets the snippet version. |
99** _ type** | Option<** String** > | The location in generated VCL where the snippet should be placed. |
1010** content** | Option<** String** > | The VCL code that specifies exactly what the snippet does. |
11- ** priority** | Option<** i32** > | Priority determines execution order. Lower numbers execute first. | [ default to 100]
12- ** service_id** | Option<** String** > | | [ readonly]
13- ** version** | Option<** i32** > | | [ readonly]
11+ ** priority** | Option<** String** > | Priority determines execution order. Lower numbers execute first. | [ default to 100]
1412** created_at** | Option<** String** > | Date and time in ISO 8601 format. | [ readonly]
1513** deleted_at** | Option<** String** > | Date and time in ISO 8601 format. | [ readonly]
1614** updated_at** | Option<** String** > | Date and time in ISO 8601 format. | [ readonly]
15+ ** service_id** | Option<** String** > | | [ readonly]
16+ ** version** | Option<** String** > | String representing the number identifying a version of the service. | [ readonly]
1717** id** | Option<** String** > | | [ readonly]
1818
1919[[ Back to API list]] ( ../README.md#documentation-for-api-endpoints ) [[ Back to README]] ( ../README.md )
Original file line number Diff line number Diff line change 44
55Name | Type | Description | Notes
66------------ | ------------- | ------------- | -------------
7+ ** service_id** | Option<** String** > | | [ readonly]
8+ ** version** | Option<** String** > | String representing the number identifying a version of the service. | [ readonly]
79** id** | Option<** String** > | | [ readonly]
810
911[[ Back to API list]] ( ../README.md#documentation-for-api-endpoints ) [[ Back to README]] ( ../README.md )
You can’t perform that action at this time.
0 commit comments