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: npm/node-semver
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: v7.0.0
Choose a base ref
...
head repository: npm/node-semver
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: v7.1.0
Choose a head ref
  • 4 commits
  • 6 files changed
  • 1 contributor

Commits on Dec 14, 2019

  1. update tap

    isaacs committed Dec 14, 2019

    Verified

    This commit was created on GitHub.com and signed with GitHub’s verified signature. The key has expired.
    Copy the full SHA
    533ed12 View commit details
  2. 11
    Copy the full SHA
    d61f828 View commit details

Commits on Dec 17, 2019

  1. Copy the full SHA
    945d53c View commit details
  2. 7.1.0

    isaacs committed Dec 17, 2019
    Copy the full SHA
    e663d38 View commit details
Showing with 704 additions and 715 deletions.
  1. +2 −2 .travis.yml
  2. +6 −0 CHANGELOG.md
  3. +641 −711 package-lock.json
  4. +5 −2 package.json
  5. +46 −0 preload.js
  6. +4 −0 test/preload.js
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:
- 11
- node
- 12
- 10
- 8

os:
- linux
6 changes: 6 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,11 @@
# changes log

## 7.0.0

* Refactor module into separate files for better tree-shaking
* Drop support for very old node versions, use const/let, `=>` functions,
and classes.

## 6.3.0

* Expose the token enum on the exports
Loading