Skip to content

Update get-root-module to the latest version 🚀#2

Closed
greenkeeper[bot] wants to merge 1 commit intomasterfrom
greenkeeper/get-root-module-1.0.1
Closed

Update get-root-module to the latest version 🚀#2
greenkeeper[bot] wants to merge 1 commit intomasterfrom
greenkeeper/get-root-module-1.0.1

Conversation

@greenkeeper
Copy link
Contributor

@greenkeeper greenkeeper bot commented Jul 27, 2017

Version 1.0.1 of get-root-module just got published.

Dependency get-root-module
Current Version 0.1.3
Type devDependency

The version 1.0.1 is not covered by your current version range.

Without accepting this pull request your project will work just like it did before. There might be a bunch of new features, fixes and perf improvements that the maintainers worked on for you though.

I recommend you look into these changes and try to get onto the latest version of get-root-module.
Given that you have a decent test suite, a passing build is a strong indicator that you can take advantage of these changes by merging the proposed change into your project. Otherwise this branch is a great starting point for you to work on the update.


Commits

The new version differs by 9 commits.

See the full diff

Not sure how things should work exactly?

There is a collection of frequently asked questions and of course you may always ask my humans.


Your Greenkeeper Bot 🌴

@coveralls
Copy link

coveralls commented Jul 27, 2017

Coverage Status

Coverage remained the same at 100.0% when pulling e2f37c4 on greenkeeper/get-root-module-1.0.1 into 4c472db on master.

@greenkeeper greenkeeper bot closed this Jul 28, 2017
@greenkeeper greenkeeper bot deleted the greenkeeper/get-root-module-1.0.1 branch July 28, 2017 15:49
caseyWebb pushed a commit to caseyWebb/keyv that referenced this pull request Oct 9, 2019
jaredwray added a commit that referenced this pull request Nov 21, 2021
* Initial commit

* 0.1.0

* Exclude src from npm and dist from git

* 0.1.1

* Make sure we always transpile for Node.js 4 The AVA preset only targets the Node.js version used to build.

* 0.1.2

* Add usage example to readme

* Mention keyv-redis as existing example

* 1.0.0

* Tweak wording

* `keyv` => Keyv

* Capitalise title

* 1.0.1

* Link to AVA/Keyv

* Fix markdown heading

* 1.0.2

* Update dependencies to enable Greenkeeper 🌴 (#1)

* chore(package): update dependencies

* Readme wording

* Clear store before each test and cleanup afterwards

* Test .clear() deletes all key/value pairs

* Test .clear() resolves to undefiend

* Test .clear() returns a Promise

* Move tests around

* Test .set(key, value) sets a value

* Test .delete(key) deletes a key

* 1.1.0

* Fix lint error

* Add bigger delay to wait for TTL to expire This was sometimes failing on Node.js 4

* 1.1.1

* chore(package): update ava to version 0.21.0 (#2)

* Test value can be an object

* Test value can be a buffer

* Test value can be an object containing a buffer

* Test value can be null

* Test value can be undefined

* Test value can be a number

* .set should now resolve to true

* 1.2.0

* Rename to keyv-test-suite

* Split tests up into seperate files

Allow tests to be imported seperately or use helper to run them all

* Add official tests

* 1.3.0

* Use get-root-module

* Test keyvOfficialTests against keyv-redis

* Run Redis on Travis

* Test namespaced .set(key, value) don't collide

* Rename test to make it clear we're testing both set and get

* Test namespaced delete only deletes from current namespace

* Test namespaced clear only clears current namespace

* Use new store instace for each test

* Fix typo

* 1.4.0

* docs(readme): add Greenkeeper badge (#3)

* Remove Greenkeeper badge

* Use this (renamed get-root-module)

* 1.4.1

* Increase TTL delay to stop false positives

* 1.4.2

* Spoof date if possible

* Test against SQLite not Redis

* Update docs

* Update keywords

* 1.5.0

* Scope to @keyv

* 1.5.1

* Fix timings so tests don't fail for slow writes

* 1.5.2

* Update ava to the latest version 🚀 (#9)

* Test value can contain quotes

* 1.6.0

* Add .npmignore

* 1.6.1

* Remove .npmignore

* 1.6.2

* 1.6.3

* Add .npmignore

* 1.6.4

* Update timekeeper to the latest version 🚀 (#10)

* 1.6.5

* pkg.files over .npmignore

* 1.6.6

* Revert "pkg.files over .npmignore"

This reverts commit 045b652acc6ace1d63bc81aaf6aeeda5577e790f.

* 1.6.7

* Add everything to .npmignore apart from dist

* 1.6.8

* Revert "Add everything to .npmignore apart from dist"

This reverts commit 4495a78b139eb00b062967c43060b7934b8630f0.

* 1.6.9

* Add everything to .npmignore apart from dist

* 1.6.10

* Update coveralls to the latest version 🚀 (#11)

* Update ava to the latest version 🚀 (#12)

* Update ava to the latest version 🚀 (#13)

* Update ava to the latest version 🚀 (#14)

* await `keyv.clear()` before finishing test (#17)

* 1.6.11

* compliancy -> compliance (#22)

* handling yarn.lock

* updating author

* updating author

* updating author

* adding in build for node 12, 14, and 16

* Delete .travis.yml

* adding in status badge

* adding in the build script

* remving the coverage file

* updating coverage script

* updating badge

* upgrading nyc to version 15.1.0

* upgrading delay to version 2.0.0

* upgrading ava to version 3.15.0

* adding nvm to project for node 16

* upgrading xo to version 0.46.4

* spacing added

* adding in file names

* using require for buffer

* version bump 1.6.12

* adding in dist to ignore

* moving test-suite to mono repo

Co-authored-by: Luke Childs <[email protected]>
Co-authored-by: greenkeeper[bot] <greenkeeper[bot]@users.noreply.github.com>
Co-authored-by: Roney Rao <[email protected]>
Co-authored-by: Dan Dascalescu <[email protected]>
jaredwray pushed a commit that referenced this pull request Dec 2, 2021
jaredwray added a commit that referenced this pull request Dec 2, 2021
* Initial commit

* Connect to MongoDB on init

* Use mongojs driver instead of mongodb

* Add set method

* Add get method

* Add missing semi

* Add delete method

* Protect user from accidentally clearing collection

* Add clear method

* Fix lint error

* Make sure nonexistent keys are handled

* Expose options object

* Test Redis URL can be passed in as string

* Test collection option merges into default options

* Test .delete() with no args doesn't empty the collection

* 0.1.0

* Create unique index for keys

* Create TTL index to clear old keys

* 0.2.0

* Ad usage example to readme

* Don't rely on expirey date from Keyv, calculate our own

* Make sure opts.uri from keyv is mapped to opts.url for mongojs

* 0.2.1

* Emit connection errors on keyv

* 0.3.0

* Emit error events

* Update to keyv-api-suite

* Setup requirable

* Add support for clearing namespaced collections

* 0.4.0

* Remove unused dev dep

* Update requireable to ^1.0.1

* Update dependencies to enable Greenkeeper 🌴 (#1)

* chore(package): update dependencies

* docs(readme): add Greenkeeper badge

* reorder

* Remove Greenkeeper badge

* Use "this"

* Update to requirable

* Pin dependency versions

* 1.0.0

* Finish docs

* 1.0.1

* Update mongojs to the latest version 🚀 (#2)

* 1.0.2

* Scope to @keyv

* 1.0.3

* Update ava to the latest version 🚀 (#5)

* Fix readme error

* 1.0.4

* Update coveralls to the latest version 🚀 (#8)

* Update ava to the latest version 🚀 (#9)

* Update ava to the latest version 🚀 (#11)

* Update mongojs to the latest version 🚀 (#13)

* chore(package): update ava to version 0.25.0 (#12)

* chore(package): update xo to version 0.20.1 (#15)

Closes #14

* Drop tests for Node.js 4 and add tests for Node.js 10 (#26)

Was failing anyway, and Node 4 was end-of-life'd in April.

Add instead tests for Node 10 and current.

* Support passing both URL and collection name to constructor (#25)

* Support passing both URL and collection name to constructor

* Add .env support

* Revert "Support passing both URL and collection name to constructor" (#27)

Reverts lukechilds/keyv-mongo#25

* Revert "Revert "Support passing both URL and collection name to constructor (#25)""

And fix version number change

This reverts commit 8f06df9bf96f9201f0cbbbf5825a5778f46da780.

* 1.1.0

* Updating mongojs and pify versions

* Corrected set to use new syntax

* Incremented minor version

* adding support for default options

* Create build.yaml

* updating for the correct format

* updating readme to new build status

* removing travis ci as no longer needed

* thanks @sittingbool for upgrading pify to version 5.0.0

* removing dotenv as it is not needed

* upgrading xo to version 0.45.0

* upgrading nyc to version 15.1.0

* refactoring to a standard way of handling official tests

* updating time and authors

* updating authors

* updating authors in readme

* removing yarn.lock from repository

* updating github location in package

* updating readme to handle logo

* adding in testing docker compose system

* upgrading keyv to version 4.0.4

* upgrading @keyv/test-suite to version 1.6.12

* upgrading xo to version 0.46.4

* upgrading ava to version 3.15.0

* adding in testing coverage on url and uri

* version bump to 1.2.1

* renaming to just mongo

* removing the docker compose

* removing licensing

* updating to remove coveralls and add in correct coverage

* updating to do code coverage for mongo

Co-authored-by: Luke Childs <[email protected]>
Co-authored-by: greenkeeper[bot] <greenkeeper[bot]@users.noreply.github.com>
Co-authored-by: Dan Dascalescu <[email protected]>
Co-authored-by: Damir Dado Mitrovic <[email protected]>
jaredwray added a commit that referenced this pull request Feb 25, 2026
jaredwray added a commit that referenced this pull request Feb 25, 2026
* mongo - fix: moving gridFS property to read only

* code coverage

* adding createKey test

* security fix

* security issue #2
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.

1 participant