@@ -5,6 +5,68 @@ All notable changes to this project will be documented in this file.
5
5
The format is based on [ Keep a Changelog] ( https://keepachangelog.com/en/1.0.0/ ) ,
6
6
and this project adheres to [ Semantic Versioning] ( https://semver.org/spec/v2.0.0.html ) .
7
7
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
+
8
70
## 0.7.1 - 2023-07-14
9
71
10
72
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
1939
2001
[@ mrl5]: https: // github.com/mrl5
1940
2002
[@ Xydez ]: https: // github.com/Xydez
1941
2003
[@ 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
0 commit comments