chore: release 1.0.2

This commit is contained in:
Yarmo Mackenbach 2023-09-19 12:57:57 +02:00
parent c2f9efa698
commit cae1020f45
No known key found for this signature in database
GPG key ID: 3C57D093219103A3
9 changed files with 12 additions and 8 deletions

View file

@ -6,6 +6,10 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
## [Unreleased] ## [Unreleased]
## [1.0.2] - 2023-09-19
### Fixed
- Make nodeinfo requests use HTTPS
## [1.0.1] - 2023-09-18 ## [1.0.1] - 2023-09-18
### Fixed ### Fixed
- Ignore OpenPGP users without userId - Ignore OpenPGP users without userId

2
dist/doip.core.js vendored
View file

@ -4687,7 +4687,7 @@ var doip = (function (exports, openpgp$1, fetcher) {
}; };
const _processNodeinfo = async (/** @type {string} */ domain) => { const _processNodeinfo = async (/** @type {string} */ domain) => {
const nodeinfoRef = await fetch(`http://${domain}/.well-known/nodeinfo`) const nodeinfoRef = await fetch(`https://${domain}/.well-known/nodeinfo`)
.then(res => { .then(res => {
if (res.status !== 200) { if (res.status !== 200) {
throw new Error('HTTP Status was not 200') throw new Error('HTTP Status was not 200')

File diff suppressed because one or more lines are too long

View file

@ -2728,7 +2728,7 @@ var doipFetchers = (function (exports) {
* doip.js library version * doip.js library version
* @constant {string} * @constant {string}
*/ */
const version = '1.0.1'; const version = '1.0.2';
/* /*
Copyright 2022 Yarmo Mackenbach Copyright 2022 Yarmo Mackenbach

File diff suppressed because one or more lines are too long

View file

@ -2698,7 +2698,7 @@ var doipFetchers = (function (exports) {
* doip.js library version * doip.js library version
* @constant {string} * @constant {string}
*/ */
const version = '1.0.1'; const version = '1.0.2';
/* /*
Copyright 2022 Yarmo Mackenbach Copyright 2022 Yarmo Mackenbach

File diff suppressed because one or more lines are too long

View file

@ -1,6 +1,6 @@
{ {
"name": "doipjs", "name": "doipjs",
"version": "1.0.1", "version": "1.0.2",
"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",

View file

@ -22,4 +22,4 @@ limitations under the License.
* doip.js library version * doip.js library version
* @constant {string} * @constant {string}
*/ */
export const version = '1.0.1' export const version = '1.0.2'