From 6d822b36b353081d2f92bd79d03bd71b6de27d72 Mon Sep 17 00:00:00 2001 From: Lenny Burdette Date: Thu, 7 Nov 2024 21:21:52 -0500 Subject: [PATCH] bump apollo-federation to 2.0.0-preview.1 (#594) --- Cargo.lock | 14 ++++++++------ apollo-composition/CHANGELOG.md | 3 ++- apollo-composition/Cargo.toml | 6 +++--- apollo-federation-types/CHANGELOG.md | 2 +- apollo-federation-types/Cargo.toml | 8 +++++--- 5 files changed, 19 insertions(+), 14 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index 228777b7d..4b6ee3cff 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -78,7 +78,7 @@ dependencies = [ [[package]] name = "apollo-composition" -version = "0.1.4" +version = "0.1.5" dependencies = [ "apollo-compiler", "apollo-federation", @@ -88,9 +88,9 @@ dependencies = [ [[package]] name = "apollo-federation" -version = "2.0.0-preview.0" +version = "2.0.0-preview.1" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "c0ccdc9d85cca3262734847cf00b1fc6817f4cca013ca56ab4ecc8dc22585d0c" +checksum = "3c87a5a622646520e2e7df15ed33de1558e9d6eaaa7834eeafd02a8378cd73d2" dependencies = [ "apollo-compiler", "derive_more", @@ -103,7 +103,9 @@ dependencies = [ "multimap", "nom", "nom_locate", + "once_cell", "petgraph", + "regex", "serde", "serde_json", "serde_json_bytes", @@ -117,7 +119,7 @@ dependencies = [ [[package]] name = "apollo-federation-types" -version = "0.14.1" +version = "0.15.0" dependencies = [ "assert_fs", "log", @@ -750,9 +752,9 @@ checksum = "0d6ef0072f8a535281e4876be788938b528e9a1d43900b82c2569af7da799125" [[package]] name = "either" -version = "1.12.0" +version = "1.13.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "3dca9240753cf90908d7e4aac30f630662b02aebaa1b58a3cadabdb23385b58b" +checksum = "60b1af1c220855b6ceac025d3f6ecdd2b7c4894bfe9cd9bda4fbb4bc7c0d4cf0" [[package]] name = "encode_unicode" diff --git a/apollo-composition/CHANGELOG.md b/apollo-composition/CHANGELOG.md index 227e44884..fdd4247e3 100644 --- a/apollo-composition/CHANGELOG.md +++ b/apollo-composition/CHANGELOG.md @@ -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 diff --git a/apollo-composition/Cargo.toml b/apollo-composition/Cargo.toml index 61f9d5aa7..2caab8e1a 100644 --- a/apollo-composition/Cargo.toml +++ b/apollo-composition/Cargo.toml @@ -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 "] @@ -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" diff --git a/apollo-federation-types/CHANGELOG.md b/apollo-federation-types/CHANGELOG.md index caab3d65a..cd2270907 100644 --- a/apollo-federation-types/CHANGELOG.md +++ b/apollo-federation-types/CHANGELOG.md @@ -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 diff --git a/apollo-federation-types/Cargo.toml b/apollo-federation-types/Cargo.toml index 22e0179cb..7d616df46 100644 --- a/apollo-federation-types/Cargo.toml +++ b/apollo-federation-types/Cargo.toml @@ -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"] @@ -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 }