diff --git a/CHANGELOG.md b/CHANGELOG.md index 6514d13df..b7b9957d6 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 aaf44e789..6c75d043d 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 f69e687eb..acc31f9fd 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 }