@@ -5,6 +5,53 @@ 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.1 - 2023-07-14
9
+
10
+ This release mainly addresses issues reported with the 0.7.0 release.
11
+
12
+ 16 pull requests were merged this release cycle.
13
+
14
+ ### Added
15
+ * [[ #2551 ]] : Introduce build_query_scalar for QueryBuilder [[ @iamquang95 ]]
16
+ * [[ #2605 ]] : Implement Default for QueryBuilder [[ @Xydez ]]
17
+ * [[ #2616 ]] : feat(sqlx-core): add table function to database error [[ @saiintbrisson ]]
18
+ * [[ #2619 ]] : feat: allow opt-out of ` PgHasArrayType ` with ` #[derive(sqlx::Type)] ` [[ @abonander ]]
19
+ * TL;DR: if you're getting errors from ` #[derive(sqlx::Type)] ` with ` #[sqlx(transparent)] `
20
+ regarding ` PgHasArrayType ` not being implemented, add ` #[sqlx(no_pg_array)] ` to fix.
21
+
22
+ ### Changed
23
+ * [[ #2566 ]] : improve docs about migration files [[ @jnnnnn ]]
24
+ * [[ #2576 ]] : Major Version Update clap to 4.0 [[ @titaniumtraveler ]]
25
+ * [[ #2597 ]] : Bump webpki-roots to v0.24 [[ @paolobarbolini ]]
26
+ * [[ #2603 ]] : docs(changelog): be more verbose about offline mode breaking change [[ @mrl5 ]]
27
+
28
+ ### Fixed
29
+ * [[ #2553 ]] : Implement ` Clone ` for ` PoolOptions ` manually (#2548 ) [[ @alilleybrinker ]]
30
+ * [[ #2580 ]] : Update README.md now that 0.7.0 is no longer in alpha [[ @saolof ]]
31
+ * [[ #2585 ]] : Fix for Issue #2549 - cannot use feature "rust_decimal" without also using "bigdecimal" [[ @deneut ]]
32
+ * [[ #2586 ]] : Fix optional dependency on sqlx-macros [[ @kitterion ]]
33
+ * [[ #2593 ]] : Correct mention of the ` tls-native-tls ` in the documentation. [[ @denschub ]]
34
+ * [[ #2599 ]] : Remove incorrect CAST in test database cleanup for MySQL. [[ @fd ]]
35
+ * [[ #2613 ]] : Fix readme.md to reduce confusion about optional features (decimal->rust_decimal) [[ @vabka ]]
36
+ * [[ #2620 ]] : fix(sqlite/any): encode bool as integer [[ @saiintbrisson ]]
37
+
38
+ [ #2551 ] : https://github.com/launchbadge/sqlx/pull/2551
39
+ [ #2553 ] : https://github.com/launchbadge/sqlx/pull/2553
40
+ [ #2566 ] : https://github.com/launchbadge/sqlx/pull/2566
41
+ [ #2576 ] : https://github.com/launchbadge/sqlx/pull/2576
42
+ [ #2580 ] : https://github.com/launchbadge/sqlx/pull/2580
43
+ [ #2585 ] : https://github.com/launchbadge/sqlx/pull/2585
44
+ [ #2586 ] : https://github.com/launchbadge/sqlx/pull/2586
45
+ [ #2593 ] : https://github.com/launchbadge/sqlx/pull/2593
46
+ [ #2597 ] : https://github.com/launchbadge/sqlx/pull/2597
47
+ [ #2599 ] : https://github.com/launchbadge/sqlx/pull/2599
48
+ [ #2603 ] : https://github.com/launchbadge/sqlx/pull/2603
49
+ [ #2605 ] : https://github.com/launchbadge/sqlx/pull/2605
50
+ [ #2613 ] : https://github.com/launchbadge/sqlx/pull/2613
51
+ [ #2616 ] : https://github.com/launchbadge/sqlx/pull/2616
52
+ [ #2619 ] : https://github.com/launchbadge/sqlx/pull/2619
53
+ [ #2620 ] : https://github.com/launchbadge/sqlx/pull/2620
54
+
8
55
## 0.7.0 - 2023-06-30
9
56
10
57
At least ** 70 pull requests** were merged this release cycle! (The exact count is muddied with pull requests for alpha
@@ -1882,3 +1929,13 @@ Fix docs.rs build by enabling a runtime feature in the docs.rs metadata in `Carg
1882
1929
[@ titaniumtraveler]: https: // github.com/titaniumtraveler
1883
1930
[@ nyurik]: https: // github.com/nyurik
1884
1931
[@ stepantubanov]: https: // github.com/stepantubanov
1932
+ [@ iamquang95]: https: // github.com/iamquang95
1933
+ [@ jnnnnn]: https: // github.com/jnnnnn
1934
+ [@ saolof]: https: // github.com/saolof
1935
+ [@ deneut]: https: // github.com/deneut
1936
+ [@ kitterion]: https: // github.com/kitterion
1937
+ [@ denschub]: https: // github.com/denschub
1938
+ [@ fd]: https: // github.com/fd
1939
+ [@ mrl5]: https: // github.com/mrl5
1940
+ [@ Xydez ]: https: // github.com/Xydez
1941
+ [@ vabka]: https: // github.com/vabka
0 commit comments