Comparing version 1.0.165 to 1.0.166
# Changelog | ||
## [1.0.166](https://github.com/postalsys/imapflow/compare/v1.0.165...v1.0.166) (2024-11-05) | ||
### Bug Fixes | ||
* **login:** Always treat username and password as strings, not atom ([01b3471](https://github.com/postalsys/imapflow/commit/01b347145551c046e4400b8824be9be3c69d353b)) | ||
## [1.0.165](https://github.com/postalsys/imapflow/compare/v1.0.164...v1.0.165) (2024-11-01) | ||
@@ -4,0 +11,0 @@ |
@@ -14,4 +14,4 @@ 'use strict'; | ||
let response = await connection.exec('LOGIN', [ | ||
{ type: 'ATOM', value: username }, | ||
{ type: 'ATOM', value: password, sensitive: true } | ||
{ type: 'STRING', value: username }, | ||
{ type: 'STRING', value: password, sensitive: true } | ||
]); | ||
@@ -18,0 +18,0 @@ response.next(); |
{ | ||
"name": "imapflow", | ||
"version": "1.0.165", | ||
"version": "1.0.166", | ||
"description": "IMAP Client for Node", | ||
@@ -35,3 +35,3 @@ "main": "./lib/imap-flow.js", | ||
"@babel/preset-env": "7.26.0", | ||
"@types/node": "22.8.6", | ||
"@types/node": "22.9.0", | ||
"eslint": "8.57.0", | ||
@@ -38,0 +38,0 @@ "eslint-config-nodemailer": "1.2.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
593411