Skip to content

Commit

Permalink
Merge pull request #1521 from rusoto/release-0.41.0
Browse files Browse the repository at this point in the history
Release 0.41.0
  • Loading branch information
matthewkmayer committed Oct 8, 2019
2 parents 7d7f1e4 + 81b501c commit 4fa0fc8
Show file tree
Hide file tree
Showing 316 changed files with 950 additions and 941 deletions.
15 changes: 12 additions & 3 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,19 +2,28 @@

## [Unreleased]

- Add `HttpClient::from_builder`

(Please put changes here)

## [0.41.0] - 2019-10-07

- Add `HttpClient::from_builder`
- Upgrade to botocore from `1.12.163` to `1.12.230`
- The types `rusoto_events::{CloudWatchEvents,CloudWatchEventsClient}` were renamed to `rusoto_events::{EventBridge,EventBridgeClient}`
- Deserialize PostTextResponse correctly by allowing null values in the slots field
- Fix Profile Config Loading should ignore comments with '=' chars
- Fix Profile Config Loading: should ignore comments with '=' chars
- Add App Mesh service
- Fix service_crategen to parse operations with multiple static params
- Refactor S3 integration tests - about a `#[test]` per behavior
- Add support for non signing clients
- Add EC2 Instance Connect service
- Allow deserialization of regions without an endpoint specified
- Add ApNortheast3 region
- Add MeSouth1 region
- Add x-amz-content-sha256 header to signed and canonical headers
- Added `Eq` and `Hash` implementations on `Region`
- Fixed parsing of Athena error messages
- Fix credential_process behavior when using the non-default profile
- Correctly read session tokens from credential_process

## [0.40.0] - 2019-06-28

Expand Down
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -43,9 +43,9 @@ For example, to include only S3 and SQS:

```toml
[dependencies]
rusoto_core = "0.40.0"
rusoto_sqs = "0.40.0"
rusoto_s3 = "0.40.0"
rusoto_core = "0.41.0"
rusoto_sqs = "0.41.0"
rusoto_s3 = "0.41.0"
```

## Migration notes
Expand Down
2 changes: 1 addition & 1 deletion mock/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ keywords = ["AWS", "Amazon", "mock", "testing"]
license = "MIT"
name = "rusoto_mock"
repository = "https://github.com/rusoto/rusoto"
version = "0.40.0"
version = "0.41.0"
homepage = "https://www.rusoto.org/"
categories = [
"development-tools::testing"
Expand Down
4 changes: 2 additions & 2 deletions rusoto/core/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ license = "MIT"
name = "rusoto_core"
readme = "README.md"
repository = "https://github.com/rusoto/rusoto"
version = "0.40.0"
version = "0.41.0"
homepage = "https://www.rusoto.org/"
exclude = ["test_resources/*"]
edition = "2018"
Expand Down Expand Up @@ -50,7 +50,7 @@ xml-rs = "0.8"

[dependencies.rusoto_credential]
path = "../credential"
version = "0.40"
version = "0.41"

[dependencies.clippy]
optional = true
Expand Down
12 changes: 6 additions & 6 deletions rusoto/core/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -38,9 +38,9 @@ For example, to include only S3 and SQS:

``` toml
[dependencies]
rusoto_core = "0.40.0"
rusoto_sqs = "0.40.0"
rusoto_s3 = "0.40.0"
rusoto_core = "0.41.0"
rusoto_sqs = "0.41.0"
rusoto_s3 = "0.41.0"
```

## Migration notes
Expand Down Expand Up @@ -93,9 +93,9 @@ If you do not want to use OpenSSL, you can replace it with rustls by editing you

``` toml
[dependencies]
rusoto_core = { version="0.40.0", default_features=false, features=["rustls"] }
rusoto_sqs = { version="0.40.0", default_features=false, features=["rustls"] }
rusoto_s3 = { version="0.40.0", default_features=false, features=["rustls"] }
rusoto_core = { version="0.41.0", default_features=false, features=["rustls"] }
rusoto_sqs = { version="0.41.0", default_features=false, features=["rustls"] }
rusoto_s3 = { version="0.41.0", default_features=false, features=["rustls"] }
```

### Credentials
Expand Down
2 changes: 1 addition & 1 deletion rusoto/credential/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ documentation = "https://docs.rs/rusoto_credential"
name = "rusoto_credential"
readme = "README.md"
repository = "https://github.com/rusoto/rusoto"
version = "0.40.0"
version = "0.41.0"
exclude = ["tests/sample-data/*"]
edition = "2018"

Expand Down
6 changes: 3 additions & 3 deletions rusoto/services/acm-pca/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ license = "MIT"
name = "rusoto_acm_pca"
readme = "README.md"
repository = "https://github.com/rusoto/rusoto"
version = "0.40.0"
version = "0.41.0"
homepage = "https://www.rusoto.org/"
edition = "2018"
exclude = ["test_resources/*"]
Expand All @@ -22,11 +22,11 @@ serde_derive = "1.0.2"
serde_json = "1.0.1"

[dependencies.rusoto_core]
version = "0.40.0"
version = "0.41.0"
path = "../../core"
default-features = false
[dev-dependencies.rusoto_mock]
version = "0.40.0"
version = "0.41.0"
path = "../../../mock"

[features]
Expand Down
2 changes: 1 addition & 1 deletion rusoto/services/acm-pca/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ To use `rusoto_acm_pca` in your application, add it as a dependency in your `Car

```toml
[dependencies]
rusoto_acm_pca = "0.40.0"
rusoto_acm_pca = "0.41.0"
```

## Contributing
Expand Down
6 changes: 3 additions & 3 deletions rusoto/services/acm/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ license = "MIT"
name = "rusoto_acm"
readme = "README.md"
repository = "https://github.com/rusoto/rusoto"
version = "0.40.0"
version = "0.41.0"
homepage = "https://www.rusoto.org/"
edition = "2018"
exclude = ["test_resources/*"]
Expand All @@ -22,11 +22,11 @@ serde_derive = "1.0.2"
serde_json = "1.0.1"

[dependencies.rusoto_core]
version = "0.40.0"
version = "0.41.0"
path = "../../core"
default-features = false
[dev-dependencies.rusoto_mock]
version = "0.40.0"
version = "0.41.0"
path = "../../../mock"

[features]
Expand Down
2 changes: 1 addition & 1 deletion rusoto/services/acm/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ To use `rusoto_acm` in your application, add it as a dependency in your `Cargo.t

```toml
[dependencies]
rusoto_acm = "0.40.0"
rusoto_acm = "0.41.0"
```

## Contributing
Expand Down
6 changes: 3 additions & 3 deletions rusoto/services/alexaforbusiness/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ license = "MIT"
name = "rusoto_alexaforbusiness"
readme = "README.md"
repository = "https://github.com/rusoto/rusoto"
version = "0.40.0"
version = "0.41.0"
homepage = "https://www.rusoto.org/"
edition = "2018"
exclude = ["test_resources/*"]
Expand All @@ -22,11 +22,11 @@ serde_derive = "1.0.2"
serde_json = "1.0.1"

[dependencies.rusoto_core]
version = "0.40.0"
version = "0.41.0"
path = "../../core"
default-features = false
[dev-dependencies.rusoto_mock]
version = "0.40.0"
version = "0.41.0"
path = "../../../mock"

[features]
Expand Down
2 changes: 1 addition & 1 deletion rusoto/services/alexaforbusiness/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ To use `rusoto_alexaforbusiness` in your application, add it as a dependency in

```toml
[dependencies]
rusoto_alexaforbusiness = "0.40.0"
rusoto_alexaforbusiness = "0.41.0"
```

## Contributing
Expand Down
6 changes: 3 additions & 3 deletions rusoto/services/amplify/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ license = "MIT"
name = "rusoto_amplify"
readme = "README.md"
repository = "https://github.com/rusoto/rusoto"
version = "0.40.0"
version = "0.41.0"
homepage = "https://www.rusoto.org/"
edition = "2018"
exclude = ["test_resources/*"]
Expand All @@ -22,11 +22,11 @@ serde_derive = "1.0.2"
serde_json = "1.0.1"

[dependencies.rusoto_core]
version = "0.40.0"
version = "0.41.0"
path = "../../core"
default-features = false
[dev-dependencies.rusoto_mock]
version = "0.40.0"
version = "0.41.0"
path = "../../../mock"

[features]
Expand Down
2 changes: 1 addition & 1 deletion rusoto/services/amplify/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ To use `rusoto_amplify` in your application, add it as a dependency in your `Car

```toml
[dependencies]
rusoto_amplify = "0.40.0"
rusoto_amplify = "0.41.0"
```

## Contributing
Expand Down
6 changes: 3 additions & 3 deletions rusoto/services/apigateway/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ license = "MIT"
name = "rusoto_apigateway"
readme = "README.md"
repository = "https://github.com/rusoto/rusoto"
version = "0.40.0"
version = "0.41.0"
homepage = "https://www.rusoto.org/"
edition = "2018"
exclude = ["test_resources/*"]
Expand All @@ -22,11 +22,11 @@ serde_derive = "1.0.2"
serde_json = "1.0.1"

[dependencies.rusoto_core]
version = "0.40.0"
version = "0.41.0"
path = "../../core"
default-features = false
[dev-dependencies.rusoto_mock]
version = "0.40.0"
version = "0.41.0"
path = "../../../mock"

[features]
Expand Down
2 changes: 1 addition & 1 deletion rusoto/services/apigateway/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ To use `rusoto_apigateway` in your application, add it as a dependency in your `

```toml
[dependencies]
rusoto_apigateway = "0.40.0"
rusoto_apigateway = "0.41.0"
```

## Contributing
Expand Down
6 changes: 3 additions & 3 deletions rusoto/services/apigatewaymanagementapi/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ license = "MIT"
name = "rusoto_apigatewaymanagementapi"
readme = "README.md"
repository = "https://github.com/rusoto/rusoto"
version = "0.40.0"
version = "0.41.0"
homepage = "https://www.rusoto.org/"
edition = "2018"
exclude = ["test_resources/*"]
Expand All @@ -21,11 +21,11 @@ serde = "1.0.2"
serde_derive = "1.0.2"

[dependencies.rusoto_core]
version = "0.40.0"
version = "0.41.0"
path = "../../core"
default-features = false
[dev-dependencies.rusoto_mock]
version = "0.40.0"
version = "0.41.0"
path = "../../../mock"

[features]
Expand Down
2 changes: 1 addition & 1 deletion rusoto/services/apigatewaymanagementapi/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ To use `rusoto_apigatewaymanagementapi` in your application, add it as a depende

```toml
[dependencies]
rusoto_apigatewaymanagementapi = "0.40.0"
rusoto_apigatewaymanagementapi = "0.41.0"
```

## Contributing
Expand Down
6 changes: 3 additions & 3 deletions rusoto/services/apigatewayv2/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ license = "MIT"
name = "rusoto_apigatewayv2"
readme = "README.md"
repository = "https://github.com/rusoto/rusoto"
version = "0.40.0"
version = "0.41.0"
homepage = "https://www.rusoto.org/"
edition = "2018"
exclude = ["test_resources/*"]
Expand All @@ -22,11 +22,11 @@ serde_derive = "1.0.2"
serde_json = "1.0.1"

[dependencies.rusoto_core]
version = "0.40.0"
version = "0.41.0"
path = "../../core"
default-features = false
[dev-dependencies.rusoto_mock]
version = "0.40.0"
version = "0.41.0"
path = "../../../mock"

[features]
Expand Down
2 changes: 1 addition & 1 deletion rusoto/services/apigatewayv2/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ To use `rusoto_apigatewayv2` in your application, add it as a dependency in your

```toml
[dependencies]
rusoto_apigatewayv2 = "0.40.0"
rusoto_apigatewayv2 = "0.41.0"
```

## Contributing
Expand Down
6 changes: 3 additions & 3 deletions rusoto/services/application-autoscaling/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ license = "MIT"
name = "rusoto_application_autoscaling"
readme = "README.md"
repository = "https://github.com/rusoto/rusoto"
version = "0.40.0"
version = "0.41.0"
homepage = "https://www.rusoto.org/"
edition = "2018"
exclude = ["test_resources/*"]
Expand All @@ -22,11 +22,11 @@ serde_derive = "1.0.2"
serde_json = "1.0.1"

[dependencies.rusoto_core]
version = "0.40.0"
version = "0.41.0"
path = "../../core"
default-features = false
[dev-dependencies.rusoto_mock]
version = "0.40.0"
version = "0.41.0"
path = "../../../mock"

[features]
Expand Down
2 changes: 1 addition & 1 deletion rusoto/services/application-autoscaling/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ To use `rusoto_application_autoscaling` in your application, add it as a depende

```toml
[dependencies]
rusoto_application_autoscaling = "0.40.0"
rusoto_application_autoscaling = "0.41.0"
```

## Contributing
Expand Down
6 changes: 3 additions & 3 deletions rusoto/services/appmesh/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ license = "MIT"
name = "rusoto_appmesh"
readme = "README.md"
repository = "https://github.com/rusoto/rusoto"
version = "0.40.0"
version = "0.41.0"
homepage = "https://www.rusoto.org/"
edition = "2018"
exclude = ["test_resources/*"]
Expand All @@ -22,11 +22,11 @@ serde_derive = "1.0.2"
serde_json = "1.0.1"

[dependencies.rusoto_core]
version = "0.40.0"
version = "0.41.0"
path = "../../core"
default-features = false
[dev-dependencies.rusoto_mock]
version = "0.40.0"
version = "0.41.0"
path = "../../../mock"

[features]
Expand Down
2 changes: 1 addition & 1 deletion rusoto/services/appmesh/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ To use `rusoto_appmesh` in your application, add it as a dependency in your `Car

```toml
[dependencies]
rusoto_appmesh = "0.40.0"
rusoto_appmesh = "0.41.0"
```

## Contributing
Expand Down

0 comments on commit 4fa0fc8

Please sign in to comment.