stadust / pointercrate

Rewrite of the https://pointercrate.com backend in Rust
MIT License
80 stars 52 forks source link

Build(deps): Bump the pointercrate group with 23 updates #153

Closed dependabot[bot] closed 3 months ago

dependabot[bot] commented 3 months ago

Bumps the pointercrate group with 23 updates:

Package From To
sqlx 0.7.4 0.8.0
tokio 1.38.1 1.39.2
event-listener 2.5.3 5.3.1
hashlink 0.8.4 0.9.1
heck 0.4.1 0.5.0
libsqlite3-sys 0.27.0 0.28.0
mio 0.8.11 1.0.1
object 0.36.1 0.36.2
rustls 0.23.11 0.23.12
serde_spanned 0.6.6 0.6.7
sqlx-core 0.7.4 0.8.0
sqlx-macros 0.7.4 0.8.0
sqlx-macros-core 0.7.4 0.8.0
sqlx-mysql 0.7.4 0.8.0
sqlx-postgres 0.7.4 0.8.0
sqlx-sqlite 0.7.4 0.8.0
syn 1.0.109 2.0.58
tokio-macros 2.3.0 2.4.0
toml 0.8.15 0.8.16
toml_datetime 0.6.6 0.6.7
toml_edit 0.22.16 0.22.17
version_check 0.9.4 0.9.5
winnow 0.6.15 0.6.16

Updates sqlx from 0.7.4 to 0.8.0

Changelog

Sourced from sqlx's changelog.

0.8.0 - 2024-07-22

70 pull requests were merged this release cycle.

#2697 was merged the same day as release 0.7.4 and so was missed by the automatic CHANGELOG generation.

Breaking

  • [#2697]: fix(macros): only enable chrono when time is disabled [[@​saiintbrisson]]
  • [#2973]: Generic Associated Types in Database, replacing HasValueRef, HasArguments, HasStatement [[@​nitn3lav]]
  • [#2482]: chore: bump syn to 2.0 [[@​saiintbrisson]]
    • Deprecated type ascription syntax in the query macros was removed.
  • [#2736]: Fix describe on PostgreSQL views with rules [[@​tsing]]
    • Potentially breaking: nullability inference changes for Postgres.
  • [#2869]: Implement PgHasArrayType for all references [[@​tylerhawkes]]
    • Conflicts with existing manual implementations.
  • [#2940]: fix: Decode and Encode derives (#1031) [[@​benluelo]]
    • Changes lifetime obligations for field types.
  • [#3064]: Sqlite explain graph [[@​tyrelr]]
    • Potentially breaking: nullability inference changes for SQLite.
  • [#3123]: Reorder attrs in sqlx::test macro [[@​bobozaur]]
    • Potentially breaking: attributes on #[sqlx::test] usages are applied in the correct order now.
  • [#3126]: Make Encode return a result [[@​FSMaxB]]
  • [#3130]: Add version information for failed cli migration (#3129) [[@​FlakM]]
    • Breaking changes to MigrateError.
  • [#3181]: feat: no tx migration [[@​cleverjam]]
    • (Postgres only) migrations that should not run in a transaction can be flagged by adding -- no-transaction to the beginning.
    • Breaking change: added field to Migration
  • [#3184]: [BREAKING} fix(sqlite): always use i64 as intermediate when decoding [[@​abonander]]
    • integer decoding will now loudly error on overflow instead of silently truncating.
    • some usages of the query!() macros might change an i32 to an i64.
  • [#3252]: fix #[derive(sqlx::Type)] in Postgres [[@​abonander]]
    • Manual implementations of PgHasArrayType for enums will conflict with the generated one. Delete the manual impl or add #[sqlx(no_pg_array)] where conflicts occur.
    • Type equality for PgTypeInfo is now schema-aware.
  • [#3329]: fix: correct handling of arrays of custom types in Postgres [[@​abonander]]
    • Potential breaking change: PgTypeInfo::with_name() infers types that start with _ to be arrays of the un-prefixed type. Wrap type names in quotes to bypass this behavior.
  • [#3356]: breaking: fix name collision in FromRow, return Error::ColumnDecode for TryFrom errors [[@​abonander]]
    • Breaking behavior change: errors with #[sqlx(try_from = "T")] now return Error::ColumnDecode instead of Error::ColumnNotFound.
    • Breaking because #[sqlx(default)] on an individual field or the struct itself would have previously suppressed the error. This doesn't seem like good behavior as it could result in some potentially very difficult bugs.
      • Instead, create a wrapper implementing From and apply the default explicitly.
  • [#3337]: allow rename with rename_all (close #2896) [[@​DirectorX]]
    • Changes the precedence of #[sqlx(rename)] and #[sqlx(rename_all)] to match the expected behavior (rename wins).
  • [#3285]: fix: use correct names for sslmode options [[@​lily-mosquitoes]]
    • Changes the output of ConnectOptions::to_url_lossy() to match what parsing expects.

Added

... (truncated)

Commits
  • da0ffd7 chore: bump version to 0.8.0
  • 9e1aa74 chore: prepare changelog entry for 0.8.0
  • c90a7ff fix: enable clock and std features of chrono for the workspace
  • c50572e fix: sqlite update_hook char types (#3288)
  • 940d9fb Add example on how to use Transaction as Executor (#3311)
  • eaad7b2 doc: Minor rust docs fixes (#3312)
  • 4fc5b30 breaking: fix name collision in FromRow, return Error::ColumnDecode for `...
  • b37b34b chore:added a testcase for sqlx migrate add ... (#3352)
  • 543395d fix: build script new line at eof (#3353)
  • 4683cc3 Add support for PostgreSQL HSTORE data type (#3343)
  • Additional commits viewable in compare view


Updates tokio from 1.38.1 to 1.39.2

Release notes

Sourced from tokio's releases.

Tokio v1.39.2

1.39.2 (July 27th, 2024)

This release fixes a regression where the select! macro stopped accepting expressions that make use of temporary lifetime extension. (#6722)

#6722: tokio-rs/tokio#6722

Tokio v1.39.1

1.39.1 (July 23rd, 2024)

This release reverts "time: avoid traversing entries in the time wheel twice" because it contains a bug. (#6715)

#6715: tokio-rs/tokio#6715

Tokio v1.39.0

1.39.0 (July 23rd, 2024)

  • This release bumps the MSRV to 1.70. (#6645)
  • This release upgrades to mio v1. (#6635)
  • This release upgrades to windows-sys v0.52 (#6154)

Added

  • io: implement AsyncSeek for Empty (#6663)
  • metrics: stabilize num_alive_tasks (#6619, #6667)
  • process: add Command::as_std_mut (#6608)
  • sync: add watch::Sender::same_channel (#6637)
  • sync: add {Receiver,UnboundedReceiver}::{sender_strong_count,sender_weak_count} (#6661)
  • sync: implement Default for watch::Sender (#6626)
  • task: implement Clone for AbortHandle (#6621)
  • task: stabilize consume_budget (#6622)

Changed

  • io: improve panic message of ReadBuf::put_slice() (#6629)
  • io: read during write in copy_bidirectional and copy (#6532)
  • runtime: replace num_cpus with available_parallelism (#6709)
  • task: avoid stack overflow when passing large future to block_on (#6692)
  • time: avoid traversing entries in the time wheel twice (#6584)
  • time: support IntoFuture with timeout (#6666)
  • macros: support IntoFuture with join! and select! (#6710)

Fixed

  • docs: fix docsrs builds with the fs feature enabled (#6585)
  • io: only use short-read optimization on known-to-be-compatible platforms (#6668)
  • time: fix overflow panic when using large durations with Interval (#6612)

Added (unstable)

... (truncated)

Commits


Updates event-listener from 2.5.3 to 5.3.1

Release notes

Sourced from event-listener's releases.

v5.3.1

  • Disable some optimizations that, in rare conditions, can cause race conditions causing notifications to be dropped. (#139)
  • Ensure the portable-atomic feature is set properly. (#134)
  • Update portable-atomic-util to v0.2.0. (#132)
  • Document the std feature. (#134)

v5.3.0

  • Add a loom implementation. This feature is unstable and is not semver-supported. (#126)
  • Make the panic message for polling the EventListener after it has completed more clear. (#125)

v5.2.0

  • Make StackSlot Sync. (#121)

v5.1.0

  • Make StackSlot Send. (#119)

v5.0.0

  • Breaking: Rework the API to afford better usage. (#105)
    • The heap-based API of the v2.x line is back.
    • However, there is a stack-based API as an alternative.
  • Add a way to get the total number of listeners. (#114)

v4.0.3

  • Relax MSRV to 1.60. (#110)

v4.0.2

  • Avoid spinning in wait_deadline. (#107)

v4.0.1

  • Fix a use-after-move error after an EventListener is assigned to listen to another Event. (#101)

v4.0.0

  • Breaking: Fix a footgun in the EventListener type. EventListener::new() now no longer takes an &Event as an argument, and EventListener::listen() takes the &Event as an argument. Hopefully this should prevent .awaiting on a listener without making sure it's listening first. (#94)

v3.1.0

  • Implement UnwindSafe and RefUnwindSafe for EventListener. This was unintentionally removed in version 3 (#96).

v3.0.1

  • Emphasize that listen() must be called on EventListener in documentation. (#90)
  • Write useful output in fmt::Debug implementations. (#86)

v3.0.0

  • Use the parking crate instead of threading APIs (#27)
  • Bump MSRV to 1.59 (#71)
  • Breaking: Make this crate no_std-compatible on default-features = false. (#34)

... (truncated)

Changelog

Sourced from event-listener's changelog.

Version 5.3.1

  • Disable some optimizations that, in rare conditions, can cause race conditions causing notifications to be dropped. (#139)
  • Ensure the portable-atomic feature is set properly. (#134)
  • Update portable-atomic-util to v0.2.0. (#132)
  • Document the std feature. (#134)

Version 5.3.0

  • Add a loom implementation. This feature is unstable and is not semver-supported. (#126)
  • Make the panic message for polling the EventListener after it has completed more clear. (#125)

Version 5.2.0

  • Make StackSlot Sync. (#121)

Version 5.1.0

  • Make StackSlot Send. (#119)

Version 5.0.0

  • Breaking: Rework the API to afford better usage. (#105)
    • The heap-based API of the v2.x line is back.
    • However, there is a stack-based API as an alternative.
  • Add a way to get the total number of listeners. (#114)

Version 4.0.3

  • Relax MSRV to 1.60. (#110)

Version 4.0.2

  • Avoid spinning in wait_deadline. (#107)

Version 4.0.1

  • Fix a use-after-move error after an EventListener is assigned to listen to another Event. (#101)

Version 4.0.0

  • Breaking: Fix a footgun in the EventListener type. EventListener::new() now no longer takes an &Event as an argument, and EventListener::listen() takes the &Event as an argument. Hopefully this should prevent .awaiting on a listener without making sure it's listening first. (#94)

Version 3.1.0

... (truncated)

Commits
  • f66fb8c v5.3.1
  • 5445f25 Document std feature and fix portable-atomic feature (#134)
  • 89c9f95 Update portable-atomic-util requirement from 0.1.4 to 0.2.0
  • 85e3474 bugfix: Disable early-out notify optimization
  • fdbe437 bugfix: Use loom's thread_local when loom is enabled
  • cd159e6 m: Use Cargo.toml lint fix instead of build.rs
  • eb54e95 m: Fix new nightly Clippy warnings
  • 2493d3c ci: Also add MIRI tests
  • c56420d ci: Add CI tests for dependent crates
  • db5857b v5.3.0
  • Additional commits viewable in compare view


Updates hashlink from 0.8.4 to 0.9.1

Release notes

Sourced from hashlink's releases.

v0.9.1

  • Bugfix: LruCache::contains_key should take &self and not move the entry as though it is accessed.
  • Add basic CursorMut API to HashMap (thanks @​olebedev!)
  • Bump hashbrown dependency to depend on a version of hashbrown past a downstream zerocopy dependency.
  • Don't depend on default features of hashbrown, removes allocator-api2 dependency.

v0.9.0

API incompatible change: Don't panic in reserve and try_reserve in cases where a rehash is needed. Previously would panic, adds the proper bounds on reserve methods to do a rehash (previously bounds were missing, and reserve would result in panics). (Thank you @​cuviper)

Changelog

Sourced from hashlink's changelog.

[0.9.1]

  • Bugfix: LruCache::contains_key should take &self and not move the entry as though it is accessed.
  • Add basic CursorMut API to HashMap (thanks @​olebedev!)
  • Bump hashbrown dependency to depend on a version of hashbrown past a downstream zerocopy dependency.
  • Don't depend on default features of hashbrown, removes allocator-api2 dependency.

[0.9.0]

  • API incompatible change: Don't panic in reserve and try_reserve in cases where a rehash is needed. Previously would panic, adds the proper bounds on reserve methods to do a rehash (previously bounds were missing, and reserve would result in panics). (Thank you @​cuviper!)
Commits
  • 006dc69 prepare for 0.9.1 release
  • 039c9b5 move CursorMut declaration closer to impl
  • c6097a7 Merge pull request #28 from ErichDonGubler/no-allocator-api2
  • bf20dc2 build: remove unnecessary allocator-api2 dep.
  • 24b87fe Merge pull request #25 from olebedev/oleg/add-cursors
  • 83c137e make LruCache::contains_key take &self, not move entry, fixes #27
  • f4b9a7f address nitpicks
  • a520781 handle the corner-case when inserting before itself
  • 6bcf27c remove unnecessary closures
  • db0b224 attach node before insert
  • Additional commits viewable in compare view


Updates heck from 0.4.1 to 0.5.0

Changelog

Sourced from heck's changelog.

0.5.0

  • Add no_std support.
  • Remove non-additive unicode feature. The library now uses char::is_alphanumeric instead of the unicode-segmentation library to determine word boundaries in all cases.
Commits


Updates libsqlite3-sys from 0.27.0 to 0.28.0

Release notes

Sourced from libsqlite3-sys's releases.

0.28.0

What's Changed

  • Update bundled SQLcipher to v4.5.1 (equivalent to SQLite 3.37.2) #1131
  • Implement Params for tuples, improve documentation some. #1133
  • Force use of buildtime_bindgen under winsqlite3 for now #1135
  • Add some missing wrappers #1139
  • Upgrade SQLite bundled version to 3.39.0 #1200
  • Disable winsqlite3 on 32 bit targets #1151
  • Fix non-bundled tests against macOS system SQLite #1153
  • Expose sqlite3_changes (or sqlite3_changes64 if available) #1152
  • Improve the docs for opening the connection a bit #1155
  • Small doc grammar fix #1156
  • Add support to updatable virtual tables #1141
  • Add Error methods to get SQLite error values by #1158
  • Add Connection::release_memory method #1164
  • derive Eq for Type #1165
  • Upgrade uuid dependency #1167
  • Params for 28-length arrays #1169
  • Introduce SqlInputError with offset #1137
  • Derive Debug for Savepoint #1179
  • document winsqlite3 #1109
  • Fix typo in libsqlite flags variable #1115
  • Upgrade bindgen to version 0.60 #1196

Full Changelog: https://github.com/rusqlite/rusqlite/compare/v0.27.0...v0.28.0

libsqlite3-sys 0.28.0

  • Improve wasm32-wasi support #1332
  • Drop winsqlite3 feature #1433
  • Bump bundled SQLite version to 3.45.0 #1438
  • Expose the include directory of the bundled sqlite version #1441
Commits


Updates mio from 0.8.11 to 1.0.1

Changelog

Sourced from mio's changelog.

1.0.1

1.0

With v1 Mio is able to bump its MSRV to 1.70, allowing us to implement I/O safety traits (rust-lang/rust#87074) and replace SocketAddr with the version found in the standard library.

Added

Removed

  • The SocketAddr type is removed in favour of std::os::unix::net::SocketAddr (tokio-rs/mio#1760). All methods on Mio's version should exist on the version in the standard library.

Changes

  • MSRV was updated to 1.74, updating to Rust edition edition (tokio-rs/mio#1733).
  • UnixDatagram::{local_addr,peer_addr,bind_addr,recv_from}, UnixListener::{local_addr,bind_addr,accept} and UnixStream::{local_addr,peer_addr,connect_addr} return and/or use

... (truncated)

Commits


Updates object from 0.36.1 to 0.36.2

Changelog

Sourced from object's changelog.

0.36.2

Released 2024/07/24.

Changed

  • Improved writing of GNU symbol versioning in build::elf::Builder. #705

  • Fixed alignment of SHT_HASH/SHT_GNU_verdef/SHT_GNU_verneed sections in write::elf::Writer. #706

  • Fixed writing of GNU hash for absolute symbols in build::elf::Builder. #707

  • Fixed writing of empty ELF string table in write::Object. #710


Commits


Updates rustls from 0.23.11 to 0.23.12

Commits
  • ebda385 Update version to 0.23.12
  • 127a0a7 build(deps): bump openssl from 0.10.64 to 0.10.66
  • 3cc2c2d Support P521 SHA-256/SHA-384 signatures with aws-lc-rs (#2050)
  • e58aaa8 ci: add rebaseWhen to renovate config
  • dfc8ae5 ci: remove stabilityDays from renovate config
  • 49c31cb chore(deps): lock file maintenance
  • 63eecac chore(deps): update rust crate tikv-jemallocator to 0.6
  • See full diff in compare view


Updates serde_spanned from 0.6.6 to 0.6.7

Commits
  • 4ac61f7 chore: Release
  • a5eb1ac chore: Disable serde_toml releasing for now
  • 9217e44 chore: Release
  • 003ce94 docs: Update changelog
  • b463f3d Merge pull request #757 from epage/key
  • 3d8852b fix(encode): Be extra sure it can be a literal
  • e1bc1c3 refactor(encode): Pull out literal inference
  • fbb0ac2 test(encode): Add property-based tests for keys/strings
  • 0b268f2 fix(encode): Correct encoding for key with mixed quotes
  • 82c0195 refactor(encode): Make str repr inferring clearer
  • Additional commits viewable in compare view


Updates sqlx-core from 0.7.4 to 0.8.0

Changelog

Sourced from sqlx-core's changelog.

0.8.0 - 2024-07-22

70 pull requests were merged this release cycle.

#2697 was merged the same day as release 0.7.4 and so was missed by the automatic CHANGELOG generation.

Breaking

  • [#2697]: fix(macros): only enable chrono when time is disabled [[@​saiintbrisson]]
  • [#2973]: Generic Associated Types in Database, replacing HasValueRef, HasArguments, HasStatement [[@​nitn3lav]]
  • [#2482]: chore: bump syn to 2.0 [[@​saiintbrisson]]
    • Deprecated type ascription syntax in the query macros was removed.
  • [#2736]: Fix describe on PostgreSQL views with rules [[@​tsing]]
    • Potentially breaking: nullability inference changes for Postgres.
  • [#2869]: Implement PgHasArrayType for all references [[@​tylerhawkes]]
    • Conflicts with existing manual implementations.
  • [#2940]: fix: Decode and Encode derives (#1031) [[@​benluelo]]
    • Changes lifetime obligations for field types.
  • [#3064]: Sqlite explain graph [[@​tyrelr]]
    • Potentially breaking: nullability inference changes for SQLite.
  • [#3123]: Reorder attrs in sqlx::test macro [[@​bobozaur]]
    • Potentially breaking: attributes on #[sqlx::test] usages are applied in the correct order now.
  • [#3126]: Make Encode return a result [[@​FSMaxB]]
  • [#3130]: Add version information for failed cli migration (#3129) [[@​FlakM]]
    • Breaking changes to MigrateError.
  • [#3181]: feat: no tx migration [[@​cleverjam]]
    • (Postgres only) migrations that should not run in a transaction can be flagged by adding -- no-transaction to the beginning.
    • Breaking change: added field to Migration
  • [#3184]: [BREAKING} fix(sqlite): always use i64 as intermediate when decoding [[@​abonander]]
    • integer decoding will now loudly error on overflow instead of silently truncating.
    • some usages of the query!() macros might change an i32 to an i64.
  • [#3252]: fix #[derive(sqlx::Type)] in Postgres [[@​abonander]]
    • Manual implementations of PgHasArrayType for enums will conflict with the generated one. Delete the manual impl or add #[sqlx(no_pg_array)] where conflicts occur.
    • Type equality for PgTypeInfo is now schema-aware.
  • [#3329]: fix: correct handling of arrays of custom types in Postgres [[@​abonander]]
    • Potential breaking change: PgTypeInfo::with_name() infers types that start with _ to be arrays of the un-prefixed type. Wrap type names in quotes to bypass this behavior.
  • [#3356]: breaking: fix name collision in FromRow, return Error::ColumnDecode for TryFrom errors [[@​abonander]]
    • Breaking behavior change: errors with #[sqlx(try_from = "T")] now return Error::ColumnDecode instead of Error::ColumnNotFound.
    • Breaking because #[sqlx(default)] on an individual field or the struct itself would have previously suppressed the error. This doesn't seem like good behavior as it could result in some potentially very difficult bugs.
      • Instead, create a wrapper implementing From and apply the default explicitly.
  • [#3337]: allow rename with rename_all (close #2896) [[@​DirectorX]]
    • Changes the precedence of #[sqlx(rename)] and #[sqlx(rename_all)] to match the expected behavior (rename wins).
  • [#3285]: fix: use correct names for sslmode options [[@​lily-mosquitoes]]
    • Changes the output of ConnectOptions::to_url_lossy() to match what parsing expects.

Added

... (truncated)

Commits
  • da0ffd7 chore: bump version to 0.8.0
  • 9e1aa74 chore: prepare changelog entry for 0.8.0
  • c90a7ff fix: enable clock and std features of chrono for the workspace
  • c50572e fix: sqlite update_hook char types (#3288)
  • 940d9fb Add example on how to use Transaction as Executor (#3311)
  • eaad7b2 doc: Minor rust docs fixes (#3312)
  • 4fc5b30 breaking: fix name collision in FromRow, return Error::ColumnDecode for `...
  • b37b34b chore:added a testcase for sqlx migrate add ... (#3352)
  • 543395d fix: build script new line at eof (#3353)
  • 4683cc3 Add support for PostgreSQL HSTORE data type (#3343)
  • Additional commits viewable in compare view


Updates sqlx-macros from 0.7.4 to 0.8.0

Changelog

Sourced from sqlx-macros's changelog.

0.8.0 - 2024-07-22

70 pull requests were merged this release cycle.

#2697 was merged the same day as release 0.7.4 and so was missed by the automatic CHANGELOG generation.

Breaking

  • [#2697]: fix(macros): only enable chrono when time is disabled [[@​saiintbrisson]]
  • [#2973]: Generic Associated Types in Database, replacing HasValueRef, HasArguments, HasStatement [[@​nitn3lav]]
  • [#2482]: chore: bump syn to 2.0 [[@​saiintbrisson]]
    • Deprecated type ascription syntax in the query macros was removed.
  • [#2736]: Fix describe on PostgreSQL views with rules [[@​tsing]]
    • Potentially breaking: nullability inference changes for Postgres.
  • [#2869]: Implement PgHasArrayType for all references [[@​tylerhawkes]]
    • Conflicts with existing manual implementations.
  • [#2940]: fix: Decode and Encode derives (#1031) [[@​benluelo]]
    • Changes lifetime obligations for field types.
  • [#3064]: Sqlite explain graph [[@​tyrelr]]
    • Potentially breaking: nullability inference changes for SQLite.
  • [#3123]: Reorder attrs in sqlx::test macro [[@​bobozaur]]
    • Potentially breaking: attributes on #[sqlx::test] usages are applied in the correct order now.
  • [#3126]: Make Encode return a result [[@​FSMaxB]]
  • [#3130]: Add version information for failed cli migration (#3129) [[@​FlakM]]
    • Breaking changes to MigrateError.
  • [#3181]: feat: no tx migration [[@​cleverjam]]
    • (Postgres only) migrations that should not run in a transaction can be flagged by adding -- no-transaction to the beginning.
    • Breaking change: added field to Migration
  • [#3184]: [BREAKING} fix(sqlite): always use i64 as intermediate when decoding [[@​abonander]]
    • integer decoding will now loudly error on overflow instead of silently truncating.
    • some usages of the query!() macros might change an i32 to an i64.
  • [#3252]: fix #[derive(sqlx::Type)] in Postgres [[@​abonander]]
    • Manual implementations of PgHasArrayType for enums will conflict with the generated one. Delete the manual impl or add #[sqlx(no_pg_array)] where conflicts occur.
    • Type equality for PgTypeInfo is now schema-aware.
  • [#3329]: fix: correct handling of arrays of custom types in Postgres [[@​abonander]]
    • Potential breaking change: PgTypeInfo::with_name() infers types that start with _ to be arrays of the un-prefixed type. Wrap type names in quotes to bypass this behavior.
  • [#3356]: breaking: fix name collision in FromRow, return Error::ColumnDecode for TryFrom errors [[@​abonander]]
    • Breaking behavior change: errors with #[sqlx(try_from = "T")] now return Error::ColumnDecode instead of Error::ColumnNotFound.
    • Breaking because #[sqlx(default)] on an individual field or the struct itself would have previously suppressed the error. This doesn't seem like good behavior as it could result in some potentially very difficult bugs.
      • Instead, create a wrapper implementing From and apply the default explicitly.
  • [#3337]: allow rename with rename_all (close #2896) [[
    stadust commented 3 months ago

    that sqlx update worries me, but tests pass, so...