Skip to content

Commit 6d822b3

Browse files
bump apollo-federation to 2.0.0-preview.1 (#594)
1 parent ef4c112 commit 6d822b3

File tree

5 files changed

+19
-14
lines changed

5 files changed

+19
-14
lines changed

Cargo.lock

+8-6
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

apollo-composition/CHANGELOG.md

+2-1
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,10 @@
11
# Changelog
22

3-
## Unreleased
3+
## 0.1.5
44

55
- [#590](https://github.com/apollographql/federation-rs/pull/590) Fix
66
deserialization of `GraphQLError` nodes.
7+
- Update to `apollo-federation` 2.0.0-preview.1
78

89
## 0.1.4
910

apollo-composition/Cargo.toml

+3-3
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "apollo-composition"
3-
version = "0.1.4"
3+
version = "0.1.5"
44
license = "Elastic-2.0"
55
edition = "2021"
66
authors = ["Apollo Developers <[email protected]>"]
@@ -10,6 +10,6 @@ repository = "https://github.com/apollographql/federation-rs/"
1010

1111
[dependencies]
1212
apollo-compiler = "1.0.0-beta.24"
13-
apollo-federation = "2.0.0-preview.0"
14-
apollo-federation-types = { version = "0.14.0", path = "../apollo-federation-types" }
13+
apollo-federation = "2.0.0-preview.1"
14+
apollo-federation-types = { version = "0.15.0", path = "../apollo-federation-types" }
1515
either = "1.12.0"

apollo-federation-types/CHANGELOG.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
Not every version is listed here because versions before 0.14.0 did not have a changelog.
44

5-
## 0.15.0 - Unreleased
5+
## 0.15.0
66

77
### Breaking changes
88

apollo-federation-types/Cargo.toml

+5-3
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ license = "MIT"
88
name = "apollo-federation-types"
99
readme = "README.md"
1010
repository = "https://github.com/apollographql/federation-rs/"
11-
version = "0.14.1"
11+
version = "0.15.0"
1212

1313
[features]
1414
default = ["config", "build", "build_plugin"]
@@ -21,12 +21,14 @@ json_schema = ["schemars"]
2121
[dependencies]
2222
# config and build dependencies
2323
serde = { version = "1", features = ["derive"] }
24-
schemars = { version = "0.8.21", optional = true, features = ["url"]}
24+
schemars = { version = "0.8.21", optional = true, features = ["url"] }
2525

2626
# config-only dependencies
2727
log = { version = "0.4", optional = true }
2828
semver = { version = "1", features = ["serde"] }
29-
serde_with = { version = "3", default-features = false, features = ["macros"], optional = true }
29+
serde_with = { version = "3", default-features = false, features = [
30+
"macros",
31+
], optional = true }
3032
serde_yaml = { version = "0.8", optional = true }
3133
thiserror = { version = "1", optional = true }
3234
url = { version = "2", features = ["serde"], optional = true }

0 commit comments

Comments
 (0)