mirror of
https://codeberg.org/keyoxide/doipjs.git
synced 2024-12-22 14:39:28 -07:00
Release 0.10.1
This commit is contained in:
parent
333acd5c0d
commit
0c51e96cf9
7 changed files with 28 additions and 5 deletions
|
@ -6,6 +6,10 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
|
|||
|
||||
## [Unreleased]
|
||||
|
||||
## [0.10.1] - 2021-01-26
|
||||
## Fixed
|
||||
- Polyfill for promise.allSettled
|
||||
|
||||
## [0.10.0] - 2021-01-13
|
||||
## Added
|
||||
- Owncast service provider
|
||||
|
|
14
dist/doip.js
vendored
14
dist/doip.js
vendored
|
@ -1193,7 +1193,7 @@ process.umask = function() { return 0; };
|
|||
},{}],9:[function(require,module,exports){
|
||||
module.exports={
|
||||
"name": "doipjs",
|
||||
"version": "0.10.0",
|
||||
"version": "0.10.1",
|
||||
"description": "Decentralized OpenPGP Identity Proofs library in Node.js",
|
||||
"main": "src/index.js",
|
||||
"dependencies": {
|
||||
|
@ -1274,6 +1274,18 @@ const serviceproviders = require('./serviceproviders')
|
|||
const keys = require('./keys')
|
||||
const utils = require('./utils')
|
||||
|
||||
// Promise.allSettled polyfill
|
||||
Promise.allSettled = Promise.allSettled || ((promises) => Promise.all(promises.map(p => p
|
||||
.then(v => ({
|
||||
status: 'fulfilled',
|
||||
value: v,
|
||||
}))
|
||||
.catch(e => ({
|
||||
status: 'rejected',
|
||||
reason: e,
|
||||
}))
|
||||
)));
|
||||
|
||||
const runVerificationJson = (
|
||||
res,
|
||||
proofData,
|
||||
|
|
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.10.0</small>
|
||||
# doip.js <small>0.10.1</small>
|
||||
|
||||
<img src="doip.png" width="120">
|
||||
|
||||
|
|
|
@ -1,5 +1,12 @@
|
|||
# Changelog
|
||||
|
||||
## [0.10.1]
|
||||
|
||||
[2021-01-13](https://codeberg.org/keyoxide/doipjs/releases/tag/0.10.1)
|
||||
|
||||
## Fixed
|
||||
- Polyfill for promise.allSettled
|
||||
|
||||
## [0.10.0]
|
||||
|
||||
[2021-01-13](https://codeberg.org/keyoxide/doipjs/releases/tag/0.10.0)
|
||||
|
|
|
@ -15,7 +15,7 @@ npm install --save doipjs
|
|||
Install on website by including the following HTML snippet:
|
||||
|
||||
```html
|
||||
<script src="https://cdn.jsdelivr.net/npm/doipjs@0.10.0/dist/doip.min.js"></script>
|
||||
<script src="https://cdn.jsdelivr.net/npm/doipjs@0.10.1/dist/doip.min.js"></script>
|
||||
```
|
||||
|
||||
Next step: [quick start (Node.js)](quickstart-nodejs.md) and [quick start (browser)](quickstart-browser.md)
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
{
|
||||
"name": "doipjs",
|
||||
"version": "0.10.0",
|
||||
"version": "0.10.1",
|
||||
"description": "Decentralized OpenPGP Identity Proofs library in Node.js",
|
||||
"main": "src/index.js",
|
||||
"dependencies": {
|
||||
|
|
Loading…
Reference in a new issue