Skip to content

Commit c253e65

Browse files
committed
chore: prepare 0.8.2 release
1 parent 998344d commit c253e65

File tree

3 files changed

+57
-16
lines changed

3 files changed

+57
-16
lines changed

CHANGELOG.md

+41
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,42 @@ All notable changes to this project will be documented in this file.
55
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
66
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
77

8+
## 0.8.2 - 2024-09-02
9+
10+
10 pull requests were merged this release cycle.
11+
12+
This release addresses a few regressions that have occurred, and refines SQLx's MSRV policy (see [the FAQ](FAQ.md)).
13+
14+
### Added
15+
* [[#3447]]: Clarify usage of Json/Jsonb in query macros [[@Lachstec]]
16+
17+
### Changed
18+
* [[#3424]]: Remove deprecated feature-names from `Cargo.toml` files in examples [[@carschandler]]
19+
20+
### Fixed
21+
* [[#3403]]: Fix (#3395) sqlx::test macro in 0.8 [[@joeydewaal]]
22+
* [[#3411]]: fix: Use rfc3339 to decode date from text [[@pierre-wehbe]]
23+
* [[#3453]]: fix(#3445): PgHasArrayType [[@joeydewaal]]
24+
* Fixes `#[sqlx(no_pg_array)]` being forbidden on `#[derive(Type)]` structs.
25+
* [[#3454]]: fix: non snake case warning [[@joeydewaal]]
26+
* [[#3459]]: Pgsql cube type compile fail [[@kdesjard]]
27+
* [[#3465]]: fix(postgres): max number of binds is 65535, not 32767 (regression) [[@abonander]]
28+
* [[#3467]]: fix cancellation issues with `PgListener`, `PgStream::recv()` [[@abonander]]
29+
* Fixes cryptic `unknown message: "\\0"` error
30+
* [[#3474]]: Fix try_get example in README.md [[@luveti]]
31+
32+
[#3403]: https://github.com/launchbadge/sqlx/pull/3403
33+
[#3411]: https://github.com/launchbadge/sqlx/pull/3411
34+
[#3424]: https://github.com/launchbadge/sqlx/pull/3424
35+
[#3447]: https://github.com/launchbadge/sqlx/pull/3447
36+
[#3453]: https://github.com/launchbadge/sqlx/pull/3453
37+
[#3454]: https://github.com/launchbadge/sqlx/pull/3454
38+
[#3455]: https://github.com/launchbadge/sqlx/pull/3455
39+
[#3459]: https://github.com/launchbadge/sqlx/pull/3459
40+
[#3465]: https://github.com/launchbadge/sqlx/pull/3465
41+
[#3467]: https://github.com/launchbadge/sqlx/pull/3467
42+
[#3474]: https://github.com/launchbadge/sqlx/pull/3474
43+
844
## 0.8.1 - 2024-08-23
945

1046
16 pull requests were merged this release cycle.
@@ -2543,3 +2579,8 @@ Fix docs.rs build by enabling a runtime feature in the docs.rs metadata in `Carg
25432579
[@ods]: https://github.com/ods
25442580
[@soucosmo]: https://github.com/soucosmo
25452581
[@kolinfluence]: https://github.com/kolinfluence
2582+
[@joeydewaal]: https://github.com/joeydewaal
2583+
[@pierre-wehbe]: https://github.com/pierre-wehbe
2584+
[@carschandler]: https://github.com/carschandler
2585+
[@kdesjard]: https://github.com/kdesjard
2586+
[@luveti]: https://github.com/luveti

Cargo.lock

+8-8
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Cargo.toml

+8-8
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ members = [
2323
]
2424

2525
[workspace.package]
26-
version = "0.8.1"
26+
version = "0.8.2"
2727
license = "MIT OR Apache-2.0"
2828
edition = "2021"
2929
repository = "https://github.com/launchbadge/sqlx"
@@ -120,17 +120,17 @@ regexp = ["sqlx-sqlite?/regexp"]
120120

121121
[workspace.dependencies]
122122
# Core Crates
123-
sqlx-core = { version = "=0.8.1", path = "sqlx-core" }
124-
sqlx-macros-core = { version = "=0.8.1", path = "sqlx-macros-core" }
125-
sqlx-macros = { version = "=0.8.1", path = "sqlx-macros" }
123+
sqlx-core = { version = "=0.8.2", path = "sqlx-core" }
124+
sqlx-macros-core = { version = "=0.8.2", path = "sqlx-macros-core" }
125+
sqlx-macros = { version = "=0.8.2", path = "sqlx-macros" }
126126

127127
# Driver crates
128-
sqlx-mysql = { version = "=0.8.1", path = "sqlx-mysql" }
129-
sqlx-postgres = { version = "=0.8.1", path = "sqlx-postgres" }
130-
sqlx-sqlite = { version = "=0.8.1", path = "sqlx-sqlite" }
128+
sqlx-mysql = { version = "=0.8.2", path = "sqlx-mysql" }
129+
sqlx-postgres = { version = "=0.8.2", path = "sqlx-postgres" }
130+
sqlx-sqlite = { version = "=0.8.2", path = "sqlx-sqlite" }
131131

132132
# Facade crate (for reference from sqlx-cli)
133-
sqlx = { version = "=0.8.1", path = ".", default-features = false }
133+
sqlx = { version = "=0.8.2", path = ".", default-features = false }
134134

135135
# Common type integrations shared by multiple driver crates.
136136
# These are optional unless enabled in a workspace crate.

0 commit comments

Comments
 (0)