mirror of
https://codeberg.org/keyoxide/doipjs.git
synced 2024-12-22 14:39:28 -07:00
chore: release 1.2.7
This commit is contained in:
parent
f724e81c06
commit
462348dced
9 changed files with 13 additions and 9 deletions
|
@ -6,6 +6,10 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
|
||||||
|
|
||||||
## [Unreleased]
|
## [Unreleased]
|
||||||
|
|
||||||
|
## [1.2.7] - 2023-10-09
|
||||||
|
### Fixed
|
||||||
|
- Fix regex errors
|
||||||
|
|
||||||
## [1.2.6] - 2023-10-09
|
## [1.2.6] - 2023-10-09
|
||||||
### Added
|
### Added
|
||||||
- JSON schemas for common objects
|
- JSON schemas for common objects
|
||||||
|
|
2
dist/doip.core.js
vendored
2
dist/doip.core.js
vendored
|
@ -3901,7 +3901,7 @@ var doip = (function (exports, openpgp$1, fetcher) {
|
||||||
limitations under the License.
|
limitations under the License.
|
||||||
*/
|
*/
|
||||||
|
|
||||||
const reURI$b = /^https:\/\/lobste\.rs\/(:?~|u\/)(.*)\/?/;
|
const reURI$b = /^https:\/\/lobste\.rs\/(?:~|u\/)(.*)\/?/;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* @function
|
* @function
|
||||||
|
|
2
dist/doip.core.min.js
vendored
2
dist/doip.core.min.js
vendored
File diff suppressed because one or more lines are too long
4
dist/doip.fetchers.js
vendored
4
dist/doip.fetchers.js
vendored
|
@ -2728,7 +2728,7 @@ var doipFetchers = (function (exports) {
|
||||||
* doip.js library version
|
* doip.js library version
|
||||||
* @constant {string}
|
* @constant {string}
|
||||||
*/
|
*/
|
||||||
const version = '1.2.6';
|
const version = '1.2.7';
|
||||||
|
|
||||||
/*
|
/*
|
||||||
Copyright 2022 Yarmo Mackenbach
|
Copyright 2022 Yarmo Mackenbach
|
||||||
|
@ -23629,7 +23629,7 @@ var doipFetchers = (function (exports) {
|
||||||
showErrors: false,
|
showErrors: false,
|
||||||
debug: false
|
debug: false
|
||||||
});
|
});
|
||||||
const reKey = /[a-zA-Z0-9\-_]+\s+:\s(openpgp4fpr|aspe:.*)/;
|
const reKey = /[a-zA-Z0-9\-_]+\s+:\s((?:openpgp4fpr|aspe):.*)/;
|
||||||
const reEnd = /End\sof\s.*\staxonomy./;
|
const reEnd = /End\sof\s.*\staxonomy./;
|
||||||
const keys = [];
|
const keys = [];
|
||||||
|
|
||||||
|
|
2
dist/doip.fetchers.min.js
vendored
2
dist/doip.fetchers.min.js
vendored
File diff suppressed because one or more lines are too long
2
dist/doip.fetchers.minimal.js
vendored
2
dist/doip.fetchers.minimal.js
vendored
|
@ -2698,7 +2698,7 @@ var doipFetchers = (function (exports) {
|
||||||
* doip.js library version
|
* doip.js library version
|
||||||
* @constant {string}
|
* @constant {string}
|
||||||
*/
|
*/
|
||||||
const version = '1.2.6';
|
const version = '1.2.7';
|
||||||
|
|
||||||
/*
|
/*
|
||||||
Copyright 2022 Yarmo Mackenbach
|
Copyright 2022 Yarmo Mackenbach
|
||||||
|
|
2
dist/doip.fetchers.minimal.min.js
vendored
2
dist/doip.fetchers.minimal.min.js
vendored
File diff suppressed because one or more lines are too long
|
@ -1,6 +1,6 @@
|
||||||
{
|
{
|
||||||
"name": "doipjs",
|
"name": "doipjs",
|
||||||
"version": "1.2.6",
|
"version": "1.2.7",
|
||||||
"description": "Decentralized Online Identity Proofs library in Node.js",
|
"description": "Decentralized Online Identity Proofs library in Node.js",
|
||||||
"type": "module",
|
"type": "module",
|
||||||
"main": "./src/index.js",
|
"main": "./src/index.js",
|
||||||
|
|
|
@ -22,4 +22,4 @@ limitations under the License.
|
||||||
* doip.js library version
|
* doip.js library version
|
||||||
* @constant {string}
|
* @constant {string}
|
||||||
*/
|
*/
|
||||||
export const version = '1.2.6'
|
export const version = '1.2.7'
|
||||||
|
|
Loading…
Reference in a new issue