-
Notifications
You must be signed in to change notification settings - Fork 614
fix(deps): update dependency nodemailer to v8 [security] #8341
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
base: main
Are you sure you want to change the base?
Changes from all commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,5 @@ | ||
| --- | ||
| '@backstage-community/plugin-feedback-backend': patch | ||
| --- | ||
|
|
||
| Updated dependency `nodemailer` to `^8.0.0`. |
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -51,7 +51,7 @@ | |
| "express-promise-router": "^4.1.0", | ||
| "knex": "^3.1.0", | ||
| "node-fetch": "^2.6.7", | ||
| "nodemailer": "^7.0.7", | ||
| "nodemailer": "^8.0.0", | ||
| "short-uuid": "^4.2.2", | ||
|
Comment on lines
+54
to
55
|
||
| "yn": "^4.0.0" | ||
|
Comment on lines
52
to
56
|
||
| }, | ||
|
Comment on lines
51
to
57
|
||
|
|
||
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Nodemailer was bumped to v8, but the TypeScript typings are still pinned to
@types/nodemailerv7.0.11. This can lead to incorrect typings or TS build failures if the v8 surface differs. Consider updating@types/nodemailerto a v8-compatible release (if available) or removing it if Nodemailer v8 ships its own types.