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
Copy file name to clipboardExpand all lines: CHANGELOG.md
+26-6Lines changed: 26 additions & 6 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -10,6 +10,25 @@ Increasing the minimal supported Rust version will always be coupled at least wi
10
10
11
11
## Unreleased
12
12
13
+
## [2.1.1] 2023-08-xx
14
+
15
+
## Fixed
16
+
17
+
* Fixed an issue in diesel-cli that lead to using unquoted table names in one of the internal queries
18
+
* Fixed a bug in `diesel print-schema` that lead to generating invalid `table!` macros if both the `#[sql_name]` and the `#[max_lenght]` attribute are present
19
+
* Fixed an issue in diesel-cli that lead to ignoring certain foreign key constraints for postgresql
20
+
* Fixed an crash while using `diesel print-schema` with really old sqlite versions
21
+
* Fixed an issue where `#[diesel(check_for_backend)]` ignored `#[diesel(deserialize_as)]` attributes
22
+
* Fixed several issues with the new `#[derive(MultiConnection)]` feature
23
+
* Fixed some edge cases in our sqlite timestamp parsing behaviour
24
+
*`diesel migration generate --diff-schema` now respects table filters as setup for `print-schema` via `diesel.toml`
25
+
* Fixed a potential breaking change around queries containing `DISTINCT ON` and `ORDER BY` clauses consisting of custom sql expressions (e.g. `diesel::dsl::sql`)
26
+
27
+
## Added
28
+
29
+
* Support for bigdecimal 0.4
30
+
31
+
13
32
## [2.1.0] 2023-05-26
14
33
15
34
### Changed
@@ -2018,10 +2037,11 @@ queries or set `PIPES_AS_CONCAT` manually.
0 commit comments