From e13b23c884ff6d0484e4c9f33fcfb48c2377395c Mon Sep 17 00:00:00 2001 From: ethan <67941833+ethandmd@users.noreply.github.com> Date: Fri, 4 Oct 2024 01:50:34 -0700 Subject: [PATCH] Update sqlx version to 0.8.2 (#2371) * Update sqlx version to 0.8.2 due to vulnerability disclosure. * sqlx 0.8.2 * CHANGELOG --------- Co-authored-by: Billy Chan --- CHANGELOG.md | 2 +- Cargo.toml | 2 +- sea-orm-cli/Cargo.toml | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 9bb03449..371c45c1 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -13,7 +13,7 @@ and this project adheres to [Semantic Versioning](http://semver.org/). ### Upgrades -* Upgrade `sqlx` to `0.8` https://github.com/SeaQL/sea-orm/pull/2305 +* Upgrade `sqlx` to `0.8.2` https://github.com/SeaQL/sea-orm/pull/2305, https://github.com/SeaQL/sea-orm/pull/2371 * Upgrade `bigdecimal` to `0.4` https://github.com/SeaQL/sea-orm/pull/2305 * 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 diff --git a/Cargo.toml b/Cargo.toml index aaf44e78..6c75d043 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -39,7 +39,7 @@ sea-query-binder = { version = "0.7.0-rc.1", default-features = false, optional strum = { version = "0.26", default-features = false } 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 } +sqlx = { version = "0.8.2", default-features = false, optional = true } uuid = { version = "1", default-features = false, optional = true } ouroboros = { version = "0.18", default-features = false } url = { version = "2.2", default-features = false } diff --git a/sea-orm-cli/Cargo.toml b/sea-orm-cli/Cargo.toml index f69e687e..acc31f9f 100644 --- a/sea-orm-cli/Cargo.toml +++ b/sea-orm-cli/Cargo.toml @@ -39,7 +39,7 @@ dotenvy = { version = "0.15", default-features = false, optional = true } async-std = { version = "1.9", default-features = false, features = ["attributes", "tokio1"], optional = true } sea-orm-codegen = { version = "=1.1.0-rc.1", path = "../sea-orm-codegen", default-features = false, optional = true } sea-schema = { version = "0.16.0-rc.1" } -sqlx = { version = "0.8", default-features = false, features = ["mysql", "postgres"], optional = true } +sqlx = { version = "0.8.2", default-features = false, features = ["mysql", "postgres"], optional = true } tracing-subscriber = { version = "0.3.17", default-features = false, features = ["env-filter", "fmt"] } tracing = { version = "0.1", default-features = false } url = { version = "2.2", default-features = false }