mirror of
https://codeberg.org/keyoxide/doipjs.git
synced 2024-12-22 14:39:28 -07:00
Release 0.12.7
This commit is contained in:
parent
3d99d2373d
commit
ddc80c9380
4 changed files with 13 additions and 6 deletions
|
@ -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
9
dist/doip.js
vendored
|
@ -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
2
dist/doip.min.js
vendored
File diff suppressed because one or more lines are too long
|
@ -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": {
|
||||
|
|
Loading…
Reference in a new issue