Skip to content

Commit

Permalink
bump for release (#99)
Browse files Browse the repository at this point in the history
  • Loading branch information
cpiemontese authored Sep 26, 2022
1 parent 2fa84f0 commit 59b1e5c
Show file tree
Hide file tree
Showing 3 changed files with 60 additions and 5 deletions.
3 changes: 3 additions & 0 deletions .versions.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
files:
- path: Cargo.toml
pattern: '^version = \"{version}\"'
60 changes: 56 additions & 4 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,11 @@ All notable changes to this project will be documented in this file.
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).

## [Next]
## [Unreleased]

---

## [0.14.0] - 2022-09-26

### Added

Expand All @@ -28,11 +32,15 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
- `(GraphQL)Multipart.into_form`: it is a private API that wasn't meant to be exported publicly
- `async` feature: it was enabled by default and disabling it caused compilation to break

---

## [0.13.1] - 2022-06-23

### Added

- New function `status_code` to get `StatusCode` from `Response`.
- New function `status_code` to get `StatusCode` from `Response`.

---

## [0.13.0]

Expand All @@ -41,6 +49,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
- removed `block_modes` deprecated dependency in favour of the new `cbc` dependency
- broaden the dependency on uuid to support 1.x versions

---

## [0.12.0]

### Removed
Expand All @@ -53,42 +63,58 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
- graphql multipart request as specified [here](https://github.com/jaydenseric/graphql-multipart-request-spec).
- examples for rest, graphql, graphql multipart and generic request with auth0 authentication.

---

## [0.11.0]

- opentelemetry updated to version 0.17. **Careful!!!** The opentelemetry version in your project should match the one in this library (*breaking change*)
- various dependency updates
- removed log dependency, use tracing everywhere

---

## [0.10.0]

- dashmap dependency updated (<https://github.com/primait/bridge.rs/pull/64>)

---

## [0.9.2]

- test fix

---

## [0.9.1]

- lint fix

---

## [0.9.0]

- Rust 1.56 & Edition 2021
- Update tracing-opentelemetry to 0.16
- Other deps updated
- Documentation now shows required features

---

## [0.8.0]

- added new function `with_auth0` in bridge builder. This enables jwt authentication to called endpoint.

---

## [0.7.3]

- deprecated the `new` and `with_user_agent` functions in favor of a builder
- opentelemetry updated to version 0.16. **Careful!!!** The opentelemetry version in your project should match the one in this library
- several dependencies updated
- docker file based on Rust 1.54

---

## [0.7.2]

### features
Expand All @@ -98,6 +124,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
- proper handling of graphql errors with a new `ParsedGraphqlResponse` type
- adds ability to specify a request timeout

---

## [0.7.1]

### breaking change
Expand All @@ -106,6 +134,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
- several dependencies updated
- docker file based on Rust 1.51

---

## [0.7.0]

### breaking change
Expand All @@ -117,37 +147,49 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

- tokio and tokio-test are now dev-dependencies

---

## [0.6.0]

### breaking change

- bump tokio to 1.0, which brings rustc minimum version to 1.45

---

## [0.5.1]

### features

- relaxed the uuid requirement

---

## [0.5.0]

### breaking change

- opentelemetry updated to version 0.11. **Careful!!!** The opentelemetry version in your project should match the one in this library
- tracing-opentelemetry updated to version 0.10. **Careful!!!** The tracing-opentelemetry version in your project should match the one in this library

---

## [0.4.1]

### features

- adds the ability to set user-agent header

---

## [0.4.0]

### breaking change

- opentelemetry updated to version 0.10.0. **Careful!!!** The opentelemetry version in your project should match the one in this library

---

## [0.3.0]

### features
Expand All @@ -158,30 +200,40 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

- removed the bridge.request api (deprecated) in favor of `Request::get` or `RestRequest::new` and `GraphQLRequest::new` functions.

---

## [0.2.4]

### bugfix

- fixes the test suite. No impact on the api.

---

## [0.2.3]

### bugfix

- double content-type header for graphql request

---

## [0.2.2]

### bugfix

- better handling of headers

---

## [0.2.1]

### features

- adds back the `with_query_pair` and `with_query_pairs` api

---

## [0.2.0]

### features
Expand All @@ -205,7 +257,8 @@ Request::rest(&bridge).send()

The old API is still available but deprecated. It will be removed soon.

[Next]: https://github.com/primait/bridge.rs/compare/0.13.1...HEAD
[Unreleased]: https://github.com/primait/bridge.rs/compare/0.14.0...HEAD
[0.14.0]: https://github.com/primait/bridge.rs/compare/0.13.1...0.14.0
[0.13.1]: https://github.com/primait/bridge.rs/compare/0.13.0...0.13.1
[0.13.0]: https://github.com/primait/bridge.rs/compare/0.12.0...0.13.0
[0.12.0]: https://github.com/primait/bridge.rs/compare/0.11.0...0.12.0
Expand All @@ -224,7 +277,6 @@ The old API is still available but deprecated. It will be removed soon.
[0.5.0]: https://github.com/primait/bridge.rs/compare/0.4.1...0.5.0
[0.4.1]: https://github.com/primait/bridge.rs/compare/0.4.0...0.4.1
[0.4.0]: https://github.com/primait/bridge.rs/compare/0.3.1...0.4.0
[0.3.1]: https://github.com/primait/bridge.rs/compare/0.3.0...0.3.1
[0.3.0]: https://github.com/primait/bridge.rs/compare/0.2.4...0.3.0
[0.2.4]: https://github.com/primait/bridge.rs/compare/0.2.3...0.2.4
[0.2.3]: https://github.com/primait/bridge.rs/compare/0.2.2...0.2.3
Expand Down
2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "prima_bridge"
version = "0.13.1"
version = "0.14.0"
authors = ["Matteo Giachino <matteog@gmail.com>"]
edition = "2021"
license = "MIT"
Expand Down

0 comments on commit 59b1e5c

Please sign in to comment.