Skip to content
Permalink

Comparing changes

Choose two branches to see what’s changed or to start a new pull request. If you need to, you can also or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: isaacs/node-lru-cache
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: v5.1.1
Choose a base ref
...
head repository: isaacs/node-lru-cache
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: v6.0.0
Choose a head ref
  • 5 commits
  • 3 files changed
  • 2 contributors

Commits on Jul 8, 2019

  1. add node 12 to travis, update tap to latest v12

    Will update tap to >=v14 once node v6 support drops
    isaacs committed Jul 8, 2019
    1
    Copy the full SHA
    e14ee4d View commit details

Commits on Jul 11, 2020

  1. update tap and yallist

    isaacs committed Jul 11, 2020
    Copy the full SHA
    aeb7d7f View commit details
  2. Copy the full SHA
    055ae84 View commit details
  3. Copy the full SHA
    c79232a View commit details
  4. 6.0.0

    isaacs committed Jul 11, 2020
    Copy the full SHA
    a71e080 View commit details
Showing with 2,319 additions and 1,363 deletions.
  1. +2 −2 .travis.yml
  2. +2,307 −1,353 package-lock.json
  3. +10 −8 package.json
4 changes: 2 additions & 2 deletions .travis.yml
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
language: node_js

node_js:
- node
- 12
- 10
- 8
- 6

os:
- linux
3,660 changes: 2,307 additions & 1,353 deletions package-lock.json

Large diffs are not rendered by default.

18 changes: 10 additions & 8 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,32 +1,34 @@
{
"name": "lru-cache",
"description": "A cache object that deletes the least-recently-used items.",
"version": "5.1.1",
"version": "6.0.0",
"author": "Isaac Z. Schlueter <i@izs.me>",
"keywords": [
"mru",
"lru",
"cache"
],
"scripts": {
"test": "tap test/*.js --100 -J",
"snap": "TAP_SNAPSHOT=1 tap test/*.js -J",
"coveragerport": "tap --coverage-report=html",
"test": "tap",
"snap": "tap",
"preversion": "npm test",
"postversion": "npm publish",
"postpublish": "git push origin --all; git push origin --tags"
"prepublishOnly": "git push origin --follow-tags"
},
"main": "index.js",
"repository": "git://github.com/isaacs/node-lru-cache.git",
"devDependencies": {
"benchmark": "^2.1.4",
"tap": "^12.1.0"
"tap": "^14.10.7"
},
"license": "ISC",
"dependencies": {
"yallist": "^3.0.2"
"yallist": "^4.0.0"
},
"files": [
"index.js"
]
],
"engines": {
"node": ">=10"
}
}