Skip to content

Commit 2cd2369

Browse files
committed
chore: prepare 0.8.2 release
1 parent 4099ab3 commit 2cd2369

File tree

3 files changed

+56
-16
lines changed

3 files changed

+56
-16
lines changed

CHANGELOG.md

Lines changed: 40 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,41 @@ 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+
### Added
13+
* [[#3447]]: Clarify usage of Json/Jsonb in query macros [[@Lachstec]]
14+
15+
### Changed
16+
* [[#3424]]: Remove deprecated feature-names from `Cargo.toml` files in examples [[@carschandler]]
17+
18+
### Fixed
19+
* [[#3403]]: Fix (#3395) sqlx::test macro in 0.8 [[@joeydewaal]]
20+
* [[#3411]]: fix: Use rfc3339 to decode date from text [[@pierre-wehbe]]
21+
* [[#3453]]: fix(#3445): PgHasArrayType [[@joeydewaal]]
22+
* Fixes `#[sqlx(no_pg_array)]` being forbidden on `#[derive(Type)]` structs.
23+
* [[#3454]]: fix: non snake case warning [[@joeydewaal]]
24+
* [[#3459]]: Pgsql cube type compile fail [[@kdesjard]]
25+
* [[#3465]]: fix(postgres): max number of binds is 65535, not 32767 (regression) [[@abonander]]
26+
* [[#3467]]: fix cancellation issues with `PgListener`, `PgStream::recv()` [[@abonander]]
27+
* Fixes cryptic `unknown message: "\\0"` error
28+
* [[#3474]]: Fix try_get example in README.md [[@luveti]]
29+
30+
[#3403]: https://github.com/launchbadge/sqlx/pull/3403
31+
[#3411]: https://github.com/launchbadge/sqlx/pull/3411
32+
[#3424]: https://github.com/launchbadge/sqlx/pull/3424
33+
[#3447]: https://github.com/launchbadge/sqlx/pull/3447
34+
[#3453]: https://github.com/launchbadge/sqlx/pull/3453
35+
[#3454]: https://github.com/launchbadge/sqlx/pull/3454
36+
[#3455]: https://github.com/launchbadge/sqlx/pull/3455
37+
[#3459]: https://github.com/launchbadge/sqlx/pull/3459
38+
[#3465]: https://github.com/launchbadge/sqlx/pull/3465
39+
[#3467]: https://github.com/launchbadge/sqlx/pull/3467
40+
[#3474]: https://github.com/launchbadge/sqlx/pull/3474
41+
42+
843
## 0.8.1 - 2024-08-23
944

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

Cargo.lock

Lines changed: 8 additions & 8 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Cargo.toml

Lines changed: 8 additions & 8 deletions
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"
@@ -118,17 +118,17 @@ regexp = ["sqlx-sqlite?/regexp"]
118118

119119
[workspace.dependencies]
120120
# Core Crates
121-
sqlx-core = { version = "=0.8.1", path = "sqlx-core" }
122-
sqlx-macros-core = { version = "=0.8.1", path = "sqlx-macros-core" }
123-
sqlx-macros = { version = "=0.8.1", path = "sqlx-macros" }
121+
sqlx-core = { version = "=0.8.2", path = "sqlx-core" }
122+
sqlx-macros-core = { version = "=0.8.2", path = "sqlx-macros-core" }
123+
sqlx-macros = { version = "=0.8.2", path = "sqlx-macros" }
124124

125125
# Driver crates
126-
sqlx-mysql = { version = "=0.8.1", path = "sqlx-mysql" }
127-
sqlx-postgres = { version = "=0.8.1", path = "sqlx-postgres" }
128-
sqlx-sqlite = { version = "=0.8.1", path = "sqlx-sqlite" }
126+
sqlx-mysql = { version = "=0.8.2", path = "sqlx-mysql" }
127+
sqlx-postgres = { version = "=0.8.2", path = "sqlx-postgres" }
128+
sqlx-sqlite = { version = "=0.8.2", path = "sqlx-sqlite" }
129129

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

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

0 commit comments

Comments
 (0)