Skip to content

Commit e80291b

Browse files
authored
chore: prepare 0.7.2 release (#2782)
1 parent 3b9a274 commit e80291b

File tree

2 files changed

+87
-8
lines changed

2 files changed

+87
-8
lines changed

CHANGELOG.md

+79
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,68 @@ 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.7.2 - 2023-09-25
9+
10+
23 pull requests were merged this release cycle.
11+
12+
### Added
13+
14+
* [[#2121]]: Add JSON support to `FromRow` derive [[@95ulisse]]
15+
* [[#2533]]: Implement mysql_clear_password [[@ldanilek]]
16+
* [[#2538]]: cli: add --target-version CLI flags for migrate run/revert [[@inahga]]
17+
* [[#2577]]: supplement Postgres listen example with a small chat example [[@JockeM]]
18+
* [[#2602]]: Support naming migrations sequentially [[@vmax]]
19+
* [[#2634]]: Adding PgHasArrayType for &[u8;N] [[@snf]]
20+
* [[#2646]]: Support for setting client certificate and key from bytes [[@wyhaya]]
21+
* [[#2664]]: Automatically infer migration type [[@vmax]]
22+
* [[#2712]]: Add impl for `Type`, `Decode`, and `Encode` for `Box<str>` and `Box<[u8]>` [[@grant0417]]
23+
24+
### Changed
25+
* [[#2650]]: Cleanup format arguments [[@nyurik]]
26+
* [[#2695]]: remove &mut PoolConnection from Executor docs [[@olback]]
27+
* This impl was removed in 0.7.0 because of coherence issues.
28+
* [[#2706]]: Clarify where optional features should be enabled [[@kryptan]]
29+
* [[#2717]]: Update README.md [[@fermanjj]]
30+
* [[#2739]]: Bump mariadb CI images + mysql unpin [[@grooverdan]]
31+
* [[#2742]]: Implemented poll_flush for Box<S:Socket> [[@bobozaur]]
32+
* [[#2740]]: Remove sealed trait comments from documentation [[@bobozaur]]
33+
* [[#2750]]: Fix #2384, bump flume to v0.11.0 [[@madadam]]
34+
* [[#2757]]: Remove unused `remove_dir_all` crate from `sqlx-cli`, fixes RUSTSEC-2023-0018 [[@aldur]]
35+
36+
### Fixed
37+
38+
* [[#2624]]: Documentation typo: BYTE -> BINARY [[@sebastianv89]]
39+
* [[#2628]]: docs: 0.7 is stable in the entire README [[@marcusirgens]]
40+
* [[#2630]]: fix(postgres): fix buffer management in PgCopyIn::read_from [[@tsing]]
41+
* [[#2651]]: Chore: Fix few build warnings, and make CI fail on warn [[@nyurik]]
42+
* [[#2670]]: fix: ignore extra fields in Postgres describe parsing [[@abonander]]
43+
* [[#2687]]: docs: Fix description of `min_connections` [[@hakoerber]]
44+
45+
[#2121]: https://github.com/launchbadge/sqlx/pull/2121
46+
[#2533]: https://github.com/launchbadge/sqlx/pull/2533
47+
[#2538]: https://github.com/launchbadge/sqlx/pull/2538
48+
[#2577]: https://github.com/launchbadge/sqlx/pull/2577
49+
[#2602]: https://github.com/launchbadge/sqlx/pull/2602
50+
[#2624]: https://github.com/launchbadge/sqlx/pull/2624
51+
[#2628]: https://github.com/launchbadge/sqlx/pull/2628
52+
[#2630]: https://github.com/launchbadge/sqlx/pull/2630
53+
[#2634]: https://github.com/launchbadge/sqlx/pull/2634
54+
[#2646]: https://github.com/launchbadge/sqlx/pull/2646
55+
[#2650]: https://github.com/launchbadge/sqlx/pull/2650
56+
[#2651]: https://github.com/launchbadge/sqlx/pull/2651
57+
[#2664]: https://github.com/launchbadge/sqlx/pull/2664
58+
[#2670]: https://github.com/launchbadge/sqlx/pull/2670
59+
[#2687]: https://github.com/launchbadge/sqlx/pull/2687
60+
[#2695]: https://github.com/launchbadge/sqlx/pull/2695
61+
[#2706]: https://github.com/launchbadge/sqlx/pull/2706
62+
[#2712]: https://github.com/launchbadge/sqlx/pull/2712
63+
[#2717]: https://github.com/launchbadge/sqlx/pull/2717
64+
[#2739]: https://github.com/launchbadge/sqlx/pull/2739
65+
[#2740]: https://github.com/launchbadge/sqlx/pull/2740
66+
[#2742]: https://github.com/launchbadge/sqlx/pull/2742
67+
[#2750]: https://github.com/launchbadge/sqlx/pull/2750
68+
[#2757]: https://github.com/launchbadge/sqlx/pull/2757
69+
870
## 0.7.1 - 2023-07-14
971

1072
This release mainly addresses issues reported with the 0.7.0 release.
@@ -1939,3 +2001,20 @@ Fix docs.rs build by enabling a runtime feature in the docs.rs metadata in `Carg
19392001
[@mrl5]: https://github.com/mrl5
19402002
[@Xydez]: https://github.com/Xydez
19412003
[@vabka]: https://github.com/vabka
2004+
[@ldanilek]: https://github.com/ldanilek
2005+
[@inahga]: https://github.com/inahga
2006+
[@JockeM]: https://github.com/JockeM
2007+
[@vmax]: https://github.com/vmax
2008+
[@sebastianv89]: https://github.com/sebastianv89
2009+
[@marcusirgens]: https://github.com/marcusirgens
2010+
[@tsing]: https://github.com/tsing
2011+
[@snf]: https://github.com/snf
2012+
[@wyhaya]: https://github.com/wyhaya
2013+
[@hakoerber]: https://github.com/hakoerber
2014+
[@olback]: https://github.com/olback
2015+
[@kryptan]: https://github.com/kryptan
2016+
[@grant0417]: https://github.com/grant0417
2017+
[@fermanjj]: https://github.com/fermanjj
2018+
[@grooverdan]: https://github.com/grooverdan
2019+
[@bobozaur]: https://github.com/bobozaur
2020+
[@aldur]: https://github.com/aldur

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.7.1"
26+
version = "0.7.2"
2727
license = "MIT OR Apache-2.0"
2828
edition = "2021"
2929
repository = "https://github.com/launchbadge/sqlx"
@@ -114,17 +114,17 @@ regexp = ["sqlx-sqlite?/regexp"]
114114

115115
[workspace.dependencies]
116116
# Core Crates
117-
sqlx-core = { version = "=0.7.1", path = "sqlx-core" }
118-
sqlx-macros-core = { version = "=0.7.1", path = "sqlx-macros-core" }
119-
sqlx-macros = { version = "=0.7.1", path = "sqlx-macros" }
117+
sqlx-core = { version = "=0.7.2", path = "sqlx-core" }
118+
sqlx-macros-core = { version = "=0.7.2", path = "sqlx-macros-core" }
119+
sqlx-macros = { version = "=0.7.2", path = "sqlx-macros" }
120120

121121
# Driver crates
122-
sqlx-mysql = { version = "=0.7.1", path = "sqlx-mysql" }
123-
sqlx-postgres = { version = "=0.7.1", path = "sqlx-postgres" }
124-
sqlx-sqlite = { version = "=0.7.1", path = "sqlx-sqlite" }
122+
sqlx-mysql = { version = "=0.7.2", path = "sqlx-mysql" }
123+
sqlx-postgres = { version = "=0.7.2", path = "sqlx-postgres" }
124+
sqlx-sqlite = { version = "=0.7.2", path = "sqlx-sqlite" }
125125

126126
# Facade crate (for reference from sqlx-cli)
127-
sqlx = { version = "=0.7.1", path = ".", default-features = false }
127+
sqlx = { version = "=0.7.2", path = ".", default-features = false }
128128

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

0 commit comments

Comments
 (0)