fix(deps): update dependency better-sqlite3 to v7 - autoclosed #32
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 PR contains the following updates:
^4.1.0
->^7.0.0
Release Notes
WiseLibs/better-sqlite3
v7.5.3
Compare Source
Full Changelog: WiseLibs/better-sqlite3@v7.5.2...v7.5.3
v7.5.2
Compare Source
What's Changed
v18
prebuilds by @m4heshd in https://github.com/JoshuaWise/better-sqlite3/pull/800Full Changelog: WiseLibs/better-sqlite3@v7.5.1...v7.5.2
v7.5.1
Compare Source
What's Changed
v17
prebuilds by @m4heshd in https://github.com/JoshuaWise/better-sqlite3/pull/757armv7
andarm64
and other improvements by @m4heshd in https://github.com/JoshuaWise/better-sqlite3/pull/758b544892
Full Changelog: WiseLibs/better-sqlite3@v7.5.0...v7.5.1
v7.5.0
Compare Source
3.37.2
.busy
property to prepared StatementsnativeBinding
option to the Database constructorcode
property ofSqliteError
to be enumerableSqliteError
to the API documentationtar
dependencybetter-sqlite3
(by using afiles
list inpackage.json
)v7.4.6
Compare Source
What's Changed
3.37.0
New Contributors
Full Changelog: WiseLibs/better-sqlite3@v7.4.5...v7.4.6
v7.4.5
Compare Source
What's Changed
v16
prebuild support by @m4heshd in https://github.com/JoshuaWise/better-sqlite3/pull/726prebuild-install
tov7.0.0
by @m4heshd in https://github.com/JoshuaWise/better-sqlite3/pull/724New Contributors
Full Changelog: WiseLibs/better-sqlite3@v7.4.4...v7.4.5
v7.4.4
Compare Source
v7.4.3
Compare Source
Fixed https://github.com/JoshuaWise/better-sqlite3/issues/651
v7.4.2
Compare Source
3.36.0
SQLITE_ENABLE_MATH_FUNCTIONS
compile-time optionv7.4.1
Compare Source
v7.4.0
Compare Source
db.table()
method, which allows users to register virtual tables.v7.3.1
Compare Source
v7.3.0
Compare Source
db.serialize()
method.db.serialize()
can be opened as in-memory databases by passing them tonew Database(buffer)
.stmt.readonly
property.directOnly
option to user-defined functions and aggregates.v7.2.0
Compare Source
RETURNING
clause.run()
if no query results are desiredv7.1.5
Compare Source
class MyClass extends Database {}
)v7.1.4
Compare Source
v7.1.2
Compare Source
v7.1.1
Compare Source
v7.1.0
Compare Source
Updated SQLite to version 3.32.0.
v7.0.1
Compare Source
v7.0.0
Compare Source
Breaking changes
Integer
library with nativeBigInts
db.checkpoint()
method in favor ofdb.pragma('wal_checkpoint(RESTART)')
":memory:"
filename conventionNon-breaking changes
FATAL ERROR: v8::ToLocalChecked Empty MaybeLocal
FATAL ERROR: v8::Object::GetAlignedPointerFromInternalField()
Error: Cannot find module '...\node_modules\integer\node
db.loadExtension()
which allows users to specify the entry point of the extensionSQLITE_DBCONFIG_DEFENSIVE
which allows users to corrupt their database file and execute undefined behaviorv6.0.1
Compare Source
v6.0.0
Compare Source
Breaking changes
SQLITE_LIKE_DOESNT_MATCH_BLOBS
.SQLITE_DQS=0
.Non-breaking changes
prebuild
whenever a new release tag is made in github, via a travis CI workflow. As you can see in the travis config file,prebuild
currently builds binaries for Node 8, 10, and 12, and Electron 2, 3, 4, 5, 6, and 7. Non-LTS node versions are not supported, but compilingbetter-sqlite3
from source should still work fine for those versions, as it always had. Prebuilt binaries are only made for Linux and Mac OSX, not Windows (but again, building from source should work fine on Windows too).v5.4.3
Compare Source
v5.4.2
Compare Source
v5.4.1
Compare Source
v5.4.0
Compare Source
SQLITE_OMIT_TRACE
compilation option.SQLITE_TRACE_SIZE_LIMIT=32
compilation option.v5.3.0
Compare Source
v5.2.1
Compare Source
v5.2.0
Compare Source
Statement#raw()
andStatement#columns()
methods.SQLITE_DBCONFIG_DEFENSIVE
.v5.0.1
Compare Source
v5.0.0
Compare Source
This major version provides powerful new features, bug fixes, improved performance, and much much more.
Breaking changes
info.lastInsertROWID
toinfo.lastInsertRowid
(docs).stmt.returnsData
tostmt.reader
(docs).db.pragma()
method now accepts{ simple: true }
instead of atrue
boolean (docs).db.transaction()
method:db.transaction()
method now takes a function and returns a function (a wrapper).db.register()
method, added thedb.function()
anddb.aggregate()
methods:db.function()
method is used to register regular user-defined functions.db.aggregate()
method is used to register user-defined aggregate functions.db.register()
method. Read the new documentation here and here, respectively.db.aggregate()
method can also register window functions.SQLITE_ENABLE_FTS3_PARENTHESIS
compilation option (more info).memory
andreadonly
options are now mutually exclusive (docs).Non-breaking new features
SQLITE_ENABLE_STAT4
(more info)SQLITE_INTROSPECTION_PRAGMAS
(more info)SQLITE_SOUNDEX
(more info)SQLITE_ENABLE_UPDATE_DELETE_LIMIT
(more info)better-sqlite3
against their own customized version of SQLite3:process.exit()
,SIGINT
, etc.).timeout
option when opening a database (docs).":memory:"
filename (more info).stmt.expand()
method, which namespaces result columns by table name (docs).Bug fixes and other minor improvements
v8::ToLocalChecked Empty
.db.inTransaction
to betrue
when the database was closed.v4.2.0
Compare Source
This is (probably) the last release of
v4.x.x
. Any documentation needed for this version can be found here. If possible, users should upgrade to version5.0.0
.v4.1.4
Compare Source
v4.1.3
Compare Source
v4.1.2
Compare Source
v4.1.1
Compare Source
A bug was fixed that was making it difficult for many Windows users to install the package.
Configuration
📅 Schedule: "every 2 weeks on Monday before 7am" in timezone Europe/Berlin.
🚦 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.
This PR has been generated by WhiteSource Renovate. View repository job log here.