From 1df121657e72c9e5b3e43dce4ea4c689c0c7890d Mon Sep 17 00:00:00 2001 From: James Lucas Date: Mon, 9 Sep 2024 17:30:26 -0500 Subject: [PATCH 1/2] Update `ouroboros` 0.17.x has a dependency on `proc-macro-error`, which is unmaintained per https://rustsec.org/advisories/RUSTSEC-2024-0370 --- Cargo.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Cargo.toml b/Cargo.toml index a786cf9c6..aaf44e789 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -41,7 +41,7 @@ serde = { version = "1.0", default-features = false } serde_json = { version = "1.0", default-features = false, optional = true } sqlx = { version = "0.8", default-features = false, optional = true } uuid = { version = "1", default-features = false, optional = true } -ouroboros = { version = "0.17", default-features = false } +ouroboros = { version = "0.18", default-features = false } url = { version = "2.2", default-features = false } thiserror = { version = "1", default-features = false } From 34013254078071195693ee88ec6033a6ca6d1a91 Mon Sep 17 00:00:00 2001 From: Billy Chan Date: Fri, 4 Oct 2024 16:27:55 +0800 Subject: [PATCH 2/2] CHANGELOG --- CHANGELOG.md | 1 + 1 file changed, 1 insertion(+) diff --git a/CHANGELOG.md b/CHANGELOG.md index 1e13bb395..c88fca8f7 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -18,6 +18,7 @@ and this project adheres to [Semantic Versioning](http://semver.org/). * Upgrade `sea-query` to `0.32.0-rc` https://github.com/SeaQL/sea-orm/pull/2305 * Upgrade `sea-query-binder` to `0.7.0-rc` https://github.com/SeaQL/sea-orm/pull/2305 * Upgrade `sea-schema` to `0.16.0-rc` https://github.com/SeaQL/sea-orm/pull/2305 +* Upgrade `ouroboros` to `0.18` https://github.com/SeaQL/sea-orm/pull/2353 ## 1.0.1 - 2024-08-26