-
-
Notifications
You must be signed in to change notification settings - Fork 413
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
Enable the use of PRAGMA Key to encrypt db #1018
Open
K3yr0nym0us
wants to merge
133
commits into
revert-982-linux-image-bump
Choose a base branch
from
master
base: revert-982-linux-image-bump
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
Open
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
* Move repetitive build commands into environment variables * Merge 'https://github.com/mceachen/better-sqlite3/tree/dry-gha-989' Co-authored-by: mceachen <[email protected]> --------- Co-authored-by: mceachen <[email protected]>
* Move repetitive build commands into environment variables (#989) * Move repetitive build commands into environment variables * Merge 'https://github.com/mceachen/better-sqlite3/tree/dry-gha-989' Co-authored-by: mceachen <[email protected]> --------- Co-authored-by: mceachen <[email protected]> * restore "env." prefixes to NODE_BUILD_CMD and ELECTRON_BUILD_CMD --------- Co-authored-by: mceachen <[email protected]> Co-authored-by: Matthew McEachen <[email protected]>
* Add support for Node v20 prebuilds * Also test v20
Remove node.js v14 builds and testing (runtime EOL)
* Fix out-of-bounds read in statement tail parser * Add comment with link to tail parsing issue * Fix missing increment in tail parser + tests
Co-authored-by: mceachen <[email protected]>
Prebuild for Node on other architectures as well
Run `ncu -u`
Fix buffer create in sandbox mode (electron)
Fix: Allow building with space in path
From the docs: > This option is obsolete. It used to enable some extra some extra > PRAGMA statements such as PRAGMA function_list, PRAGMA module_list, > and PRAGMA pragma_list, but those pragmas are now all enabled by > default. See SQLITE_OMIT_INTROSPECTION_PRAGMAS. It has been obsolete since 2019-10-04 (with SQLite 3.30.0).
* Added `webpack` support * changed from `webpack_require` to `non_webpack_require` * Update database.js Added URL to webpack documentation * feat(database): now `nativeBinding` supports addon object * style(package): line break removed --------- Co-authored-by: Matthew McEachen <[email protected]>
added HAVE_USLEEP=1 compile-time option
Co-authored-by: mceachen <[email protected]>
Co-authored-by: mceachen <[email protected]>
* add linux arm64 prebuilds for electron Signed-off-by: Svetoslav Borislavov <[email protected]> * Update .github/workflows/build.yml Co-authored-by: Pavel Borisov <[email protected]> --------- Signed-off-by: Svetoslav Borislavov <[email protected]> Co-authored-by: Pavel Borisov <[email protected]>
m10rten
approved these changes
Jan 2, 2025
@JoshuaWise We are currently searching for this feature in SQLite, would help us if this were to be available. |
Signed-off-by: Svetoslav Borislavov <[email protected]>
add Electron 34 to prebuild versions
Co-authored-by: mceachen <[email protected]>
…e version 3.48.0 added tests for SQLITE_ENABLE_UPDATE_DELETE_LIMIT
* Add note about statement finalization * PR comment
See: #1277 Co-authored-by: alxndrsn <alxndrsn>
"you might except..." => "you might expect".
The Node.js documentation states that `os.cpus()` should not be used to calculate the amount of threads an app should launch because CPU information might be unavailable. In Node.js v19.4.0 and v18.14.0, `os.availableParallelism()` was added for that purpose.
Co-authored-by: mceachen <[email protected]>
This fixes #1348 by building the artifacts on a base Linux image with glibc 2.31.
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.
Personally, I think that a Sqlite database that has so many features and improvements but that has no way to make it secure seems to me to be of little use, even so, I will use it with the hope that one day it will be able to encrypt its data.