-
-
Notifications
You must be signed in to change notification settings - Fork 1.1k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Backports for 2.1.1 #3755
Merged
Merged
Backports for 2.1.1 #3755
Conversation
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Enable `distinct_on` with `postgres_backend` instead of `postgres`
Correctly quote the table name in one of the `print-schema` queries
add test reproducing diesel-rs#3646
fix(diesel_cli): use separate lines for multiple annotations
Bump bigdecimal to 0.4
…_lint2 Fix a new lint on beta
Expose push_bind_param_value_only to backends
Suppress unused_import if no backend is enabled
Emit a better error message if a user writes a `table!` macro without
Fix diesel-rs#3579: Unexpected end of row when setup diesel
Update main README to have more consistent style
Expose more of the transaction manager
…tests Fix broken tests
time: sql_type for DateTimeProxy without backend
…th_multiconnection Fix nullable binds in the `#[derive(Multiconnection)]` implementation
…sing Fix sqlite timestamps
Tweak the creation of database connections in diesel_CLI
Fix/3717 filter table on `diesel migration --diff-schema`
…iconnection Add `Bool` type to MultiConnection
…n_with_custom_expressions Try to hack around a breaking change in diesel 2.1
Okfm |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
This contains backports of the following PR's:
distinct_on
withpostgres_backend
instead ofpostgres
#3657 (Enable.distinct_on
for thepostgres_backend
feature instead ofpostgres
feature)print-schema
queries #3676 (Better table name quoting in a infer_schema query indiesel print-schema
)diesel print-schema
to generating invalidtable!
macro calls for cases where both#[sql_name]
and#[max_lenght]
attributes appeared on a single column)bigdecimal
0.4, (keeps support for older versions))AstPass::push_bind_param_value_only
behind the unstable feature flag)table!
macro without #3708 (Some error message improvements for invalidtable!
macros around missing primary keys)diesel print-schema
and old sqlite versions)#[diesel(check_for_backend)]
honor#[diesel(deserialize_as)]
attributes#[derive(Multiconnection)]
implementation #3716 (FixToSql
implementation forNullable<>
types for multi backend connections)diesel migration --diff-schema
#3725 (Makediesel migration generate --diff-schema
honor ignore table settings)Bool
type to MultiConnection #3747 (Fix boolean types for multi connection implementations)DISTINCT ON
andORDER BY
clauses)@diesel-rs/core I plan to do the release in the next week if there are no objections.