Skip to content

Commit

Permalink
fix(deps): update rust crate sqlx to 0.7.4 (#85)
Browse files Browse the repository at this point in the history
[![Mend
Renovate](https://app.renovatebot.com/images/banner.svg)](https://renovatebot.com)

This PR contains the following updates:

| Package | Type | Update | Change |
|---|---|---|---|
| [sqlx](https://github.com/launchbadge/sqlx) | dependencies | patch |
`0.7` -> `0.7.4` |

---

### Release Notes

<details>
<summary>launchbadge/sqlx (sqlx)</summary>

###
[`v0.7.4`](https://github.com/launchbadge/sqlx/blob/HEAD/CHANGELOG.md#074---2024-03-11)

[Compare
Source](https://github.com/launchbadge/sqlx/compare/v0.7.3...v0.7.4)

38 pull requests were merged this release cycle.

This is officially the **last** release of the 0.7.x release cycle.

As of this release, development of 0.8.0 has begun on `main` and only
high-priority bugfixes may be backported.

##### Added

- \[[#&#8203;2891]]: feat: expose getters for connect options fields
\[\[[@&#8203;saiintbrisson](https://github.com/saiintbrisson)]]
- \[[#&#8203;2902]]: feat: add `to_url_lossy` to connect options
\[\[[@&#8203;lily-mosquitoes](https://github.com/lily-mosquitoes)]]
- \[[#&#8203;2927]]: Support `query!` for cargo-free systems
\[\[[@&#8203;kshramt](https://github.com/kshramt)]]
- \[[#&#8203;2997]]: doc(FAQ): add entry explaining prepared statements
\[\[[@&#8203;abonander](https://github.com/abonander)]]
- \[[#&#8203;3001]]: Update README to clarify MariaDB support
\[\[[@&#8203;iangilfillan](https://github.com/iangilfillan)]]
- \[[#&#8203;3004]]: feat(logging): Add numeric elapsed time field
elapsed_secs \[\[[@&#8203;iamjpotts](https://github.com/iamjpotts)]]
- \[[#&#8203;3007]]: feat: add `raw_sql` API
\[\[[@&#8203;abonander](https://github.com/abonander)]]
- This hopefully makes it easier to find how to execute statements which
are not supported by the default
        prepared statement interfaces `query*()` and `query!()`.
- Improved documentation across the board for the `query*()` functions.
- Deprecated: `execute_many()` and `fetch_many()` on interfaces that use
prepared statements.
- Multiple SQL statements in one query string were only supported by
SQLite because its prepared statement
interface is the *only* way to execute SQL. All other database flavors
forbid multiple statements in
one prepared statement string as an extra defense against SQL injection.
- The new `raw_sql` API retains this functionality because it explicitly
does *not* use prepared statements.
Raw or text-mode query interfaces generally allow multiple statements in
one query string, and this is
supported by all current databases. Due to their nature, however, one
cannot use bind parameters with them.
- If this change affects you, an issue is open for discussion:
[https://github.com/launchbadge/sqlx/issues/3108](https://github.com/launchbadge/sqlx/issues/3108)
- \[[#&#8203;3011]]: Added support to IpAddr with MySQL/MariaDB.
\[\[[@&#8203;Icerath](https://github.com/Icerath)]]
- \[[#&#8203;3013]]: Add default implementation for PgInterval
\[\[[@&#8203;pawurb](https://github.com/pawurb)]]
- \[[#&#8203;3018]]: Add default implementation for PgMoney
\[\[[@&#8203;pawurb](https://github.com/pawurb)]]
- \[[#&#8203;3026]]: Update docs to reflect support for MariaDB data
types \[\[[@&#8203;iangilfillan](https://github.com/iangilfillan)]]
- \[[#&#8203;3037]]: feat(mysql): allow to connect with mysql driver
without default behavor
\[\[[@&#8203;darkecho731](https://github.com/darkecho731)]]

##### Changed

- \[[#&#8203;2900]]: Show latest url to docs for macro.migrate
\[\[[@&#8203;Vrajs16](https://github.com/Vrajs16)]]
- \[[#&#8203;2914]]: Use `create_new` instead of `atomic-file-write`
\[\[[@&#8203;mattfbacon](https://github.com/mattfbacon)]]
- \[[#&#8203;2926]]: docs: update example for `PgConnectOptions`
\[\[[@&#8203;Fyko](https://github.com/Fyko)]]
- \[[#&#8203;2989]]: sqlx-core: Remove dotenvy dependency
\[\[[@&#8203;joshtriplett](https://github.com/joshtriplett)]]
- \[[#&#8203;2996]]: chore: Update ahash to 0.8.7
\[\[[@&#8203;takenoko-gohan](https://github.com/takenoko-gohan)]]
- \[[#&#8203;3006]]: chore(deps): Replace unmaintained tempdir crate
with tempfile \[\[[@&#8203;iamjpotts](https://github.com/iamjpotts)]]
- \[[#&#8203;3008]]: chore: Ignore .sqlx folder created by running ci
steps locally \[\[[@&#8203;iamjpotts](https://github.com/iamjpotts)]]
- \[[#&#8203;3009]]: chore(dev-deps): Upgrade env_logger from 0.9 to
0.11 \[\[[@&#8203;iamjpotts](https://github.com/iamjpotts)]]
- \[[#&#8203;3010]]: chore(deps): Upgrade criterion to 0.5.1
\[\[[@&#8203;iamjpotts](https://github.com/iamjpotts)]]
- \[[#&#8203;3050]]: Optimize SASL auth in sqlx-postgres
\[\[[@&#8203;mirek26](https://github.com/mirek26)]]
- \[[#&#8203;3055]]: Set TCP_NODELAY option on TCP sockets
\[\[[@&#8203;mirek26](https://github.com/mirek26)]]
- \[[#&#8203;3065]]: Improve max_lifetime handling
\[\[[@&#8203;mirek26](https://github.com/mirek26)]]
- \[[#&#8203;3072]]: Change the name of "inner" function generated by
`#[sqlx::test]` \[\[[@&#8203;ciffelia](https://github.com/ciffelia)]]
- \[[#&#8203;3083]]: Remove sha1 because it's not being used in postgres
\[\[[@&#8203;rafaelGuerreiro](https://github.com/rafaelGuerreiro)]]

##### Fixed

- \[[#&#8203;2898]]: Fixed docs
\[\[[@&#8203;Vrajs16](https://github.com/Vrajs16)]]
- \[[#&#8203;2905]]: fix(mysql): Close prepared statement if persistence
is disabled
\[\[[@&#8203;larsschumacher](https://github.com/larsschumacher)]]
- \[[#&#8203;2913]]: Fix handling of deferred constraints
\[\[[@&#8203;Thomasdezeeuw](https://github.com/Thomasdezeeuw)]]
- \[[#&#8203;2919]]: fix duplicate "\`" in FromRow "default" attribute
doc comment \[\[[@&#8203;shengsheng](https://github.com/shengsheng)]]
- \[[#&#8203;2932]]: fix(postgres): avoid unnecessary flush in
PgCopyIn::read_from \[\[[@&#8203;tsing](https://github.com/tsing)]]
- \[[#&#8203;2955]]: Minor fixes
\[\[[@&#8203;Dawsoncodes](https://github.com/Dawsoncodes)]]
- \[[#&#8203;2963]]: Fixed ReadMe badge styling
\[\[[@&#8203;tadghh](https://github.com/tadghh)]]
- \[[#&#8203;2976]]: fix: AnyRow not support PgType::Varchar
\[\[[@&#8203;holicc](https://github.com/holicc)]]
- \[[#&#8203;3053]]: fix: do not panic when binding a large BigDecimal
\[\[[@&#8203;Ekleog](https://github.com/Ekleog)]]
- \[[#&#8203;3056]]: fix: spans in sqlite tracing
([#&#8203;2876](https://github.com/launchbadge/sqlx/issues/2876))
\[\[[@&#8203;zoomiti](https://github.com/zoomiti)]]
- \[[#&#8203;3089]]: fix(migrate): improve error message when parsing
version from filename
\[\[[@&#8203;abonander](https://github.com/abonander)]]
- \[[#&#8203;3098]]: Migrations fixes
\[\[[@&#8203;abonander](https://github.com/abonander)]]
    -   Unhides `sqlx::migrate::Migrator`.
- Improves I/O error message when failing to read a file in
`migrate!()`.

[#&#8203;2891]: https://github.com/launchbadge/sqlx/pull/2891

[#&#8203;2898]: https://github.com/launchbadge/sqlx/pull/2898

[#&#8203;2900]: https://github.com/launchbadge/sqlx/pull/2900

[#&#8203;2902]: https://github.com/launchbadge/sqlx/pull/2902

[#&#8203;2905]: https://github.com/launchbadge/sqlx/pull/2905

[#&#8203;2913]: https://github.com/launchbadge/sqlx/pull/2913

[#&#8203;2914]: https://github.com/launchbadge/sqlx/pull/2914

[#&#8203;2919]: https://github.com/launchbadge/sqlx/pull/2919

[#&#8203;2926]: https://github.com/launchbadge/sqlx/pull/2926

[#&#8203;2927]: https://github.com/launchbadge/sqlx/pull/2927

[#&#8203;2932]: https://github.com/launchbadge/sqlx/pull/2932

[#&#8203;2955]: https://github.com/launchbadge/sqlx/pull/2955

[#&#8203;2963]: https://github.com/launchbadge/sqlx/pull/2963

[#&#8203;2976]: https://github.com/launchbadge/sqlx/pull/2976

[#&#8203;2989]: https://github.com/launchbadge/sqlx/pull/2989

[#&#8203;2996]: https://github.com/launchbadge/sqlx/pull/2996

[#&#8203;2997]: https://github.com/launchbadge/sqlx/pull/2997

[#&#8203;3001]: https://github.com/launchbadge/sqlx/pull/3001

[#&#8203;3004]: https://github.com/launchbadge/sqlx/pull/3004

[#&#8203;3006]: https://github.com/launchbadge/sqlx/pull/3006

[#&#8203;3007]: https://github.com/launchbadge/sqlx/pull/3007

[#&#8203;3008]: https://github.com/launchbadge/sqlx/pull/3008

[#&#8203;3009]: https://github.com/launchbadge/sqlx/pull/3009

[#&#8203;3010]: https://github.com/launchbadge/sqlx/pull/3010

[#&#8203;3011]: https://github.com/launchbadge/sqlx/pull/3011

[#&#8203;3013]: https://github.com/launchbadge/sqlx/pull/3013

[#&#8203;3018]: https://github.com/launchbadge/sqlx/pull/3018

[#&#8203;3026]: https://github.com/launchbadge/sqlx/pull/3026

[#&#8203;3037]: https://github.com/launchbadge/sqlx/pull/3037

[#&#8203;3050]: https://github.com/launchbadge/sqlx/pull/3050

[#&#8203;3053]: https://github.com/launchbadge/sqlx/pull/3053

[#&#8203;3055]: https://github.com/launchbadge/sqlx/pull/3055

[#&#8203;3056]: https://github.com/launchbadge/sqlx/pull/3056

[#&#8203;3065]: https://github.com/launchbadge/sqlx/pull/3065

[#&#8203;3072]: https://github.com/launchbadge/sqlx/pull/3072

[#&#8203;3083]: https://github.com/launchbadge/sqlx/pull/3083

[#&#8203;3089]: https://github.com/launchbadge/sqlx/pull/3089

[#&#8203;3098]: https://github.com/launchbadge/sqlx/pull/3098

###
[`v0.7.3`](https://github.com/launchbadge/sqlx/blob/HEAD/CHANGELOG.md#073---2023-11-22)

38 pull requests were merged this release cycle.

##### Added

- \[[#&#8203;2478]]: feat(citext): support postgres citext
\[\[[@&#8203;hgranthorner](https://github.com/hgranthorner)]]
- \[[#&#8203;2545]]: Add `fixtures_path` in sqlx::test args
\[\[[@&#8203;ripa1995](https://github.com/ripa1995)]]
- \[[#&#8203;2665]]: feat(mysql): support packet splitting
\[\[[@&#8203;tk2217](https://github.com/tk2217)]]
- \[[#&#8203;2752]]: Enhancement
[#&#8203;2747](https://github.com/launchbadge/sqlx/issues/2747)
Provide `fn PgConnectOptions::get_host(&self)`
\[\[[@&#8203;boris-lok](https://github.com/boris-lok)]]
- \[[#&#8203;2769]]: Customize the macro error message based on the
metadata \[\[[@&#8203;Nemo157](https://github.com/Nemo157)]]
- \[[#&#8203;2793]]: derived Hash trait for PgInterval
\[\[[@&#8203;yasamoka](https://github.com/yasamoka)]]
- \[[#&#8203;2801]]: derive FromRow: sqlx(default) for all fields
\[\[[@&#8203;grgi](https://github.com/grgi)]]
- \[[#&#8203;2827]]: Add impl `FromRow` for the unit type
\[\[[@&#8203;nanoqsh](https://github.com/nanoqsh)]]
- \[[#&#8203;2871]]: Add `MySqlConnectOptions::get_database()`
\[\[[@&#8203;shiftrightonce](https://github.com/shiftrightonce)]]
- \[[#&#8203;2873]]: Sqlx Cli: Added force flag to drop database for
postgres \[\[[@&#8203;Vrajs16](https://github.com/Vrajs16)]]
- \[[#&#8203;2894]]: feat: `Text` adapter
\[\[[@&#8203;abonander](https://github.com/abonander)]]

##### Changed

- \[[#&#8203;2701]]: Remove documentation on offline feature
\[\[[@&#8203;Baptistemontan](https://github.com/Baptistemontan)]]
- \[[#&#8203;2713]]: Add additional info regarding using Transaction and
PoolConnection as…
\[\[[@&#8203;satwanjyu](https://github.com/satwanjyu)]]
- \[[#&#8203;2770]]: Update README.md
\[\[[@&#8203;snspinn](https://github.com/snspinn)]]
- \[[#&#8203;2797]]: doc(mysql): document behavior regarding `BOOLEAN`
and the query macros
\[\[[@&#8203;abonander](https://github.com/abonander)]]
- \[[#&#8203;2803]]: Don't use separate temp dir for query jsons (2)
\[\[[@&#8203;mattfbacon](https://github.com/mattfbacon)]]
- \[[#&#8203;2819]]: postgres begin cancel safe
\[\[[@&#8203;conradludgate](https://github.com/conradludgate)]]
- \[[#&#8203;2832]]: Update extra_float_digits default to 2 instead of 3
\[\[[@&#8203;brianheineman](https://github.com/brianheineman)]]
- \[[#&#8203;2865]]: Update Faq - Bulk upsert with optional fields
\[\[[@&#8203;Vrajs16](https://github.com/Vrajs16)]]
- \[[#&#8203;2880]]: feat: use specific message for slow query logs
\[\[[@&#8203;abonander](https://github.com/abonander)]]
- \[[#&#8203;2882]]: Do not require db url for prepare
\[\[[@&#8203;tamasfe](https://github.com/tamasfe)]]
- \[[#&#8203;2890]]: doc(sqlite): cover lack of `NUMERIC` support
\[\[[@&#8203;abonander](https://github.com/abonander)]]
-   \[No PR]: Upgraded `libsqlite3-sys` to 0.27.0
    -   Note: linkage to `libsqlite3-sys` is considered semver-exempt;
        see the release notes for 0.7.0 below for details.

##### Fixed

- \[[#&#8203;2640]]: fix: sqlx::macro db cleanup race condition by
adding a margin to current timestamp
\[\[[@&#8203;fhsgoncalves](https://github.com/fhsgoncalves)]]
- \[[#&#8203;2655]]: \[fix] Urlencode when passing filenames to sqlite3
\[\[[@&#8203;uttarayan21](https://github.com/uttarayan21)]]
- \[[#&#8203;2684]]: Make PgListener recover from UnexpectedEof
\[\[[@&#8203;hamiltop](https://github.com/hamiltop)]]
- \[[#&#8203;2688]]: fix: Make rust_decimal and bigdecimal decoding more
lenient \[\[[@&#8203;cameronbraid](https://github.com/cameronbraid)]]
- \[[#&#8203;2754]]: Is tests/x.py maintained? And I tried fix it.
\[\[[@&#8203;qwerty2501](https://github.com/qwerty2501)]]
- \[[#&#8203;2784]]: fix: decode postgres time without subsecond
\[\[[@&#8203;granddaifuku](https://github.com/granddaifuku)]]
- \[[#&#8203;2806]]: Depend on version of async-std with non-private
spawn-blocking \[\[[@&#8203;A248](https://github.com/A248)]]
- \[[#&#8203;2820]]: fix: correct decoding of `rust_decimal::Decimal`
for high-precision values
\[\[[@&#8203;abonander](https://github.com/abonander)]]
- \[[#&#8203;2822]]: issue
[#&#8203;2821](https://github.com/launchbadge/sqlx/issues/2821) Update
error handling logic when opening a TCP connection
\[\[[@&#8203;anupj](https://github.com/anupj)]]
- \[[#&#8203;2826]]: chore: bump some sqlx-core dependencies
\[\[[@&#8203;djc](https://github.com/djc)]]
- \[[#&#8203;2838]]: Fixes rust_decimal scale for Postgres
\[\[[@&#8203;jkleinknox](https://github.com/jkleinknox)]]
- \[[#&#8203;2847]]: Fix comment in `sqlx migrate add` help text
\[\[[@&#8203;cryeprecision](https://github.com/cryeprecision)]]
- \[[#&#8203;2850]]: fix(core): avoid unncessary wakeups in
`try_stream!()`
\[\[[@&#8203;abonander](https://github.com/abonander)]]
- \[[#&#8203;2856]]: Prevent warnings running `cargo build`
\[\[[@&#8203;nyurik](https://github.com/nyurik)]]
- \[[#&#8203;2864]]: fix(sqlite): use `AtomicUsize` for thread IDs
\[\[[@&#8203;abonander](https://github.com/abonander)]]
- \[[#&#8203;2892]]: Fixed force dropping bug
\[\[[@&#8203;Vrajs16](https://github.com/Vrajs16)]]

[#&#8203;2478]: https://github.com/launchbadge/sqlx/pull/2478

[#&#8203;2545]: https://github.com/launchbadge/sqlx/pull/2545

[#&#8203;2640]: https://github.com/launchbadge/sqlx/pull/2640

[#&#8203;2655]: https://github.com/launchbadge/sqlx/pull/2655

[#&#8203;2665]: https://github.com/launchbadge/sqlx/pull/2665

[#&#8203;2684]: https://github.com/launchbadge/sqlx/pull/2684

[#&#8203;2688]: https://github.com/launchbadge/sqlx/pull/2688

[#&#8203;2701]: https://github.com/launchbadge/sqlx/pull/2701

[#&#8203;2713]: https://github.com/launchbadge/sqlx/pull/2713

[#&#8203;2752]: https://github.com/launchbadge/sqlx/pull/2752

[#&#8203;2754]: https://github.com/launchbadge/sqlx/pull/2754

[#&#8203;2769]: https://github.com/launchbadge/sqlx/pull/2769

[#&#8203;2770]: https://github.com/launchbadge/sqlx/pull/2770

[#&#8203;2782]: https://github.com/launchbadge/sqlx/pull/2782

[#&#8203;2784]: https://github.com/launchbadge/sqlx/pull/2784

[#&#8203;2793]: https://github.com/launchbadge/sqlx/pull/2793

[#&#8203;2797]: https://github.com/launchbadge/sqlx/pull/2797

[#&#8203;2801]: https://github.com/launchbadge/sqlx/pull/2801

[#&#8203;2803]: https://github.com/launchbadge/sqlx/pull/2803

[#&#8203;2806]: https://github.com/launchbadge/sqlx/pull/2806

[#&#8203;2819]: https://github.com/launchbadge/sqlx/pull/2819

[#&#8203;2820]: https://github.com/launchbadge/sqlx/pull/2820

[#&#8203;2822]: https://github.com/launchbadge/sqlx/pull/2822

[#&#8203;2826]: https://github.com/launchbadge/sqlx/pull/2826

[#&#8203;2827]: https://github.com/launchbadge/sqlx/pull/2827

[#&#8203;2832]: https://github.com/launchbadge/sqlx/pull/2832

[#&#8203;2838]: https://github.com/launchbadge/sqlx/pull/2838

[#&#8203;2847]: https://github.com/launchbadge/sqlx/pull/2847

[#&#8203;2850]: https://github.com/launchbadge/sqlx/pull/2850

[#&#8203;2856]: https://github.com/launchbadge/sqlx/pull/2856

[#&#8203;2864]: https://github.com/launchbadge/sqlx/pull/2864

[#&#8203;2865]: https://github.com/launchbadge/sqlx/pull/2865

[#&#8203;2871]: https://github.com/launchbadge/sqlx/pull/2871

[#&#8203;2873]: https://github.com/launchbadge/sqlx/pull/2873

[#&#8203;2880]: https://github.com/launchbadge/sqlx/pull/2880

[#&#8203;2882]: https://github.com/launchbadge/sqlx/pull/2882

[#&#8203;2890]: https://github.com/launchbadge/sqlx/pull/2890

[#&#8203;2892]: https://github.com/launchbadge/sqlx/pull/2892

[#&#8203;2894]: https://github.com/launchbadge/sqlx/pull/2894

</details>

---

### Configuration

📅 **Schedule**: Branch creation - At any time (no schedule defined),
Automerge - At any time (no schedule defined).

🚦 **Automerge**: Enabled.

♻ **Rebasing**: Whenever PR becomes conflicted, or you tick the
rebase/retry checkbox.

🔕 **Ignore**: Close this PR and you won't be reminded about this update
again.

---

- [ ] <!-- rebase-check -->If you want to rebase/retry this PR, check
this box

---

This PR has been generated by [Mend
Renovate](https://www.mend.io/free-developer-tools/renovate/). View
repository job log
[here](https://developer.mend.io/github/SebastianGoeb/kindle-to-anki).

<!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiIzNy4zMzEuMCIsInVwZGF0ZWRJblZlciI6IjM3LjMzMS4wIiwidGFyZ2V0QnJhbmNoIjoibWFpbiIsImxhYmVscyI6W119-->

Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
  • Loading branch information
renovate[bot] authored May 3, 2024
1 parent 7f6244e commit 650b7aa
Show file tree
Hide file tree
Showing 2 changed files with 62 additions and 39 deletions.
99 changes: 61 additions & 38 deletions Cargo.lock

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

2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ version = "0.1.0"
edition = "2021"

[dependencies]
sqlx = { version = "0.7", features = [ "runtime-async-std-rustls", "sqlite" ] }
sqlx = { version = "0.7.4", features = [ "runtime-async-std-rustls", "sqlite" ] }
async-std = { version = "1.12.0", features = [ "attributes" ] }
futures = "0.3.30"
csv = "1.3.0"
Expand Down

0 comments on commit 650b7aa

Please sign in to comment.