From 5cb947ccd557e69d963858f3f2f35c2520be0bc4 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 20 Nov 2023 14:44:29 +0000 Subject: [PATCH 1/3] Update rocket requirement from =0.5.0-rc.4 to =0.5.0 Updates the requirements on [rocket](https://github.com/SergioBenitez/Rocket) to permit the latest version. - [Release notes](https://github.com/SergioBenitez/Rocket/releases) - [Changelog](https://github.com/SergioBenitez/Rocket/blob/master/CHANGELOG.md) - [Commits](https://github.com/SergioBenitez/Rocket/compare/v0.5.0-rc.4...v0.5.0) --- updated-dependencies: - dependency-name: rocket dependency-type: direct:production ... Signed-off-by: dependabot[bot] --- juniper_rocket/Cargo.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/juniper_rocket/Cargo.toml b/juniper_rocket/Cargo.toml index 9be116051..8af7a86a9 100644 --- a/juniper_rocket/Cargo.toml +++ b/juniper_rocket/Cargo.toml @@ -20,7 +20,7 @@ exclude = ["/examples/", "/tests/", "/release.toml"] [dependencies] futures = "0.3.22" juniper = { version = "0.16.0-dev", path = "../juniper", default-features = false } -rocket = { version = "=0.5.0-rc.4", default-features = false } +rocket = { version = "=0.5.0", default-features = false } serde_json = "1.0.18" # Fixes for `minimal-versions` check. From 8b39c2c72eb057c4af9bd70b32c971f15e1ac5ac Mon Sep 17 00:00:00 2001 From: tyranron Date: Mon, 20 Nov 2023 18:07:04 +0100 Subject: [PATCH 2/3] Fix version --- juniper_rocket/Cargo.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/juniper_rocket/Cargo.toml b/juniper_rocket/Cargo.toml index 8af7a86a9..79169f74c 100644 --- a/juniper_rocket/Cargo.toml +++ b/juniper_rocket/Cargo.toml @@ -20,7 +20,7 @@ exclude = ["/examples/", "/tests/", "/release.toml"] [dependencies] futures = "0.3.22" juniper = { version = "0.16.0-dev", path = "../juniper", default-features = false } -rocket = { version = "=0.5.0", default-features = false } +rocket = { version = "0.5", default-features = false } serde_json = "1.0.18" # Fixes for `minimal-versions` check. From ceeca1be38e9ad57ab964c59f239059ad04aed25 Mon Sep 17 00:00:00 2001 From: tyranron Date: Mon, 20 Nov 2023 18:08:44 +0100 Subject: [PATCH 3/3] Mention in CHANGELOG --- juniper_rocket/CHANGELOG.md | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/juniper_rocket/CHANGELOG.md b/juniper_rocket/CHANGELOG.md index ba9539f36..3f273a456 100644 --- a/juniper_rocket/CHANGELOG.md +++ b/juniper_rocket/CHANGELOG.md @@ -11,7 +11,7 @@ All user visible changes to `juniper_rocket` crate will be documented in this fi ### BC Breaks - Switched to 0.16 version of [`juniper` crate]. -- Switched to 0.5.0-rc.4 version of [`rocket` crate]. ([#1205]) +- Switched to 0.5 version of [`rocket` crate]. ([#1205], [#1220]) ### Added @@ -20,6 +20,7 @@ All user visible changes to `juniper_rocket` crate will be documented in this fi [#930]: /../../issues/930 [#968]: /../../pull/968 [#1205]: /../../pull/1205 +[#1220]: /../../pull/1220