-
Notifications
You must be signed in to change notification settings - Fork 153
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
Link to third-party storage adapters #32
Merged
Merged
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
1 similar comment
caseyWebb
pushed a commit
to caseyWebb/keyv
that referenced
this pull request
Oct 10, 2019
jaredwray
pushed a commit
that referenced
this pull request
Nov 21, 2021
jaredwray
added a commit
that referenced
this pull request
Nov 21, 2021
* Initial commit * docs(readme): add Greenkeeper badge * Setup entry schema * Use key as primary key * Ensure keys are unique and indexable * Disable timestamps * Add get/set/delete methods * Add clear method * Wait for connection before running queries * Return Boolean for delete method * clear method always resolves to undefined * get method returns undefined on nonexistent keys * Disable logging by default * 0.1.0 * Make invalid connection string more clear * Explicitly use memory for tests * KeyvSQLite => KeyvSqlite * Respect table name * Don't run tests in memory * Accept connection string as contructor argument * Make sure clear only clears current namespace * 0.2.0 * Remove Greenkeeper badge * Test options have expected defaults * Extract sequelize logic into subclass * Remove old test * Update keywords * Remove redundant type casting * 0.3.0 * Logging and table are set by default in keyv-sequelize * fix(package): update keyv-sequelize to version 0.1.0 (#3) * Use keyv-sql instead of keyv-sequelize (#5) * 1.0.0 * Pass busyTimeout option to SQLite * Use large busyTimeout with tests Stops 'SQLITE_BUSY: database is locked' errors from creating loads of connections * fix(package): update keyv-sql to version 0.2.0 (#6) * Pin dependency versions * Only accept opts object * 1.1.0 * fix(package): update keyv-sql to version 0.2.3 (#8) Closes #7 * Update to requirable * 1.2.0 * fix(package): update keyv-sql to version 0.2.4 (#9) * 1.2.1 * Finish docs * Also mention table option * fix(package): update keyv-sql to version 1.0.2 (#11) Closes #10 * 1.2.2 * fix(package): update sqlite3 to version 3.1.9 (#13) * 1.2.3 * Update keyv-sql to the latest version 🚀 (#14) * 1.2.4 * Scope to @keyv * 1.2.5 * Use scoped sql package * 1.2.6 * Update ava to the latest version 🚀 (#17) * fix(package): update @keyv/sql to version 1.0.6 (#18) * fix(package): update @keyv/sql to version 1.1.1 (#22) Closes #20 * 1.2.7 * Update @keyv/sql to the latest version 🚀 (#23) * 1.2.8 * Update sqlite3 to the latest version 🚀 (#24) * 1.2.9 * Update sqlite3 to the latest version 🚀 (#25) * 1.2.10 * Update sqlite3 to the latest version 🚀 (#26) * 1.2.11 * Update sqlite3 to the latest version 🚀 (#28) * 1.2.12 * Update coveralls to the latest version 🚀 (#27) * Update ava to the latest version 🚀 (#30) * Update ava to the latest version 🚀 (#31) * Update ava to the latest version 🚀 (#32) * fix(package): update sqlite3 to version 4.0.2 (#40) Closes #34 * Stop testing Node.js v4 and start testing v10 * 2.0.0 * Update sqlite3 to version 4.0.8 (#44) * Update ava to version 1.4.1 (#46) * Update nyc to version 14.1.1 (#48) Closes #36 * 2.0.1 * Update sqlite3 and don't pin version * 2.0.2 * upgrading travisci to node version 12,14, and 16 * adding github build tests * updating to just run tests * updating build name * removing travisci * adding github status badge for build to readme * upgrading pify to version 5.0.0 * upgrading sqlite3 to version 5.0.2 Thanks to @jdesboeufs for this work. * upgrading ava to 3.15.0 * upgrading nyc to version 15.1.0 * upgrading to xo version 0.45.0 * xo clean up opts renamed to options err renamed to error tabs and spaces * moving the busy timeout to 3 seconds * maintenance release and version bump to v.2.0.3 * moving to standard test suite * adding in nvm for support on 16 * updating licensing to include authors * Delete yarn.lock * no longer needed in mono repo * import into mono repo * adding in code coverage for sqlite * removing this as a storage adapter in keyv Co-authored-by: Luke Childs <lukechilds123@gmail.com> Co-authored-by: greenkeeper[bot] <greenkeeper[bot]@users.noreply.github.com> Co-authored-by: Aditya Patadia <adityapatadia@users.noreply.github.com>
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.
Resolves #31