Skip to content

Commit

Permalink
bump apollo-federation to 2.0.0-preview.1 (#594)
Browse files Browse the repository at this point in the history
  • Loading branch information
lennyburdette authored Nov 8, 2024
1 parent ef4c112 commit 6d822b3
Show file tree
Hide file tree
Showing 5 changed files with 19 additions and 14 deletions.
14 changes: 8 additions & 6 deletions Cargo.lock

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

3 changes: 2 additions & 1 deletion apollo-composition/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,9 +1,10 @@
# Changelog

## Unreleased
## 0.1.5

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

## 0.1.4

Expand Down
6 changes: 3 additions & 3 deletions apollo-composition/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "apollo-composition"
version = "0.1.4"
version = "0.1.5"
license = "Elastic-2.0"
edition = "2021"
authors = ["Apollo Developers <[email protected]>"]
Expand All @@ -10,6 +10,6 @@ repository = "https://github.com/apollographql/federation-rs/"

[dependencies]
apollo-compiler = "1.0.0-beta.24"
apollo-federation = "2.0.0-preview.0"
apollo-federation-types = { version = "0.14.0", path = "../apollo-federation-types" }
apollo-federation = "2.0.0-preview.1"
apollo-federation-types = { version = "0.15.0", path = "../apollo-federation-types" }
either = "1.12.0"
2 changes: 1 addition & 1 deletion apollo-federation-types/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

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

## 0.15.0 - Unreleased
## 0.15.0

### Breaking changes

Expand Down
8 changes: 5 additions & 3 deletions apollo-federation-types/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ license = "MIT"
name = "apollo-federation-types"
readme = "README.md"
repository = "https://github.com/apollographql/federation-rs/"
version = "0.14.1"
version = "0.15.0"

[features]
default = ["config", "build", "build_plugin"]
Expand All @@ -21,12 +21,14 @@ json_schema = ["schemars"]
[dependencies]
# config and build dependencies
serde = { version = "1", features = ["derive"] }
schemars = { version = "0.8.21", optional = true, features = ["url"]}
schemars = { version = "0.8.21", optional = true, features = ["url"] }

# config-only dependencies
log = { version = "0.4", optional = true }
semver = { version = "1", features = ["serde"] }
serde_with = { version = "3", default-features = false, features = ["macros"], optional = true }
serde_with = { version = "3", default-features = false, features = [
"macros",
], optional = true }
serde_yaml = { version = "0.8", optional = true }
thiserror = { version = "1", optional = true }
url = { version = "2", features = ["serde"], optional = true }
Expand Down

0 comments on commit 6d822b3

Please sign in to comment.