You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
*[[#2482]]: chore: bump syn to 2.0 [[@saiintbrisson]]
15
+
* Deprecated type ascription syntax in the query macros was removed.
16
+
*[[#2736]]: Fix describe on PostgreSQL views with rules [[@tsing]]
17
+
* Potentially breaking: nullability inference changes for Postgres.
18
+
*[[#2869]]: Implement PgHasArrayType for all references [[@tylerhawkes]]
19
+
* Conflicts with existing manual implementations.
20
+
*[[#2940]]: fix: Decode and Encode derives (#1031) [[@benluelo]]
21
+
* Changes lifetime obligations for field types.
22
+
*[[#3064]]: Sqlite explain graph [[@tyrelr]]
23
+
* Potentially breaking: nullability inference changes for SQLite.
24
+
*[[#3123]]: Reorder attrs in sqlx::test macro [[@bobozaur]]
25
+
* Potentially breaking: attributes on `#[sqlx::test]` usages are applied in the correct order now.
26
+
*[[#3126]]: Make Encode return a result [[@FSMaxB]]
27
+
*[[#3130]]: Add version information for failed cli migration (#3129) [[@FlakM]]
28
+
* Breaking changes to `MigrateError`.
29
+
*[[#3181]]: feat: no tx migration [[@cleverjam]]
30
+
* (Postgres only) migrations that should not run in a transaction can be flagged by adding `-- no-transaction` to the beginning.
31
+
* Breaking change: added field to `Migration`
32
+
*[[#3184]]: [BREAKING} fix(sqlite): always use `i64` as intermediate when decoding [[@abonander]]
33
+
* integer decoding will now loudly error on overflow instead of silently truncating.
34
+
* some usages of the query!() macros might change an i32 to an i64.
35
+
*[[#3252]]: fix `#[derive(sqlx::Type)]` in Postgres [[@abonander]]
36
+
* 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.
37
+
* Type equality for PgTypeInfo is now schema-aware.
38
+
*[[#3329]]: fix: correct handling of arrays of custom types in Postgres [[@abonander]]
39
+
* 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.
40
+
*[[#3356]]: breaking: fix name collision in `FromRow`, return `Error::ColumnDecode` for `TryFrom` errors [[@abonander]]
41
+
* Breaking behavior change: errors with `#[sqlx(try_from = "T")]` now return `Error::ColumnDecode` instead of `Error::ColumnNotFound`.
42
+
* Breaking because `#[sqlx(default)]` on an individual field or the struct itself would have previously suppressed the error.
43
+
This doesn't seem like good behavior as it could result in some potentially very difficult bugs.
44
+
* Instead, create a wrapper implementing `From` and apply the default explicitly.
45
+
*[[#3337]]: allow rename with rename_all (close #2896) [[@DirectorX]]
46
+
* Changes the precedence of `#[sqlx(rename)]` and `#[sqlx(rename_all)]` to match the expected behavior (`rename` wins).
47
+
*[[#3285]]: fix: use correct names for sslmode options [[@lily-mosquitoes]]
48
+
* Changes the output of `ConnectOptions::to_url_lossy()` to match what parsing expects.
49
+
50
+
### Added
51
+
*[[#2917]]: Add Debug impl for PgRow [[@g-bartoszek]]
52
+
*[[#3113]]: feat: new derive feature flag [[@saiintbrisson]]
53
+
*[[#3154]]: feat: add `MySqlTime`, audit `mysql::types` for panics [[@abonander]]
54
+
*[[#3188]]: feat(cube): support postgres cube [[@jayy-lmao]]
55
+
*[[#3244]]: feat: support `NonZero*` scalar types [[@AlphaKeks]]
56
+
*[[#3260]]: feat: Add set_update_hook on SqliteConnection [[@gridbox]]
57
+
*[[#3291]]: feat: support the Postgres Bool type for the Any driver [[@etorreborre]]
58
+
*[[#3293]]: Add LICENSE-* files to crates [[@LecrisUT]]
59
+
*[[#3303]]: add array support for NonZeroI* in postgres [[@JohannesIBK]]
60
+
*[[#3311]]: Add example on how to use Transaction as Executor [[@Lachstec]]
61
+
*[[#3343]]: Add support for PostgreSQL HSTORE data type [[@KobusEllis]]
62
+
63
+
### Changed
64
+
*[[#2652]]: MySQL: Remove collation compatibility check for strings [[@alu]]
65
+
*[[#2960]]: Removed `Send` trait bound from argument binding [[@bobozaur]]
66
+
*[[#2970]]: refactor: lift type mappings into driver crates [[@abonander]]
67
+
*[[#3148]]: Bump libsqlite3-sys to v0.28 [[@NfNitLoop]]
68
+
* Note: version bumps to `libsqlite3-sys` are not considered breaking changes as per our semver guarantees.
69
+
*[[#3265]]: perf: box `MySqlConnection` to reduce sizes of futures [[@stepantubanov]]
70
+
*[[#3352]]: chore:added a testcase for `sqlx migrate add ...`[[@CommanderStorm]]
71
+
*[[#3340]]: ci: Add job to check that sqlx builds with its declared minimum dependencies [[@iamjpotts]]
72
+
73
+
### Fixed
74
+
*[[#2702]]: Constrain cyclic associated types to themselves [[@BadBastion]]
75
+
*[[#2954]]: Fix several inter doc links [[@ralpha]]
76
+
*[[#3073]]: feat(logging): Log slow acquires from connection pool [[@iamjpotts]]
0 commit comments