Skip to content

Commit

Permalink
release: v0.1.0-preview.1 (#725)
Browse files Browse the repository at this point in the history
- Adds `CHANGELOG.md` entries for everything since `v0.1.0-preview.0`
- Bumps versions in `Cargo.toml` files (and licensing related bits in
  `cargo-deny.toml`)
  • Loading branch information
abernix authored Mar 23, 2022
1 parent 984937c commit eeaa16f
Show file tree
Hide file tree
Showing 9 changed files with 29 additions and 25 deletions.
24 changes: 14 additions & 10 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ All notable changes to Router will be documented in this file.

This project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).

<!-- # [x.x.x] (unreleased) - 2022-mm-dd
<!--# [x.x.x] (unreleased) - 2022-mm-dd
> Important: X breaking changes below, indicated by **❗ BREAKING ❗**
## ❗ BREAKING ❗
## 🚀 Features
Expand All @@ -14,17 +14,22 @@ This project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.htm
## Example section entry format
- **Headline** via [#PR_NUMBER](https://github.com/apollographql/router/pull/PR_NUMBER)
- **Headline** ([PR #PR_NUMBER](https://github.com/apollographql/router/pull/PR_NUMBER))
Description! And a link to a [reference](http://url)
-->

# [v0.1.0-preview.1] (unreleased) - 2022-mm-dd
<<<<<<< HEAD
# [v0.1.0-preview.1] - 2022-03-23

## 🎉 **The Apollo Router has graduated to its Preview phase!** 🎉
## ❗ BREAKING ❗
- **Telemetry attribute yaml ergonomics** ([PR #729](https://github.com/apollographql/router/pull/729))

Trace config yaml ergonomics has been improved. To add attributes to your trace information now use the following format:

- **Improvements to telemetry attribute YAML ergonomics** ([PR #729](https://github.com/apollographql/router/pull/729))

Trace config YAML ergonomics have been improved. To add additional attributes to your trace information, you can now use the following format:

```yaml
trace_config:
attributes:
Expand All @@ -45,16 +50,15 @@ This project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.htm
- true
- false
```
## 🚀 Features
## 🐛 Fixes
- **Log and error message formatting** ([PR #721](https://github.com/apollographql/router/pull/721))
Logs and error messages in Rust begin with lower case and do not have trailing punctuation. The codebase is now consistent with this scheme.
Logs and error messages now begin with lower case and do not have trailing punctuation, per Rust conventions.
- **OTLP default service.name and service.namespace** ([PR #722](https://github.com/apollographql/router/pull/722))
While the Jaeger yaml configuration would default to the "router" service.name and "apollo" service.namespace, it was not the case when using an OTLP configuration. This lead to UNKNOWN_SERVICE name in zipking traces, and hard to find Jaeger traces.
While the Jaeger YAML configuration would default to `router` for the `service.name` and to `apollo` for the `service.namespace`, it was not the case when using a configuration that utilized OTLP. This lead to an `UNKNOWN_SERVICE` name span in zipkin traces, and difficult to find Jaeger traces.

# [v0.1.0-preview.0] - 2022-03-22

Expand Down
12 changes: 6 additions & 6 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion apollo-router-benchmarks/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "apollo-router-benchmarks"
version = "0.1.0-preview.0"
version = "0.1.0-preview.1"
authors = ["Apollo Graph, Inc. <[email protected]>"]
edition = "2021"
license = "LicenseRef-ELv2"
Expand Down
2 changes: 1 addition & 1 deletion apollo-router-core/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "apollo-router-core"
version = "0.1.0-preview.0"
version = "0.1.0-preview.1"
authors = ["Apollo Graph, Inc. <[email protected]>"]
edition = "2021"
license-file = "./LICENSE"
Expand Down
2 changes: 1 addition & 1 deletion apollo-router/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "apollo-router"
version = "0.1.0-preview.0"
version = "0.1.0-preview.1"
authors = ["Apollo Graph, Inc. <[email protected]>"]
edition = "2021"
license-file = "./LICENSE"
Expand Down
2 changes: 1 addition & 1 deletion apollo-spaceport/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "apollo-spaceport"
version = "0.1.0-preview.0"
version = "0.1.0-preview.1"
authors = ["Apollo Graph, Inc. <[email protected]>"]
edition = "2021"
license-file = "./LICENSE"
Expand Down
6 changes: 3 additions & 3 deletions deny.toml
Original file line number Diff line number Diff line change
Expand Up @@ -64,13 +64,13 @@ license-files = [{ path = "LICENSE", hash = 0xbd0eed23 }]
[[licenses.clarify]]
name = "apollo-router"
expression = "LicenseRef-ELv2"
version = "0.1.0-preview.0"
version = "0.1.0-preview.1"
license-files = [{ path = "LICENSE", hash = 0xaceadac9 }]

[[licenses.clarify]]
name = "apollo-router-core"
expression = "LicenseRef-ELv2"
version = "0.1.0-preview.0"
version = "0.1.0-preview.1"
license-files = [{ path = "LICENSE", hash = 0xaceadac9 }]

[[licenses.clarify]]
Expand All @@ -81,7 +81,7 @@ license-files = [{ path = "router-bridge/LICENSE", hash = 0xaceadac9 }]
[[licenses.clarify]]
name = "apollo-spaceport"
expression = "LicenseRef-ELv2"
version = "0.1.0-preview.0"
version = "0.1.0-preview.1"
license-files = [{ path = "LICENSE", hash = 0xaceadac9 }]

[[licenses.clarify]]
Expand Down
2 changes: 1 addition & 1 deletion uplink/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "apollo-uplink"
version = "0.1.0"
version = "0.1.0-preview.1"
edition = "2021"
build = "build.rs"

Expand Down
2 changes: 1 addition & 1 deletion xtask/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "xtask"
version = "0.1.0-preview.0"
version = "0.1.0-preview.1"
authors = ["Apollo Graph, Inc. <[email protected]>"]
edition = "2021"
license = "LicenseRef-ELv2"
Expand Down

0 comments on commit eeaa16f

Please sign in to comment.