Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 5 additions & 0 deletions workspaces/feedback/.changeset/renovate-2bef006.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
---
'@backstage-community/plugin-feedback-backend': patch
---

Updated dependency `@types/nodemailer` to `8.0.0`.
Original file line number Diff line number Diff line change
Expand Up @@ -60,7 +60,7 @@
"@backstage/plugin-auth-backend": "^0.25.2",
"@backstage/plugin-auth-backend-module-guest-provider": "^0.2.10",
"@backstage/plugin-catalog-backend": "^3.0.0",
"@types/nodemailer": "7.0.11",
"@types/nodemailer": "8.0.0",

Copilot AI Apr 23, 2026

Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

@types/nodemailer is a major-version bump, which commonly includes breaking type changes. Since the PR only updates the dependency, please ensure CI (or at least the workspace TypeScript build/tests) is run to catch any new type errors introduced by v8; if CI isn’t part of this PR workflow, consider adding a small follow-up fix commit if compilation/typecheck fails.

Suggested change
"@types/nodemailer": "8.0.0",
"@types/nodemailer": "^6.4.17",

Copilot uses AI. Check for mistakes.
"@types/supertest": "7.2.0",
"msw": "1.3.5",
"react": "^16.13.1 || ^17.0.0 || ^18.0.0",
Expand Down
10 changes: 5 additions & 5 deletions workspaces/feedback/yarn.lock
Original file line number Diff line number Diff line change
Expand Up @@ -2944,7 +2944,7 @@ __metadata:
"@backstage/plugin-catalog-backend": "npm:^3.0.0"
"@backstage/plugin-notifications-node": "npm:^0.2.17"
"@types/express": "npm:*"
"@types/nodemailer": "npm:7.0.11"
"@types/nodemailer": "npm:8.0.0"
"@types/supertest": "npm:7.2.0"
axios: "npm:^1.6.4"
express: "npm:^4.17.1"
Expand Down Expand Up @@ -10203,12 +10203,12 @@ __metadata:
languageName: node
linkType: hard

"@types/nodemailer@npm:7.0.11":
version: 7.0.11
resolution: "@types/nodemailer@npm:7.0.11"
"@types/nodemailer@npm:8.0.0":
version: 8.0.0
resolution: "@types/nodemailer@npm:8.0.0"
dependencies:
"@types/node": "npm:*"
checksum: 10/a657038e919603f1e7136bd47c631c4ef2857576f57d5024d37a2581d4993ef352681e9264604747db7055347e19818add8ab9f964be0f116dd437f5d31ff0e5
checksum: 10/d1178b557e8c547018e708459af06fdf2e9cfd6d65fed109517cddfe6b5add6201d941882a2e4eeede529de08ae71a68fb2a1d8f1c41cb3761d3a6c2458025fe
languageName: node
linkType: hard

Expand Down
Loading