mirror of
https://codeberg.org/keyoxide/doipjs.git
synced 2024-12-22 14:39:28 -07:00
Release 0.14.0
This commit is contained in:
parent
1867491508
commit
d8c78d29fb
4 changed files with 6 additions and 3 deletions
|
@ -5,6 +5,9 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
|
||||||
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
|
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
|
||||||
|
|
||||||
## [Unreleased]
|
## [Unreleased]
|
||||||
|
## [0.14.0] - 2021-11-06
|
||||||
|
### Added
|
||||||
|
- Support for ariadne.id notation proofs
|
||||||
|
|
||||||
## [0.13.0] - 2021-07-26
|
## [0.13.0] - 2021-07-26
|
||||||
### Added
|
### Added
|
||||||
|
|
2
dist/doip.js
vendored
2
dist/doip.js
vendored
|
@ -10535,7 +10535,7 @@ exports.process = async (publicKey) => {
|
||||||
usersOutput[i].claims = notations
|
usersOutput[i].claims = notations
|
||||||
.filter(
|
.filter(
|
||||||
({ name, humanReadable }) =>
|
({ name, humanReadable }) =>
|
||||||
humanReadable && name === 'proof@metacode.biz'
|
humanReadable && (name === 'proof@ariadne.id' || name === 'proof@metacode.biz')
|
||||||
)
|
)
|
||||||
.map(
|
.map(
|
||||||
({ value }) =>
|
({ value }) =>
|
||||||
|
|
2
dist/doip.min.js
vendored
2
dist/doip.min.js
vendored
File diff suppressed because one or more lines are too long
|
@ -1,6 +1,6 @@
|
||||||
{
|
{
|
||||||
"name": "doipjs",
|
"name": "doipjs",
|
||||||
"version": "0.13.0",
|
"version": "0.14.0",
|
||||||
"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