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: TritonDataCenter/node-jsprim
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: f7d80a9e8e3f79c0b76448ad9ceab252fb309b32
Choose a base ref
...
head repository: TritonDataCenter/node-jsprim
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: 5c8475fd44567e459b1b73b82f2669c39a0642b8
Choose a head ref
  • 1 commit
  • 3 files changed
  • 1 contributor

Commits on Nov 29, 2021

  1. Verified

    This commit was created on GitHub.com and signed with GitHub’s verified signature.
    Copy the full SHA
    5c8475f View commit details
Showing with 47 additions and 5 deletions.
  1. +4 −0 CHANGES.md
  2. +38 −0 package-lock.json
  3. +5 −5 package.json
4 changes: 4 additions & 0 deletions CHANGES.md
Original file line number Diff line number Diff line change
@@ -4,6 +4,10 @@

None yet.

## v1.4.2 (2021-11-29)

* #35 Backport json-schema 0.4.0 to version 1.4.x

## v1.4.1 (2017-08-02)

* #21 Update verror dep
38 changes: 38 additions & 0 deletions package-lock.json

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

10 changes: 5 additions & 5 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "jsprim",
"version": "1.4.1",
"version": "1.4.2",
"description": "utilities for primitive JavaScript types",
"main": "./lib/jsprim.js",
"repository": {
@@ -10,11 +10,11 @@
"dependencies": {
"assert-plus": "1.0.0",
"extsprintf": "1.3.0",
"json-schema": "0.2.3",
"json-schema": "0.4.0",
"verror": "1.10.0"
},
"engines": [
"node >=0.6.0"
],
"engines": {
"node": ">=0.6.0"
},
"license": "MIT"
}