Release 0.12.7

This commit is contained in:
Yarmo Mackenbach 2021-06-03 10:01:05 +02:00
parent 3d99d2373d
commit ddc80c9380
No known key found for this signature in database
GPG key ID: 37367F4AF4087AD1
4 changed files with 13 additions and 6 deletions

View file

@ -6,6 +6,10 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
## [Unreleased]
## [0.12.7] - 2021-06-03
### Fixed
- IRC nickname regex
## [0.12.6] - 2021-05-23
### Fixed
- DNS fetcher not running

9
dist/doip.js vendored
View file

@ -7515,7 +7515,7 @@ module.exports.default = exports.default;
},{"./util/assertString":107}],113:[function(require,module,exports){
module.exports={
"name": "doipjs",
"version": "0.12.6",
"version": "0.12.7",
"description": "Decentralized OpenPGP Identity Proofs library in Node.js",
"main": "src/index.js",
"dependencies": {
@ -7586,7 +7586,6 @@ module.exports={
"openpgp": "global:openpgp"
}
}
},{}],114:[function(require,module,exports){
/*
Copyright 2021 Yarmo Mackenbach
@ -8581,7 +8580,7 @@ limitations under the License.
*/
const E = require('../enums')
const reURI = /^irc\:\/\/(.*)\/([a-zA-Z0-9]*)/
const reURI = /^irc\:\/\/(.*)\/([a-zA-Z0-9\-\[\]\\\`\_\^\{\|\}]*)/
const processURI = (uri) => {
const match = uri.match(reURI)
@ -8629,6 +8628,10 @@ const tests = [
uri: 'irc://chat.ircserver.org/alice?param=123',
shouldMatch: true,
},
{
uri: 'irc://chat.ircserver.org/alice_bob',
shouldMatch: true,
},
{
uri: 'https://chat.ircserver.org/alice',
shouldMatch: false,

2
dist/doip.min.js vendored

File diff suppressed because one or more lines are too long

View file

@ -1,6 +1,6 @@
{
"name": "doipjs",
"version": "0.12.6",
"version": "0.12.7",
"description": "Decentralized OpenPGP Identity Proofs library in Node.js",
"main": "src/index.js",
"dependencies": {