Release 0.12.4

This commit is contained in:
Yarmo Mackenbach 2021-04-30 16:20:56 +02:00
parent e723378c7f
commit 3bb38e5d2c
No known key found for this signature in database
GPG key ID: 37367F4AF4087AD1
4 changed files with 30 additions and 25 deletions

View file

@ -6,89 +6,94 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
## [Unreleased] ## [Unreleased]
## [0.12.4] - 2021-04-30
### Fixed
- Headings in CHANGELOG.md
- References to wrong variable
## [0.12.3] - 2021-04-30 ## [0.12.3] - 2021-04-30
## Fixed ### Fixed
- Ensure an output for the Claim's verification process - Ensure an output for the Claim's verification process
- Adaptive proxy policy now uses the fallback fetcher for generic access proofs - Adaptive proxy policy now uses the fallback fetcher for generic access proofs
- Refactor bad property names - Refactor bad property names
## [0.12.2] - 2021-04-30 ## [0.12.2] - 2021-04-30
## Fixed ### Fixed
- Fix Claim constructor handling of object data - Fix Claim constructor handling of object data
- Refactor bad property names - Refactor bad property names
## [0.12.1] - 2021-04-26 ## [0.12.1] - 2021-04-26
## Fixed ### Fixed
- Bad interpretation of proxy policy - Bad interpretation of proxy policy
- Proxy URL protocol - Proxy URL protocol
## [0.12.0] - 2021-04-22 ## [0.12.0] - 2021-04-22
## Added ### Added
- Proxy server functionality - Proxy server functionality
- JSDoc-based documentation - JSDoc-based documentation
- Claim class - Claim class
## Changed ### Changed
- Improved data fetching logic - Improved data fetching logic
## Fixed ### Fixed
- Bug causing false positive verification - Bug causing false positive verification
## [0.11.2] - 2021-03-06 ## [0.11.2] - 2021-03-06
## Fixed ### Fixed
- Matrix.to URLs - Matrix.to URLs
## [0.11.1] - 2021-03-06 ## [0.11.1] - 2021-03-06
## Fixed ### Fixed
- Proxy URL encoding - Proxy URL encoding
## [0.11.0] - 2021-03-05 ## [0.11.0] - 2021-03-05
## Added ### Added
- IRC service provider - IRC service provider
- Matrix service provider - Matrix service provider
## Fixed ### Fixed
- Handling of requests without URI - Handling of requests without URI
## [0.10.5] - 2021-03-02 ## [0.10.5] - 2021-03-02
## Fixed ### Fixed
- Logic error - Logic error
## [0.10.4] - 2021-03-02 ## [0.10.4] - 2021-03-02
## Changed ### Changed
- Add Twitter proxy verification - Add Twitter proxy verification
## [0.10.3] - 2021-03-02 ## [0.10.3] - 2021-03-02
## Changed ### Changed
- Remove twitter dependency - Remove twitter dependency
## [0.10.2] - 2021-03-01 ## [0.10.2] - 2021-03-01
## Changed ### Changed
- Make Twitter verification configurable - Make Twitter verification configurable
## [0.10.1] - 2021-01-26 ## [0.10.1] - 2021-01-26
## Fixed ### Fixed
- Polyfill for promise.allSettled - Polyfill for promise.allSettled
## [0.10.0] - 2021-01-13 ## [0.10.0] - 2021-01-13
## Added ### Added
- Owncast service provider - Owncast service provider
## [0.9.4] - 2021-01-10 ## [0.9.4] - 2021-01-10
## Fixed ### Fixed
- Fix typo in keyserver url - Fix typo in keyserver url
## [0.9.3] - 2021-01-10 ## [0.9.3] - 2021-01-10
## Fixed ### Fixed
- Fix regex skipping some claims - Fix regex skipping some claims
## [0.9.2] - 2021-01-09 ## [0.9.2] - 2021-01-09
## Fixed ### Fixed
- Network errors blocking code execution - Network errors blocking code execution
## [0.9.1] - 2021-01-09 ## [0.9.1] - 2021-01-09
## Changed ### Changed
- Use signature data to find key location - Use signature data to find key location
## [0.9.0] - 2021-01-07 ## [0.9.0] - 2021-01-07
## Added ### Added
- Signature claims verification - Signature claims verification
## [0.8.5] - 2021-01-03 ## [0.8.5] - 2021-01-03

4
dist/doip.js vendored
View file

@ -7515,7 +7515,7 @@ module.exports.default = exports.default;
},{"./util/assertString":107}],113:[function(require,module,exports){ },{"./util/assertString":107}],113:[function(require,module,exports){
module.exports={ module.exports={
"name": "doipjs", "name": "doipjs",
"version": "0.12.2", "version": "0.12.4",
"description": "Decentralized OpenPGP Identity Proofs library in Node.js", "description": "Decentralized OpenPGP Identity Proofs library in Node.js",
"main": "src/index.js", "main": "src/index.js",
"dependencies": { "dependencies": {
@ -7848,7 +7848,7 @@ class Claim {
} }
// Fail safe verification result // Fail safe verification result
verificationResult = verificationResult ? verificationResult : { this._verification = this._verification ? this._verification : {
result: false, result: false,
completed: true, completed: true,
proof: {}, proof: {},

2
dist/doip.min.js vendored

File diff suppressed because one or more lines are too long

View file

@ -1,6 +1,6 @@
{ {
"name": "doipjs", "name": "doipjs",
"version": "0.12.3", "version": "0.12.4",
"description": "Decentralized OpenPGP Identity Proofs library in Node.js", "description": "Decentralized OpenPGP Identity Proofs library in Node.js",
"main": "src/index.js", "main": "src/index.js",
"dependencies": { "dependencies": {