forked from Mirrors/doipjs
Release 0.8.2
This commit is contained in:
parent
32c01756d3
commit
a8389bd0b6
7 changed files with 27 additions and 12 deletions
|
@ -6,6 +6,10 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
|
||||||
|
|
||||||
## [Unreleased]
|
## [Unreleased]
|
||||||
|
|
||||||
|
## [0.8.2] - 2020-12-26
|
||||||
|
### Fixed
|
||||||
|
- Hanlding of users without selfCertifications
|
||||||
|
|
||||||
## [0.8.1] - 2020-12-20
|
## [0.8.1] - 2020-12-20
|
||||||
### Fixed
|
### Fixed
|
||||||
- Timeout for claim verification promises
|
- Timeout for claim verification promises
|
||||||
|
|
6
dist/doip.js
vendored
6
dist/doip.js
vendored
|
@ -1193,7 +1193,7 @@ process.umask = function() { return 0; };
|
||||||
},{}],9:[function(require,module,exports){
|
},{}],9:[function(require,module,exports){
|
||||||
module.exports={
|
module.exports={
|
||||||
"name": "doipjs",
|
"name": "doipjs",
|
||||||
"version": "0.8.1",
|
"version": "0.8.2",
|
||||||
"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": {
|
||||||
|
@ -1757,6 +1757,7 @@ const process = (publicKey) => {
|
||||||
},
|
},
|
||||||
}
|
}
|
||||||
|
|
||||||
|
if ('selfCertifications' in user && user.selfCertifications.length >= 0) {
|
||||||
const notations = user.selfCertifications[0].rawNotations
|
const notations = user.selfCertifications[0].rawNotations
|
||||||
usersOutput[i].notations = notations.map(
|
usersOutput[i].notations = notations.map(
|
||||||
({ name, value, humanReadable }) => {
|
({ name, value, humanReadable }) => {
|
||||||
|
@ -1765,6 +1766,9 @@ const process = (publicKey) => {
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
)
|
)
|
||||||
|
} else {
|
||||||
|
usersOutput[i].notations = []
|
||||||
|
}
|
||||||
})
|
})
|
||||||
|
|
||||||
resolve({
|
resolve({
|
||||||
|
|
2
dist/doip.min.js
vendored
2
dist/doip.min.js
vendored
File diff suppressed because one or more lines are too long
|
@ -1,4 +1,4 @@
|
||||||
# doip.js <small>0.8.1</small>
|
# doip.js <small>0.8.2</small>
|
||||||
|
|
||||||
<img src="doip.png" width="120">
|
<img src="doip.png" width="120">
|
||||||
|
|
||||||
|
|
|
@ -1,5 +1,12 @@
|
||||||
# Changelog
|
# Changelog
|
||||||
|
|
||||||
|
## [0.8.2]
|
||||||
|
|
||||||
|
[2020-12-26](https://codeberg.org/keyoxide/doipjs/releases/tag/0.8.2)
|
||||||
|
|
||||||
|
### Fixed
|
||||||
|
- Hanlding of users without selfCertifications
|
||||||
|
|
||||||
## [0.8.1]
|
## [0.8.1]
|
||||||
|
|
||||||
[2020-12-20](https://codeberg.org/keyoxide/doipjs/releases/tag/0.8.1)
|
[2020-12-20](https://codeberg.org/keyoxide/doipjs/releases/tag/0.8.1)
|
||||||
|
|
|
@ -15,7 +15,7 @@ npm install --save doipjs
|
||||||
Install on website by including the following HTML snippet:
|
Install on website by including the following HTML snippet:
|
||||||
|
|
||||||
```html
|
```html
|
||||||
<script src="https://cdn.jsdelivr.net/npm/doipjs@0.8.1/dist/doip.min.js"></script>
|
<script src="https://cdn.jsdelivr.net/npm/doipjs@0.8.2/dist/doip.min.js"></script>
|
||||||
```
|
```
|
||||||
|
|
||||||
Next step: [quick start (Node.js)](quickstart-nodejs.md) and [quick start (browser)](quickstart-browser.md)
|
Next step: [quick start (Node.js)](quickstart-nodejs.md) and [quick start (browser)](quickstart-browser.md)
|
||||||
|
|
|
@ -1,6 +1,6 @@
|
||||||
{
|
{
|
||||||
"name": "doipjs",
|
"name": "doipjs",
|
||||||
"version": "0.8.1",
|
"version": "0.8.2",
|
||||||
"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": {
|
||||||
|
|
Loading…
Reference in a new issue