Release 0.12.5

This commit is contained in:
Yarmo Mackenbach 2021-05-21 15:29:44 +02:00
parent 44fd519658
commit 94e581ceb1
No known key found for this signature in database
GPG key ID: 37367F4AF4087AD1
4 changed files with 13 additions and 5 deletions

View file

@ -6,6 +6,11 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
## [Unreleased]
## [0.12.5] - 2021-05-21
### Fixed
- Keybase key fetching
- Fix IRC NickServ command syntax
## [0.12.4] - 2021-04-30
### Fixed
- Headings in CHANGELOG.md

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.4",
"version": "0.12.5",
"description": "Decentralized OpenPGP Identity Proofs library in Node.js",
"main": "src/index.js",
"dependencies": {
@ -9819,13 +9819,15 @@ if (jsEnv.isNode) {
port: 6697,
secure: true,
channels: [],
showErrors: false,
debug: false
})
const reKey = /[a-zA-Z0-9\-\_]+\s+:\s(openpgp4fpr\:.*)/
const reEnd = /End\sof\s.*\staxonomy./
let keys = []
client.addListener('registered', (message) => {
client.send(`PRIVMSG NickServ :TAXONOMY ${data.nick}`)
client.send(`PRIVMSG NickServ TAXONOMY ${data.nick}`)
})
client.addListener('notice', (nick, to, text, message) => {
if (reKey.test(text)) {
@ -10308,8 +10310,9 @@ exports.fetchWKD = (identifier) => {
exports.fetchKeybase = (username, fingerprint) => {
return new Promise(async (resolve, reject) => {
const keyLink = `https://keybase.io/${username}/pgp_keys.asc?fingerprint=${fingerprint}`
let rawKeyContent
try {
const rawKeyContent = await req(opts.keyLink)
rawKeyContent = await req(keyLink)
.then((response) => {
if (response.status === 200) {
return response

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.4",
"version": "0.12.5",
"description": "Decentralized OpenPGP Identity Proofs library in Node.js",
"main": "src/index.js",
"dependencies": {