Skip to content

Commit 3de6792

Browse files
author
github-actions
committed
Generated v1.3.1
1 parent 47cd284 commit 3de6792

20 files changed

+17
-206
lines changed

CHANGELOG.md

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,12 @@
11
# Changelog
22

3+
## [v1.3.1](https://github.com/fastly/fastly-rust/releases/tag/release/v1.3.1) (2023-04-26)
4+
5+
**Bug fixes:**
6+
7+
- fix(object-store-item): use correct type for key value
8+
- fix(tls-csrs): remove internal endpoint
9+
310
## [v1.3.0](https://github.com/fastly/fastly-rust/releases/tag/release/v1.3.0) (2023-04-03)
411

512
**Bug fixes:**

Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "fastly-api"
3-
version = "1.3.0"
3+
version = "1.3.1"
44
authors = ["Fastly <[email protected]>"]
55
edition = "2021"
66
description = "Fastly API client"

README.md

Lines changed: 1 addition & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -3,12 +3,6 @@
33
A Rust client library for interacting with most facets of the [Fastly API](https://developer.fastly.com/reference/api).
44

55

6-
> ⚠️ This client library (`1.3.0`) is an early-access release. Features may change without notice. Use at your own risk.
7-
8-
**We strongly recommend that you do not install alpha and beta releases on live production services.** No official support is provided for such releases. Please try out the library in a test environment, see what breaks without worrying about consequences, and give us [feedback](#issues).
9-
10-
Read about the [Fastly Product Lifecycle](https://docs.fastly.com/products/fastly-product-lifecycle).
11-
126

137
## Requirements
148

@@ -19,7 +13,7 @@ Rust 2021 Edition
1913
Add the following to `Cargo.toml` under `[dependencies]`:
2014

2115
```toml
22-
fastly-api = "1.3.0"
16+
fastly-api = "1.3.1"
2317
```
2418

2519
## Usage
@@ -411,7 +405,6 @@ Class | Method | HTTP request | Description
411405
*TlsConfigurationsApi* | [**get_tls_config**](docs/TlsConfigurationsApi.md#get_tls_config) | **GET** /tls/configurations/{tls_configuration_id} | Get a TLS configuration
412406
*TlsConfigurationsApi* | [**list_tls_configs**](docs/TlsConfigurationsApi.md#list_tls_configs) | **GET** /tls/configurations | List TLS configurations
413407
*TlsConfigurationsApi* | [**update_tls_config**](docs/TlsConfigurationsApi.md#update_tls_config) | **PATCH** /tls/configurations/{tls_configuration_id} | Update a TLS configuration
414-
*TlsCsrsApi* | [**create_csr**](docs/TlsCsrsApi.md#create_csr) | **POST** /tls/certificate_signing_requests | Create CSR
415408
*TlsDomainsApi* | [**list_tls_domains**](docs/TlsDomainsApi.md#list_tls_domains) | **GET** /tls/domains | List TLS domains
416409
*TlsPrivateKeysApi* | [**create_tls_key**](docs/TlsPrivateKeysApi.md#create_tls_key) | **POST** /tls/private_keys | Create a TLS private key
417410
*TlsPrivateKeysApi* | [**delete_tls_key**](docs/TlsPrivateKeysApi.md#delete_tls_key) | **DELETE** /tls/private_keys/{tls_private_key_id} | Delete a TLS private key

docs/ErrorResponse.md

Lines changed: 0 additions & 11 deletions
This file was deleted.

docs/ErrorResponseData.md

Lines changed: 0 additions & 12 deletions
This file was deleted.

docs/ObjectStoreItemApi.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -108,7 +108,7 @@ Name | Type | Description | Required | Notes
108108

109109
### Return type
110110

111-
[**std::path::PathBuf**](StdpathPathBuf.md)
111+
**String**
112112

113113
### Authorization
114114

@@ -148,11 +148,11 @@ Name | Type | Description | Required | Notes
148148
**append** | Option\<**bool**> | | |
149149
**prepend** | Option\<**bool**> | | |
150150
**background_fetch** | Option\<**bool**> | | |
151-
**body** | Option\<**std::path::PathBuf**> | | |
151+
**body** | Option\<**String**> | | |
152152

153153
### Return type
154154

155-
[**std::path::PathBuf**](StdpathPathBuf.md)
155+
**String**
156156

157157
### Authorization
158158

docs/RelationshipsForTlsCsr.md

Lines changed: 0 additions & 11 deletions
This file was deleted.

docs/TlsCsr.md

Lines changed: 0 additions & 11 deletions
This file was deleted.

docs/TlsCsrData.md

Lines changed: 0 additions & 13 deletions
This file was deleted.

docs/TlsCsrDataAttributes.md

Lines changed: 0 additions & 20 deletions
This file was deleted.

0 commit comments

Comments
 (0)