Skip to content
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

Update Rust crate libsqlite3-sys to ^0.30.0 #65

Open
wants to merge 1 commit into
base: main
Choose a base branch
from

Conversation

renovate[bot]
Copy link
Contributor

@renovate renovate bot commented Mar 26, 2023

This PR contains the following updates:

Package Type Update Change
libsqlite3-sys workspace.dependencies minor ^0.25.2 -> ^0.30.0

Release Notes

rusqlite/rusqlite (libsqlite3-sys)

v0.30.0: 0.30.0

Compare Source

What's Changed

  • Fix sqlite3_auto_extension xEntryPoint signature #​1310
  • Use track_caller for panicking methods #​1314
  • Force linking against system sqlite libs #​1317
  • fix compilation for target wasm32-wasi #​1321
  • Add SQLITE_MAX_COLUMN compile-time option #​1324
  • Upgrade http links to https in Cargo.toml #​1330
  • Update fallible-iterator requirement from 0.2 to 0.3 #​1334
  • Implement FromSql & ToSql for std::num::NonZero types #​1313
  • Add new constants introduced by SQLite 3.42.0 #​1336
  • Use SQLITE_PREPARE_PERSISTENT for CachedStatement #​1339
  • Fix type of SQLITE_DESERIALIZE_, SQLITE_PREPARE_, SQLITE_SERIALIZE_* #​1340
  • Introduce to_sqlite_error #​1345
  • remove depth from Savepoint #​1327
  • Savepoint Drop bug #​1347
  • [breaking change] Update edition from 2018 to 2021 #​1267
  • Remove msrv for clippy by #​1351
  • Tweak bindgen #​1352, #​1353
  • Inline constraint_error_code #​1359
  • Simplify bindgen generation #​1360
  • Fixes generate_series to handle NULL arguments #​1357
  • Factorize code in build.rs #​1361
  • Serialize and deserialize database #​1341
  • Spelling and a few more nits #​1373
  • Implement support for more time types #​1374
  • Fix visibility of TransactionState #​1384
  • Column is used only with column_decltype feature #​1385
  • Use proper var names in trait definition #​1398
  • Fix clippy warning: arc_with_non_send_sync - interrupt_lock #​1400
  • Captured identifiers in SQL strings #​1346
  • Add new constants introduced by SQLite 3.43.0 #​1405
  • Make WindowAggregate::value pass mutable value ref #​1395
  • Bump bundled SQLite version to 3.44.0 #​1409
  • Bump bindgen version to 0.69 #​1410
  • Loadable extension #​1362

New Contributors

Full Changelog: rusqlite/rusqlite@v0.29.0...v0.30.0

v0.29.0: 0.29.0

Compare Source

What's Changed

New Contributors

Full Changelog: rusqlite/rusqlite@v0.28.0...v0.29.0

v0.28.0: 0.28.0

Compare Source

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: rusqlite/rusqlite@v0.27.0...v0.28.0

v0.27.0: 0.27.0

Compare Source

What's Changed

  • Fix documentation typo for rollback_hook #​1051
  • Remove lazy_static dependency for vtab #​1063
  • Sync series with official source by #​1064
  • Enable modern-full feature for docs.rs #​1066
  • Fix markdown rendering of Connection::transaction doc #​1067
  • Add ToSql/FromSql for [u8; N] #​1069
  • Upgrade bundled SQLCipher to 4.5.0 #​1073
  • Clean up unlock_notify code a bit #​1077
  • Use caching in our CI #​1078
  • Enable buildtime_bindgen tests on windows CI #​1090
  • Replace Gitter with Discord #​1079, #​1091
  • Use stable rust for doc checking in CI #​1092
  • Exclude some configuration files from package #​1093
  • Remove the SQLite version check #​1094
  • Move Limits enum from libsqlite3-sys into rusqlite #​1096
  • Uncomment config::DbConfig::SQLITE_DBCONFIG_RESET_DATABASE #​1113
  • Upgrade SQLite bundled version to 3.38.0 #​1124, #​1127

Full Changelog: rusqlite/rusqlite@v0.26.3...v0.27.0

v0.26.0: 0.26.0

Compare Source

Nice to have: make possible to remove authorizer hook

  • Add bundle-sqlcipher and bundle-ssl #​860
  • Breaking changes: Add support for authorizer hook #​946 / #​975
    Action is not visible from root anymore
  • Add a function to return the path of a Connection #​963 / #​962
  • Add a helper function for getting the byte data from a ValueRef, regardless of if its Text or Blob #​983
  • Make the empty placeholder params be Send + Sync #​1005
  • Use a generic ToSql param in pragma functions #​1009
  • Breaking changes: Implement AsRef<Statement> for Row(s) #​887
    Rows::column* and Row::column* removed now that you have access to underlying statement.
  • Fix FromSql impl for OffsetDateTime #​970
    • Upgrade time crate to version 0.3.0
  • Bump bundled sqlite3 version to 3.36.0 #​979
  • Allow static linking against the VC runtime #​1021
  • Breaking changes: Make load_extension unsafe #​1016
  • Add as_type_or_null to ValueRef #​1012
  • Correct pkg-config version #​960
  • Improve VTab API: Iterate on both index constraint and usage #​1001 / #​1006
  • Access to sqlite3_db_cacheflush via Connection #​984 / #​985
  • Retrieve error message from database connection handle #​988
  • Include the session FFI in the bundled bindings #​982
  • Use #[doc(cfg)] instead of manually indicating feature = "blah" in the comments #​835 / #​973
  • Use env::var instead of cfg in some cases in build.rs #​961
  • Add time back to modern-full feature #​969
  • Fix InnerConnection decode_result / changes #​974 / #​931
  • Upgrage bindgen to version 0.59 #​994

Configuration

📅 Schedule: Branch creation - At any time (no schedule defined), Automerge - At any time (no schedule defined).

🚦 Automerge: Disabled by config. Please merge this manually once you are satisfied.

Rebasing: Whenever PR becomes conflicted, or you tick the rebase/retry checkbox.

🔕 Ignore: Close this PR and you won't be reminded about this update again.


  • If you want to rebase/retry this PR, check this box

This PR was generated by Mend Renovate. View the repository job log.

@renovate renovate bot force-pushed the renovate/libsqlite3-sys-0.x branch from dd2ffbb to 8ac57f9 Compare April 11, 2023 21:39
@renovate renovate bot force-pushed the renovate/libsqlite3-sys-0.x branch from 8ac57f9 to c53546b Compare April 23, 2023 18:12
@renovate renovate bot force-pushed the renovate/libsqlite3-sys-0.x branch from c53546b to 7367bbc Compare June 29, 2023 12:37
@renovate renovate bot force-pushed the renovate/libsqlite3-sys-0.x branch from 7367bbc to c1ee47e Compare November 12, 2023 13:50
@renovate renovate bot changed the title Update Rust crate libsqlite3-sys to ^0.26.0 Update Rust crate libsqlite3-sys to ^0.27.0 Nov 12, 2023
@renovate renovate bot force-pushed the renovate/libsqlite3-sys-0.x branch from c1ee47e to 5358f6e Compare January 27, 2024 20:28
@renovate renovate bot changed the title Update Rust crate libsqlite3-sys to ^0.27.0 Update Rust crate libsqlite3-sys to ^0.28.0 Jan 27, 2024
@renovate renovate bot force-pushed the renovate/libsqlite3-sys-0.x branch from 5358f6e to 7c0138e Compare June 22, 2024 08:24
@renovate renovate bot changed the title Update Rust crate libsqlite3-sys to ^0.28.0 Update Rust crate libsqlite3-sys to ^0.29.0 Jun 22, 2024
@renovate renovate bot force-pushed the renovate/libsqlite3-sys-0.x branch from 7c0138e to ee5175c Compare July 21, 2024 14:14
@renovate renovate bot changed the title Update Rust crate libsqlite3-sys to ^0.29.0 Update Rust crate libsqlite3-sys to ^0.30.0 Jul 21, 2024
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

0 participants