Skip to content

Commit c70cfaf

Browse files
authored
prepare 0.7.1 release (#2621)
1 parent f7ce8fd commit c70cfaf

File tree

4 files changed

+73
-18
lines changed

4 files changed

+73
-18
lines changed

CHANGELOG.md

+57
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,53 @@ 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.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+
855
## 0.7.0 - 2023-06-30
956

1057
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
18821929
[@titaniumtraveler]: https://github.com/titaniumtraveler
18831930
[@nyurik]: https://github.com/nyurik
18841931
[@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

Cargo.lock

+8-8
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Cargo.toml

+8-8
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ members = [
2222
]
2323

2424
[workspace.package]
25-
version = "0.7.0"
25+
version = "0.7.1"
2626
license = "MIT OR Apache-2.0"
2727
edition = "2021"
2828
repository = "https://github.com/launchbadge/sqlx"
@@ -113,17 +113,17 @@ regexp = ["sqlx-sqlite?/regexp"]
113113

114114
[workspace.dependencies]
115115
# Core Crates
116-
sqlx-core = { version = "=0.7.0", path = "sqlx-core" }
117-
sqlx-macros-core = { version = "=0.7.0", path = "sqlx-macros-core" }
118-
sqlx-macros = { version = "=0.7.0", path = "sqlx-macros" }
116+
sqlx-core = { version = "=0.7.1", path = "sqlx-core" }
117+
sqlx-macros-core = { version = "=0.7.1", path = "sqlx-macros-core" }
118+
sqlx-macros = { version = "=0.7.1", path = "sqlx-macros" }
119119

120120
# Driver crates
121-
sqlx-mysql = { version = "=0.7.0", path = "sqlx-mysql" }
122-
sqlx-postgres = { version = "=0.7.0", path = "sqlx-postgres" }
123-
sqlx-sqlite = { version = "=0.7.0", path = "sqlx-sqlite" }
121+
sqlx-mysql = { version = "=0.7.1", path = "sqlx-mysql" }
122+
sqlx-postgres = { version = "=0.7.1", path = "sqlx-postgres" }
123+
sqlx-sqlite = { version = "=0.7.1", path = "sqlx-sqlite" }
124124

125125
# Facade crate (for reference from sqlx-cli)
126-
sqlx = { version = "=0.7.0", path = ".", default-features = false }
126+
sqlx = { version = "=0.7.1", path = ".", default-features = false }
127127

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

gen-changelog.sh

-2
Original file line numberDiff line numberDiff line change
@@ -6,8 +6,6 @@ set -e
66
PULLS='[]'
77
CURSOR='null'
88

9-
VERSION=$1
10-
119
MIN_MERGED_AT=$(date --date="$1" +%s)
1210

1311
while true

0 commit comments

Comments
 (0)