Comparing version 1.0.130 to 1.0.131
# CHANGELOG | ||
- 1.0.131 - 2023-06-29 | ||
- Fixed issue with labels that start with tilde | ||
- 1.0.129 - 2023-06-12 | ||
@@ -4,0 +8,0 @@ |
@@ -193,2 +193,11 @@ /* eslint new-cap: 0 */ | ||
if (nextChr !== '{') { | ||
if (imapFormalSyntax['ATOM-CHAR']().indexOf(nextChr)) { | ||
// treat as ATOM | ||
this.currentNode = this.createNode(this.currentNode, this.pos + i); | ||
this.currentNode.type = 'ATOM'; | ||
this.currentNode.value = chr; | ||
this.state = 'ATOM'; | ||
break; | ||
} | ||
throw new Error(`Unexpected literal8 marker at position ${this.pos + i} [E9]`); | ||
@@ -195,0 +204,0 @@ } |
{ | ||
"name": "imapflow", | ||
"version": "1.0.130", | ||
"version": "1.0.131", | ||
"description": "IMAP Client for Node", | ||
@@ -34,5 +34,5 @@ "main": "./lib/imap-flow.js", | ||
"@babel/preset-env": "7.22.5", | ||
"@types/node": "20.3.1", | ||
"@types/node": "20.3.2", | ||
"braintree-jsdoc-template": "3.3.0", | ||
"eslint": "8.42.0", | ||
"eslint": "8.43.0", | ||
"eslint-config-nodemailer": "1.2.0", | ||
@@ -43,3 +43,3 @@ "eslint-config-prettier": "8.8.0", | ||
"grunt-contrib-nodeunit": "5.0.0", | ||
"grunt-eslint": "24.1.0", | ||
"grunt-eslint": "24.2.0", | ||
"jsdoc": "3.6.11", | ||
@@ -46,0 +46,0 @@ "st": "3.0.0", |
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
554106
12324