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.1.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.1
Choose a head ref
  • 3 commits
  • 3 files changed
  • 2 contributors

Commits on Dec 17, 2019

  1. changelog for 7.1

    isaacs committed Dec 17, 2019

    Verified

    This commit was created on GitHub.com and signed with GitHub’s verified signature. The key has expired.
    Copy the full SHA
    5a4ce3d View commit details
  2. Add preload.js into npm package

    PR-URL: #301
    Credit: @Flarna
    Close: #301
    Reviewed-by: @isaacs
    Flarna authored and isaacs committed Dec 17, 2019
    Copy the full SHA
    6648df1 View commit details
  3. 7.1.1

    isaacs committed Dec 17, 2019
    Copy the full SHA
    bb36c98 View commit details
Showing with 9 additions and 3 deletions.
  1. +5 −0 CHANGELOG.md
  2. +1 −1 package-lock.json
  3. +3 −2 package.json
5 changes: 5 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,10 @@
# changes log

## 7.1.0

* Add `require('semver/preload')` to load the entire module without using
lazy getter methods.

## 7.0.0

* Refactor module into separate files for better tree-shaking
2 changes: 1 addition & 1 deletion package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

5 changes: 3 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "semver",
"version": "7.1.0",
"version": "7.1.1",
"description": "The semantic version parser used by npm.",
"main": "index.js",
"scripts": {
@@ -25,7 +25,8 @@
"functions",
"internal",
"ranges",
"index.js"
"index.js",
"preload.js"
],
"tap": {
"check-coverage": true,