Skip to content

Commit

Permalink
chore: prepare 0.8.2 release
Browse files Browse the repository at this point in the history
  • Loading branch information
abonander committed Sep 3, 2024
1 parent 998344d commit c253e65
Show file tree
Hide file tree
Showing 3 changed files with 57 additions and 16 deletions.
41 changes: 41 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,42 @@ All notable changes to this project will be documented in this file.
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).

## 0.8.2 - 2024-09-02

10 pull requests were merged this release cycle.

This release addresses a few regressions that have occurred, and refines SQLx's MSRV policy (see [the FAQ](FAQ.md)).

### Added
* [[#3447]]: Clarify usage of Json/Jsonb in query macros [[@Lachstec]]

### Changed
* [[#3424]]: Remove deprecated feature-names from `Cargo.toml` files in examples [[@carschandler]]

### Fixed
* [[#3403]]: Fix (#3395) sqlx::test macro in 0.8 [[@joeydewaal]]
* [[#3411]]: fix: Use rfc3339 to decode date from text [[@pierre-wehbe]]
* [[#3453]]: fix(#3445): PgHasArrayType [[@joeydewaal]]
* Fixes `#[sqlx(no_pg_array)]` being forbidden on `#[derive(Type)]` structs.
* [[#3454]]: fix: non snake case warning [[@joeydewaal]]
* [[#3459]]: Pgsql cube type compile fail [[@kdesjard]]
* [[#3465]]: fix(postgres): max number of binds is 65535, not 32767 (regression) [[@abonander]]
* [[#3467]]: fix cancellation issues with `PgListener`, `PgStream::recv()` [[@abonander]]
* Fixes cryptic `unknown message: "\\0"` error
* [[#3474]]: Fix try_get example in README.md [[@luveti]]

[#3403]: https://github.com/launchbadge/sqlx/pull/3403
[#3411]: https://github.com/launchbadge/sqlx/pull/3411
[#3424]: https://github.com/launchbadge/sqlx/pull/3424
[#3447]: https://github.com/launchbadge/sqlx/pull/3447
[#3453]: https://github.com/launchbadge/sqlx/pull/3453
[#3454]: https://github.com/launchbadge/sqlx/pull/3454
[#3455]: https://github.com/launchbadge/sqlx/pull/3455
[#3459]: https://github.com/launchbadge/sqlx/pull/3459
[#3465]: https://github.com/launchbadge/sqlx/pull/3465
[#3467]: https://github.com/launchbadge/sqlx/pull/3467
[#3474]: https://github.com/launchbadge/sqlx/pull/3474

## 0.8.1 - 2024-08-23

16 pull requests were merged this release cycle.
Expand Down Expand Up @@ -2543,3 +2579,8 @@ Fix docs.rs build by enabling a runtime feature in the docs.rs metadata in `Carg
[@ods]: https://github.com/ods
[@soucosmo]: https://github.com/soucosmo
[@kolinfluence]: https://github.com/kolinfluence
[@joeydewaal]: https://github.com/joeydewaal
[@pierre-wehbe]: https://github.com/pierre-wehbe
[@carschandler]: https://github.com/carschandler
[@kdesjard]: https://github.com/kdesjard
[@luveti]: https://github.com/luveti
16 changes: 8 additions & 8 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

16 changes: 8 additions & 8 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ members = [
]

[workspace.package]
version = "0.8.1"
version = "0.8.2"
license = "MIT OR Apache-2.0"
edition = "2021"
repository = "https://github.com/launchbadge/sqlx"
Expand Down Expand Up @@ -120,17 +120,17 @@ regexp = ["sqlx-sqlite?/regexp"]

[workspace.dependencies]
# Core Crates
sqlx-core = { version = "=0.8.1", path = "sqlx-core" }
sqlx-macros-core = { version = "=0.8.1", path = "sqlx-macros-core" }
sqlx-macros = { version = "=0.8.1", path = "sqlx-macros" }
sqlx-core = { version = "=0.8.2", path = "sqlx-core" }
sqlx-macros-core = { version = "=0.8.2", path = "sqlx-macros-core" }
sqlx-macros = { version = "=0.8.2", path = "sqlx-macros" }

# Driver crates
sqlx-mysql = { version = "=0.8.1", path = "sqlx-mysql" }
sqlx-postgres = { version = "=0.8.1", path = "sqlx-postgres" }
sqlx-sqlite = { version = "=0.8.1", path = "sqlx-sqlite" }
sqlx-mysql = { version = "=0.8.2", path = "sqlx-mysql" }
sqlx-postgres = { version = "=0.8.2", path = "sqlx-postgres" }
sqlx-sqlite = { version = "=0.8.2", path = "sqlx-sqlite" }

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

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

0 comments on commit c253e65

Please sign in to comment.