web-ledger-client
Advanced tools
Comparing version 3.3.0 to 3.4.1
@@ -7,2 +7,2 @@ module.exports = { | ||
} | ||
} | ||
}; |
# web-ledger-client ChangeLog | ||
## 3.4.1 - 2021-03-16 | ||
### Fixed | ||
- Re-release v3.4.0 due to NPM failure. | ||
## 3.4.0 - 2021-03-11 | ||
### Changed | ||
- Use `apisauce@2` to address security vulnerabilities in the older `axios` | ||
sub-dependency. | ||
### Fixed | ||
- Added a check to ensure `Error.captureStackTrace` is a function before using it. | ||
## 3.3.0 - 2019-10-24 | ||
@@ -4,0 +18,0 @@ |
@@ -11,4 +11,7 @@ /*! | ||
this.details = details; | ||
Error.captureStackTrace(this, this.constructor); | ||
// captureStackTrace is node only | ||
if(typeof Error.captureStackTrace === 'function') { | ||
Error.captureStackTrace(this, this.constructor); | ||
} | ||
} | ||
}; |
{ | ||
"name": "web-ledger-client", | ||
"version": "3.3.0", | ||
"version": "3.4.1", | ||
"description": "A WebLedger client.", | ||
@@ -40,3 +40,3 @@ "homepage": "https://github.com/digitalbazaar/web-ledger-client", | ||
"dependencies": { | ||
"apisauce": "^1.0.2", | ||
"apisauce": "^2.0.1", | ||
"lodash.get": "^4.4.2" | ||
@@ -46,9 +46,9 @@ }, | ||
"chai": "^4.2.0", | ||
"eslint": "^6.0.0", | ||
"eslint": "^7.17.0", | ||
"eslint-config-digitalbazaar": "^2.0.0", | ||
"eslint-plugin-jsdoc": "^4.6.0", | ||
"jsdoc-to-markdown": "^4.0.1", | ||
"mocha": "^5.2.0", | ||
"jsdoc-to-markdown": "^6.0.1", | ||
"mocha": "^8.2.1", | ||
"nock": "^10.0.2", | ||
"nyc": "^13.1.0", | ||
"nyc": "^15.1.0", | ||
"sinon": "^7.1.1", | ||
@@ -74,3 +74,3 @@ "sinon-chai": "^3.2.0" | ||
"generate-docs": "jsdoc2md lib/*.js > ./docs/api.md", | ||
"lint": "eslint lib tests", | ||
"lint": "eslint .", | ||
"mocha": "nyc mocha ./tests/**/*.spec.js ./tests/*.spec.js", | ||
@@ -77,0 +77,0 @@ "test": "npm run mocha", |
@@ -5,2 +5,2 @@ module.exports = { | ||
} | ||
} | ||
}; |
Sorry, the diff of this file is not supported yet
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
46480
838
+ Addedapisauce@2.1.6(transitive)
- Removedapisauce@1.1.5(transitive)
- Removedramda@0.25.0(transitive)
Updatedapisauce@^2.0.1