-
-
Notifications
You must be signed in to change notification settings - Fork 12.4k
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
diesel 2.2.0 #173312
Closed
Closed
diesel 2.2.0 #173312
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
github-actions
bot
added
rust
Rust use is a significant feature of the PR or issue
bump-formula-pr
PR was created using `brew bump-formula-pr`
labels
May 31, 2024
|
chenrui333
force-pushed
the
bump-diesel-2.2.0
branch
3 times, most recently
from
June 2, 2024 14:56
b0e6950
to
6afa0e0
Compare
chenrui333
added
the
CI-no-fail-fast
Continue CI tests despite failing GitHub Actions matrix builds.
label
Jun 2, 2024
chenrui333
force-pushed
the
bump-diesel-2.2.0
branch
3 times, most recently
from
June 3, 2024 18:17
6d6c959
to
6287cb8
Compare
diesel: generate db bindings during build time Signed-off-by: Rui Chen <rui@chenrui.dev> diesel: update build Signed-off-by: Rui Chen <rui@chenrui.dev>
chenrui333
force-pushed
the
bump-diesel-2.2.0
branch
from
June 3, 2024 19:07
6287cb8
to
0b18037
Compare
This pull request has been automatically marked as stale because it has not had recent activity. It will be closed if no further activity occurs. To keep this pull request open, add a |
Sign up for free
to subscribe to this conversation on GitHub.
Already have an account?
Sign in.
Labels
build failure
CI fails while building the software
bump-formula-pr
PR was created using `brew bump-formula-pr`
CI-no-fail-fast
Continue CI tests despite failing GitHub Actions matrix builds.
outdated
PR was locked due to age
rust
Rust use is a significant feature of the PR or issue
stale
No recent activity
superseded
PR was replaced by another PR
upstream issue
An upstream issue report is needed
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.
Created by
brew bump
Created with
brew bump-formula-pr
.release notes
[print_schema] exclude_custom_type_definitions = ["Vector"]
. If acustom type
matches one element on the list it's skipped.rowid
aliases when no explicit primary key is defined forprint-schema
#[dsl::auto_type]
attribute macro, allowing to infer type of query fragment functionsSelectable
derives, which allows skipping specifyingselect_expression_type
most of the time, in turn enabling most queries to be written using just aSelectable
derive.#[diesel(skip_insertion)]
field attribute to theInsertable
derive macro, allowing fields which map to generated columns to be skipped during insertion.sqlite-integer-primary-key-is-bigint
configuration option, usable with SQLite 3.37 or above, allowing to useBigInt
forINTEGER PRIMARY KEY
columns in SQLite for tables without theWITHOUT ROWID
attribute (SQLite doc).print_schema
entry indiesel.toml
(e.g.[print_schema.user1]
), which allows generating multiple schema.rs filesCOPY TO
andCOPY FROM
statementschrono::Duration
to postgresql'sINTERVAL
sql typeserialize_database_to_buffer
anddeserialize_readonly_database_from_buffer
methods inSqliteConnection
to support serialization/deserialization of SQLite databases to and from byte buffers.SerializedDatabase
wrapper type for a serialized database that is dynamically allocated by callingserialize_database_to_buffer
. This RAII wrapper deallocates the memory when it goes out of scope withsqlite3_free
.Changed
sql_function!
in favour ofdefine_sql_function!
which provides compatibility with#[dsl::auto_type]
New Contributors
distinct_on
withpostgres_backend
instead ofpostgres
diesel-rs/diesel#3657#[diesel(treat_none_as_{null, default_value} = …]
on fields diesel-rs/diesel#3724diesel migration --diff-schema
diesel-rs/diesel#3725Bool
type to MultiConnection diesel-rs/diesel#3747Clone
to the default value of custom_type_derives in diesel.toml diesel-rs/diesel#3888ToSql
diesel-rs/diesel#3956Selectable
docs diesel-rs/diesel#3751bin/test
script diesel-rs/diesel#3982.optional()
, convert aQueryBuilderError
intoNone
diesel-rs/diesel#4019derive_from_sql_row()
docs diesel-rs/diesel#4015chrono::Duration
diesel-rs/diesel#4037Full Changelog: diesel-rs/diesel@v2.1.0...v2.2.0