Bump the npm_and_yarn group across 6 directories with 3 updates
Type: Pull Request
State: Open
Association: Unknown
Comments: 3
(6 months ago)
(6 months ago)
dependencies javascript
Bumps the npm_and_yarn group with 1 update in the / directory: @modelcontextprotocol/sdk.
Bumps the npm_and_yarn group with 1 update in the /engine directory: esbuild.
Bumps the npm_and_yarn group with 1 update in the /mcp/reengine-browser directory: @modelcontextprotocol/sdk.
Bumps the npm_and_yarn group with 1 update in the /mcp/reengine-core directory: @modelcontextprotocol/sdk.
Bumps the npm_and_yarn group with 2 updates in the /mcp/reengine-integrations directory: @modelcontextprotocol/sdk and nodemailer.
Bumps the npm_and_yarn group with 1 update in the /mcp/reengine-tinyfish directory: @modelcontextprotocol/sdk.
Updates @modelcontextprotocol/sdk from 0.4.0 to 1.25.2
Release notes
Sourced from @modelcontextprotocol/sdk's releases.
v1.25.2
What's Changed
- ci: trigger workflow on v1.x branch by
@felixweinbergerin modelcontextprotocol/typescript-sdk#1319- fix: README badges links destinations by
@antonpk1in modelcontextprotocol/typescript-sdk#907- fix: prevent ReDoS in UriTemplate regex patterns (v1.x backport) by
@pcarletonin modelcontextprotocol/typescript-sdk#1365New Contributors
@antonpk1made their first contribution in modelcontextprotocol/typescript-sdk#907Full Changelog: https://github.com/modelcontextprotocol/typescript-sdk/compare/1.25.1...v1.25.2
1.25.1
What's Changed
- spec types - backwards compatibility changes by
@KKonstantinovin modelcontextprotocol/typescript-sdk#1306- chore: bump version for patch fix by
@felixweinbergerin modelcontextprotocol/typescript-sdk#1307Full Changelog: https://github.com/modelcontextprotocol/typescript-sdk/compare/1.25.0...1.25.1
1.25.0
What's Changed
- list changed handlers on client constructor by
@mattzcareyin modelcontextprotocol/typescript-sdk#1206- Role - moved from inline to reusable type by
@KKonstantinovin modelcontextprotocol/typescript-sdk#1221- fix: use versioned npm tag for non-main branch releases by
@pcarletonin modelcontextprotocol/typescript-sdk#1236- No automatic completion support unless needed - Revisited yet again by
@cliffhallin modelcontextprotocol/typescript-sdk#1237- fix: Support updating output schema by
@vincent0426in modelcontextprotocol/typescript-sdk#1048- Remove type dependency on
@cfworker/json-schemaby@LucaButBoringin modelcontextprotocol/typescript-sdk#1229- Relocate tests under
/testby@KKonstantinovin modelcontextprotocol/typescript-sdk#1220- Fix tsconfig: remove tests by
@KKonstantinovin modelcontextprotocol/typescript-sdk#1240- tsconfig - tests and build fix by
@KKonstantinovin modelcontextprotocol/typescript-sdk#1243- fix a typo in examples README by
@DaleSeoin modelcontextprotocol/typescript-sdk#1246- Protocol date validation by
@mattzcareyin modelcontextprotocol/typescript-sdk#1247- Flaky test fix on Types.test.ts by
@KKonstantinovin modelcontextprotocol/typescript-sdk#1244- SPEC COMPLIANCE: Remove loose/passthrough types not allowed/defined by MCP spec + Task types by
@KKonstantinovin modelcontextprotocol/typescript-sdk#1242- Follow-up fixes for PR #1242 by
@felixweinbergerin modelcontextprotocol/typescript-sdk#1274- Update server examples and docs by
@DaleSeoin modelcontextprotocol/typescript-sdk#1285- Update TypeScript config to ES2020 to fix AJV imports by
@mattzcareyin modelcontextprotocol/typescript-sdk#1297- Fix Zod v4 schema description extraction by
@felixweinbergerin modelcontextprotocol/typescript-sdk#1296- Add optional description field to Implementation schema by
@calclaviain modelcontextprotocol/typescript-sdk#1295- Add theme property to Icon schema by
@DaleSeoin modelcontextprotocol/typescript-sdk#1290- feat: fetch transport by
@mattzcareyin modelcontextprotocol/typescript-sdk#1209- chore: bump version for release by
@felixweinbergerin modelcontextprotocol/typescript-sdk#1301New Contributors
@vincent0426made their first contribution in modelcontextprotocol/typescript-sdk#1048Full Changelog: https://github.com/modelcontextprotocol/typescript-sdk/compare/1.24.3...1.25.0
1.24.3
What's Changed
... (truncated)
Commits
b392f02fix: prevent ReDoS in UriTemplate regex patterns (v1.x backport) (#1365)a0c9b13fix: README badges links destinations (#907)6dd08acci: trigger workflow on v1.x branch (#1319)384311bchore: bump version for patch fix (#1307)fb07af8spec types - backwards compatibility changes (#1306)2b20ca9chore: bump version for release (#1301)67ba7adfeat: fetch transport (#1209)1d42547Add theme property to Icon schema (#1290)54303b4Add optional description field to Implementation schema (#1295)9941294Fix Zod v4 schema description extraction (#1296)- Additional commits viewable in compare view
Maintainer changes
This version was pushed to npm by pcarleton, a new releaser for @modelcontextprotocol/sdk since your current version.
Updates esbuild from 0.21.5 to 0.27.2
Release notes
Sourced from esbuild's releases.
v0.27.2
Allow import path specifiers starting with
#/(#4361)Previously the specification for
package.jsondisallowed import path specifiers starting with#/, but this restriction has recently been relaxed and support for it is being added across the JavaScript ecosystem. One use case is using it for a wildcard pattern such as mapping#/*to./src/*(previously you had to use another character such as#_*instead, which was more confusing). There is some more context in nodejs/node#49182.This change was contributed by
@hybrist.Automatically add the
-webkit-maskprefix (#4357, #4358)This release automatically adds the
-webkit-vendor prefix for themaskCSS shorthand property:/* Original code */ main { mask: url(x.png) center/5rem no-repeat }/* Old output (with --target=chrome110) */ main { mask: url(x.png) center/5rem no-repeat; }
/* New output (with --target=chrome110) */ main { -webkit-mask: url(x.png) center/5rem no-repeat; mask: url(x.png) center/5rem no-repeat; }
This change was contributed by
@BPJEnnova.Additional minification of
switchstatements (#4176, #4359)This release contains additional minification patterns for reducing
switchstatements. Here is an example:// Original code switch (x) { case 0: foo() break case 1: default: bar() }// Old output (with --minify) switch(x){case 0:foo();break;case 1:default:bar()}
// New output (with --minify)
... (truncated)
Changelog
Sourced from esbuild's changelog.
Changelog: 2024
This changelog documents all esbuild versions published in the year 2024 (versions 0.19.12 through 0.24.2).
0.24.2
Fix regression with
--defineandimport.meta(#4010, #4012, #4013)The previous change in version 0.24.1 to use a more expression-like parser for
definevalues to allow quoted property names introduced a regression that removed the ability to use--define:import.meta=.... Even thoughimportis normally a keyword that can't be used as an identifier, ES modules special-case theimport.metaexpression to behave like an identifier anyway. This change fixes the regression.This fix was contributed by
@sapphi-red.0.24.1
Allow
es2024as a target intsconfig.json(#4004)TypeScript recently added
es2024as a compilation target, so esbuild now supports this in thetargetfield oftsconfig.jsonfiles, such as in the following configuration file:{ "compilerOptions": { "target": "ES2024" } }As a reminder, the only thing that esbuild uses this field for is determining whether or not to use legacy TypeScript behavior for class fields. You can read more in the documentation.
This fix was contributed by
@billyjanitsch.Allow automatic semicolon insertion after
get/setThis change fixes a grammar bug in the parser that incorrectly treated the following code as a syntax error:
class Foo { get *x() {} set *y() {} }The above code will be considered valid starting with this release. This change to esbuild follows a similar change to TypeScript which will allow this syntax starting with TypeScript 5.7.
Allow quoted property names in
--defineand--pure(#4008)The
defineandpureAPI options now accept identifier expressions containing quoted property names. Previously all identifiers in the identifier expression had to be bare identifiers. This change now makes--defineand--pureconsistent with--global-name, which already supported quoted property names. For example, the following is now possible:
... (truncated)
Commits
cd83297publish 0.27.2 to npm2759721additional tests forswitchwithbreakfd2b4b3update release notesc8d93a7fix #4357: -webkit- prefix for mask shorthand (#4358)92ff12ccompat table: update@types/nodea35ecebcompat table: fix a type error with the new typesf598984fixmake compat-tableto install dependenciesf7f6df0release notes for #43616f8ec15fix: allow subpath imports that start with#/(#4361)f7ae61fminify some switch statements to if-else statement- Additional commits viewable in compare view
Maintainer changes
This version was pushed to npm by [GitHub Actions](https://www.npmjs.com/~GitHub Actions), a new releaser for esbuild since your current version.
Updates @modelcontextprotocol/sdk from 0.4.0 to 1.25.2
Release notes
Sourced from @modelcontextprotocol/sdk's releases.
v1.25.2
What's Changed
- ci: trigger workflow on v1.x branch by
@felixweinbergerin modelcontextprotocol/typescript-sdk#1319- fix: README badges links destinations by
@antonpk1in modelcontextprotocol/typescript-sdk#907- fix: prevent ReDoS in UriTemplate regex patterns (v1.x backport) by
@pcarletonin modelcontextprotocol/typescript-sdk#1365New Contributors
@antonpk1made their first contribution in modelcontextprotocol/typescript-sdk#907Full Changelog: https://github.com/modelcontextprotocol/typescript-sdk/compare/1.25.1...v1.25.2
1.25.1
What's Changed
- spec types - backwards compatibility changes by
@KKonstantinovin modelcontextprotocol/typescript-sdk#1306- chore: bump version for patch fix by
@felixweinbergerin modelcontextprotocol/typescript-sdk#1307Full Changelog: https://github.com/modelcontextprotocol/typescript-sdk/compare/1.25.0...1.25.1
1.25.0
What's Changed
- list changed handlers on client constructor by
@mattzcareyin modelcontextprotocol/typescript-sdk#1206- Role - moved from inline to reusable type by
@KKonstantinovin modelcontextprotocol/typescript-sdk#1221- fix: use versioned npm tag for non-main branch releases by
@pcarletonin modelcontextprotocol/typescript-sdk#1236- No automatic completion support unless needed - Revisited yet again by
@cliffhallin modelcontextprotocol/typescript-sdk#1237- fix: Support updating output schema by
@vincent0426in modelcontextprotocol/typescript-sdk#1048- Remove type dependency on
@cfworker/json-schemaby@LucaButBoringin modelcontextprotocol/typescript-sdk#1229- Relocate tests under
/testby@KKonstantinovin modelcontextprotocol/typescript-sdk#1220- Fix tsconfig: remove tests by
@KKonstantinovin modelcontextprotocol/typescript-sdk#1240- tsconfig - tests and build fix by
@KKonstantinovin modelcontextprotocol/typescript-sdk#1243- fix a typo in examples README by
@DaleSeoin modelcontextprotocol/typescript-sdk#1246- Protocol date validation by
@mattzcareyin modelcontextprotocol/typescript-sdk#1247- Flaky test fix on Types.test.ts by
@KKonstantinovin modelcontextprotocol/typescript-sdk#1244- SPEC COMPLIANCE: Remove loose/passthrough types not allowed/defined by MCP spec + Task types by
@KKonstantinovin modelcontextprotocol/typescript-sdk#1242- Follow-up fixes for PR #1242 by
@felixweinbergerin modelcontextprotocol/typescript-sdk#1274- Update server examples and docs by
@DaleSeoin modelcontextprotocol/typescript-sdk#1285- Update TypeScript config to ES2020 to fix AJV imports by
@mattzcareyin modelcontextprotocol/typescript-sdk#1297- Fix Zod v4 schema description extraction by
@felixweinbergerin modelcontextprotocol/typescript-sdk#1296- Add optional description field to Implementation schema by
@calclaviain modelcontextprotocol/typescript-sdk#1295- Add theme property to Icon schema by
@DaleSeoin modelcontextprotocol/typescript-sdk#1290- feat: fetch transport by
@mattzcareyin modelcontextprotocol/typescript-sdk#1209- chore: bump version for release by
@felixweinbergerin modelcontextprotocol/typescript-sdk#1301New Contributors
@vincent0426made their first contribution in modelcontextprotocol/typescript-sdk#1048Full Changelog: https://github.com/modelcontextprotocol/typescript-sdk/compare/1.24.3...1.25.0
1.24.3
What's Changed
... (truncated)
Commits
b392f02fix: prevent ReDoS in UriTemplate regex patterns (v1.x backport) (#1365)a0c9b13fix: README badges links destinations (#907)6dd08acci: trigger workflow on v1.x branch (#1319)384311bchore: bump version for patch fix (#1307)fb07af8spec types - backwards compatibility changes (#1306)2b20ca9chore: bump version for release (#1301)67ba7adfeat: fetch transport (#1209)1d42547Add theme property to Icon schema (#1290)54303b4Add optional description field to Implementation schema (#1295)9941294Fix Zod v4 schema description extraction (#1296)- Additional commits viewable in compare view
Maintainer changes
This version was pushed to npm by pcarleton, a new releaser for @modelcontextprotocol/sdk since your current version.
Updates @modelcontextprotocol/sdk from 0.4.0 to 1.25.2
Release notes
Sourced from @modelcontextprotocol/sdk's releases.
v1.25.2
What's Changed
- ci: trigger workflow on v1.x branch by
@felixweinbergerin modelcontextprotocol/typescript-sdk#1319- fix: README badges links destinations by
@antonpk1in modelcontextprotocol/typescript-sdk#907- fix: prevent ReDoS in UriTemplate regex patterns (v1.x backport) by
@pcarletonin modelcontextprotocol/typescript-sdk#1365New Contributors
@antonpk1made their first contribution in modelcontextprotocol/typescript-sdk#907Full Changelog: https://github.com/modelcontextprotocol/typescript-sdk/compare/1.25.1...v1.25.2
1.25.1
What's Changed
- spec types - backwards compatibility changes by
@KKonstantinovin modelcontextprotocol/typescript-sdk#1306- chore: bump version for patch fix by
@felixweinbergerin modelcontextprotocol/typescript-sdk#1307Full Changelog: https://github.com/modelcontextprotocol/typescript-sdk/compare/1.25.0...1.25.1
1.25.0
What's Changed
- list changed handlers on client constructor by
@mattzcareyin modelcontextprotocol/typescript-sdk#1206- Role - moved from inline to reusable type by
@KKonstantinovin modelcontextprotocol/typescript-sdk#1221- fix: use versioned npm tag for non-main branch releases by
@pcarletonin modelcontextprotocol/typescript-sdk#1236- No automatic completion support unless needed - Revisited yet again by
@cliffhallin modelcontextprotocol/typescript-sdk#1237- fix: Support updating output schema by
@vincent0426in modelcontextprotocol/typescript-sdk#1048- Remove type dependency on
@cfworker/json-schemaby@LucaButBoringin modelcontextprotocol/typescript-sdk#1229- Relocate tests under
/testby@KKonstantinovin modelcontextprotocol/typescript-sdk#1220- Fix tsconfig: remove tests by
@KKonstantinovin modelcontextprotocol/typescript-sdk#1240- tsconfig - tests and build fix by
@KKonstantinovin modelcontextprotocol/typescript-sdk#1243- fix a typo in examples README by
@DaleSeoin modelcontextprotocol/typescript-sdk#1246- Protocol date validation by
@mattzcareyin modelcontextprotocol/typescript-sdk#1247- Flaky test fix on Types.test.ts by
@KKonstantinovin modelcontextprotocol/typescript-sdk#1244- SPEC COMPLIANCE: Remove loose/passthrough types not allowed/defined by MCP spec + Task types by
@KKonstantinovin modelcontextprotocol/typescript-sdk#1242- Follow-up fixes for PR #1242 by
@felixweinbergerin modelcontextprotocol/typescript-sdk#1274- Update server examples and docs by
@DaleSeoin modelcontextprotocol/typescript-sdk#1285- Update TypeScript config to ES2020 to fix AJV imports by
@mattzcareyin modelcontextprotocol/typescript-sdk#1297- Fix Zod v4 schema description extraction by
@felixweinbergerin modelcontextprotocol/typescript-sdk#1296- Add optional description field to Implementation schema by
@calclaviain modelcontextprotocol/typescript-sdk#1295- Add theme property to Icon schema by
@DaleSeoin modelcontextprotocol/typescript-sdk#1290- feat: fetch transport by
@mattzcareyin modelcontextprotocol/typescript-sdk#1209- chore: bump version for release by
@felixweinbergerin modelcontextprotocol/typescript-sdk#1301New Contributors
@vincent0426made their first contribution in modelcontextprotocol/typescript-sdk#1048Full Changelog: https://github.com/modelcontextprotocol/typescript-sdk/compare/1.24.3...1.25.0
1.24.3
What's Changed
... (truncated)
Commits
b392f02fix: prevent ReDoS in UriTemplate regex patterns (v1.x backport) (#1365)a0c9b13fix: README badges links destinations (#907)6dd08acci: trigger workflow on v1.x branch (#1319)384311bchore: bump version for patch fix (#1307)fb07af8spec types - backwards compatibility changes (#1306)2b20ca9chore: bump version for release (#1301)67ba7adfeat: fetch transport (#1209)1d42547Add theme property to Icon schema (#1290)54303b4Add optional description field to Implementation schema (#1295)9941294Fix Zod v4 schema description extraction (#1296)- Additional commits viewable in compare view
Maintainer changes
This version was pushed to npm by pcarleton, a new releaser for @modelcontextprotocol/sdk since your current version.
Updates @modelcontextprotocol/sdk from 0.4.0 to 1.25.2
Release notes
Sourced from @modelcontextprotocol/sdk's releases.
v1.25.2
What's Changed
- ci: trigger workflow on v1.x branch by
@felixweinbergerin modelcontextprotocol/typescript-sdk#1319- fix: README badges links destinations by
@antonpk1in modelcontextprotocol/typescript-sdk#907- fix: prevent ReDoS in UriTemplate regex patterns (v1.x backport) by
@pcarletonin modelcontextprotocol/typescript-sdk#1365New Contributors
@antonpk1made their first contribution in modelcontextprotocol/typescript-sdk#907Full Changelog: https://github.com/modelcontextprotocol/typescript-sdk/compare/1.25.1...v1.25.2
1.25.1
What's Changed
- spec types - backwards compatibility changes by
@KKonstantinovin modelcontextprotocol/typescript-sdk#1306- chore: bump version for patch fix by
@felixweinbergerin modelcontextprotocol/typescript-sdk#1307Full Changelog: https://github.com/modelcontextprotocol/typescript-sdk/compare/1.25.0...1.25.1
1.25.0
What's Changed
- list changed handlers on client constructor by
@mattzcareyin modelcontextprotocol/typescript-sdk#1206- Role - moved from inline to reusable type by
@KKonstantinovin modelcontextprotocol/typescript-sdk#1221- fix: use versioned npm tag for non-main branch releases by
@pcarletonin modelcontextprotocol/typescript-sdk#1236- No automatic completion support unless needed - Revisited yet again by
@cliffhallin modelcontextprotocol/typescript-sdk#1237- fix: Support updating output schema by
@vincent0426in modelcontextprotocol/typescript-sdk#1048- Remove type dependency on
@cfworker/json-schemaby@LucaButBoringin modelcontextprotocol/typescript-sdk#1229- Relocate tests under
/testby@KKonstantinovin modelcontextprotocol/typescript-sdk#1220- Fix tsconfig: remove tests by
@KKonstantinovin modelcontextprotocol/typescript-sdk#1240- tsconfig - tests and build fix by
@KKonstantinovin modelcontextprotocol/typescript-sdk#1243- fix a typo in examples README by
@DaleSeoin modelcontextprotocol/typescript-sdk#1246- Protocol date validation by
@mattzcareyin modelcontextprotocol/typescript-sdk#1247- Flaky test fix on Types.test.ts by
@KKonstantinovin modelcontextprotocol/typescript-sdk#1244- SPEC COMPLIANCE: Remove loose/passthrough types not allowed/defined by MCP spec + Task types by
@KKonstantinovin modelcontextprotocol/typescript-sdk#1242- Follow-up fixes for PR #1242 by
@felixweinbergerin modelcontextprotocol/typescript-sdk#1274- Update server examples and docs by
@DaleSeoin modelcontextprotocol/typescript-sdk#1285- Update TypeScript config to ES2020 to fix AJV imports by
@mattzcareyin modelcontextprotocol/typescript-sdk#1297- Fix Zod v4 schema description extraction by
@felixweinbergerin modelcontextprotocol/typescript-sdk#1296- Add optional description field to Implementation schema by
@calclaviain modelcontextprotocol/typescript-sdk#1295- Add theme property to Icon schema by
@DaleSeoin modelcontextprotocol/typescript-sdk#1290- feat: fetch transport by
@mattzcareyin modelcontextprotocol/typescript-sdk#1209- chore: bump version for release by
@felixweinbergerin modelcontextprotocol/typescript-sdk#1301New Contributors
@vincent0426made their first contribution in modelcontextprotocol/typescript-sdk#1048Full Changelog: https://github.com/modelcontextprotocol/typescript-sdk/compare/1.24.3...1.25.0
1.24.3
What's Changed
... (truncated)
Commits
b392f02fix: prevent ReDoS in UriTemplate regex patterns (v1.x backport) (#1365)a0c9b13fix: README badges links destinations (#907)6dd08acci: trigger workflow on v1.x branch (#1319)384311bchore: bump version for patch fix (#1307)fb07af8spec types - backwards compatibility changes (#1306)2b20ca9chore: bump version for release (#1301)67ba7adfeat: fetch transport (#1209)1d42547Add theme property to Icon schema (#1290)54303b4Add optional description field to Implementation schema (#1295)9941294Fix Zod v4 schema description extraction (#1296)- Additional commits viewable in compare view
Maintainer changes
This version was pushed to npm by pcarleton, a new releaser for @modelcontextprotocol/sdk since your current version.
Updates nodemailer from 6.10.1 to 7.0.11
Release notes
Sourced from nodemailer's releases.
v7.0.11
7.0.11 (2025-11-26)
Bug Fixes
- prevent stack overflow DoS in addressparser with deeply nested groups (b61b9c0)
v7.0.10
7.0.10 (2025-10-23)
Bug Fixes
- Increase data URI size limit from 100KB to 50MB and preserve content type (28dbf3f)
v7.0.9
7.0.9 (2025-10-07)
Bug Fixes
- release: Trying to fix release proecess by upgrading Node version in runner (579fce4)
v7.0.8
7.0.8 (2025-10-07)
Bug Fixes
- addressparser: flatten nested groups per RFC 5322 (8f8a77c)
v7.0.7
7.0.7 (2025-10-05)
Bug Fixes
- addressparser: Fixed addressparser handling of quoted nested email addresses (1150d99)
- dns: add memory leak prevention for DNS cache (0240d67)
- linter: Updated eslint and created prettier formatting task (df13b74)
- refresh expired DNS cache on error (#1759) (ea0fc5a)
- resolve linter errors in DNS cache tests (3b8982c)
v7.0.6
7.0.6 (2025-08-27)
Bug Fixes
... (truncated)
Changelog
Sourced from nodemailer's changelog.
7.0.11 (2025-11-26)
Bug Fixes
- prevent stack overflow DoS in addressparser with deeply nested groups (b61b9c0)
7.0.10 (2025-10-23)
Bug Fixes
- Increase data URI size limit from 100KB to 50MB and preserve content type (28dbf3f)
7.0.9 (2025-10-07)
Bug Fixes
- release: Trying to fix release proecess by upgrading Node version in runner (579fce4)
7.0.8 (2025-10-07)
Bug Fixes
- addressparser: flatten nested groups per RFC 5322 (8f8a77c)
7.0.7 (2025-10-05)
Bug Fixes
- addressparser: Fixed addressparser handling of quoted nested email addresses (1150d99)
- dns: add memory leak prevention for DNS cache (0240d67)
- linter: Updated eslint and created prettier formatting task (df13b74)
- refresh expired DNS cache on error (#1759) (ea0fc5a)
- resolve linter errors in DNS cache tests (3b8982c)
7.0.6 (2025-08-27)
Bug Fixes
- encoder: avoid silent data loss by properly flushing trailing base64 (#1747) (01ae76f)
- handle multiple XOAUTH2 token requests correctly (#1754) (dbe0028)
- ReDoS vulnerability in parseDataURI and _processDataUrl (#1755) (90b3e24)
7.0.5 (2025-07-07)
Bug Fixes
... (truncated)
Commits
3d17dbechore(master): release 7.0.11 (#1783)15879f8Bumped dev dependenciesb61b9c0fix: prevent stack overflow DoS in addressparser with deeply nested groups4175e4bchore(master): release 7.0.10 (#1776)d882ccfMerge branch 'master' of github.com:nodemailer/nodemailer1d7e4f7Bumped deps10bd871chore: correct typo in variable name (#1773)-
Package Dependencies
Technical Details
| ID: | 13508013 |
| UUID: | 3894065099 |
| Node ID: | PR_kwDORICMKs7BVr28 |
| Host: | GitHub |
| Repository: | stackconsult/RE-Engine |