Skip to content

chore(deps): bump the production group in /patchnotes-email with 3 updates#547

Merged
paulvanbrenk merged 1 commit intomainfrom
dependabot/npm_and_yarn/patchnotes-email/production-a178470325
Mar 18, 2026
Merged

chore(deps): bump the production group in /patchnotes-email with 3 updates#547
paulvanbrenk merged 1 commit intomainfrom
dependabot/npm_and_yarn/patchnotes-email/production-a178470325

Conversation

@dependabot
Copy link
Contributor

@dependabot dependabot bot commented on behalf of github Mar 18, 2026

Bumps the production group in /patchnotes-email with 3 updates: @react-email/components, esbuild-wasm and resend.

Updates @react-email/components from 1.0.9 to 1.0.10

Release notes

Sourced from @​react-email/components's releases.

@​react-email/components@​1.0.10

Patch Changes

  • Updated dependencies [444d9df]
    • @​react-email/tailwind@​2.0.6
Changelog

Sourced from @​react-email/components's changelog.

1.0.10

Patch Changes

  • Updated dependencies [444d9df]
    • @​react-email/tailwind@​2.0.6
Commits

Updates esbuild-wasm from 0.27.3 to 0.27.4

Release notes

Sourced from esbuild-wasm's releases.

v0.27.4

  • Fix a regression with CSS media queries (#4395, #4405, #4406)

    Version 0.25.11 of esbuild introduced support for parsing media queries. This unintentionally introduced a regression with printing media queries that use the <media-type> and <media-condition-without-or> grammar. Specifically, esbuild was failing to wrap an or clause with parentheses when inside <media-condition-without-or>. This release fixes the regression.

    Here is an example:

    /* Original code */
    @media only screen and ((min-width: 10px) or (min-height: 10px)) {
      a { color: red }
    }
    /* Old output (incorrect) */
    @​media only screen and (min-width: 10px) or (min-height: 10px) {
    a {
    color: red;
    }
    }
    /* New output (correct) */
    @​media only screen and ((min-width: 10px) or (min-height: 10px)) {
    a {
    color: red;
    }
    }

  • Fix an edge case with the inject feature (#4407)

    This release fixes an edge case where esbuild's inject feature could not be used with arbitrary module namespace names exported using an export {} from statement with bundling disabled and a target environment where arbitrary module namespace names is unsupported.

    With the fix, the following inject file:

    import jquery from 'jquery';
    export { jquery as 'window.jQuery' };

    Can now always be rewritten as this without esbuild sometimes incorrectly generating an error:

    export { default as 'window.jQuery' } from 'jquery';
  • Attempt to improve API handling of huge metafiles (#4329, #4415)

    This release contains a few changes that attempt to improve the behavior of esbuild's JavaScript API with huge metafiles (esbuild's name for the build metadata, formatted as a JSON object). The JavaScript API is designed to return the metafile JSON as a JavaScript object in memory, which makes it easy to access from within a JavaScript-based plugin. Multiple people have encountered issues where this API breaks down with a pathologically-large metafile.

    The primary issue is that V8 has an implementation-specific maximum string length, so using the JSON.parse API with large enough strings is impossible. This release will now attempt to use a fallback JavaScript-based JSON parser that operates directly on the UTF8-encoded JSON bytes instead of using JSON.parse when the JSON metafile is too big to fit in a JavaScript string. The new fallback path has not yet been heavily-tested. The metafile will also now be generated with whitespace removed if the bundle is significantly large, which will reduce the size of the metafile JSON slightly.

... (truncated)

Changelog

Sourced from esbuild-wasm's changelog.

0.27.4

  • Fix a regression with CSS media queries (#4395, #4405, #4406)

    Version 0.25.11 of esbuild introduced support for parsing media queries. This unintentionally introduced a regression with printing media queries that use the <media-type> and <media-condition-without-or> grammar. Specifically, esbuild was failing to wrap an or clause with parentheses when inside <media-condition-without-or>. This release fixes the regression.

    Here is an example:

    /* Original code */
    @media only screen and ((min-width: 10px) or (min-height: 10px)) {
      a { color: red }
    }
    /* Old output (incorrect) */
    @​media only screen and (min-width: 10px) or (min-height: 10px) {
    a {
    color: red;
    }
    }
    /* New output (correct) */
    @​media only screen and ((min-width: 10px) or (min-height: 10px)) {
    a {
    color: red;
    }
    }

  • Fix an edge case with the inject feature (#4407)

    This release fixes an edge case where esbuild's inject feature could not be used with arbitrary module namespace names exported using an export {} from statement with bundling disabled and a target environment where arbitrary module namespace names is unsupported.

    With the fix, the following inject file:

    import jquery from 'jquery';
    export { jquery as 'window.jQuery' };

    Can now always be rewritten as this without esbuild sometimes incorrectly generating an error:

    export { default as 'window.jQuery' } from 'jquery';
  • Attempt to improve API handling of huge metafiles (#4329, #4415)

    This release contains a few changes that attempt to improve the behavior of esbuild's JavaScript API with huge metafiles (esbuild's name for the build metadata, formatted as a JSON object). The JavaScript API is designed to return the metafile JSON as a JavaScript object in memory, which makes it easy to access from within a JavaScript-based plugin. Multiple people have encountered issues where this API breaks down with a pathologically-large metafile.

... (truncated)

Commits

Updates resend from 6.9.3 to 6.9.4

Release notes

Sourced from resend's releases.

v6.9.4

What's Changed

Full Changelog: resend/resend-node@v6.9.3...v6.9.4

Commits
  • 95e4630 chore: bump package version to 6.9.4 (#878)
  • 3413387 chore(deps): update dependency @​biomejs/biome to v2.4.7 (#879)
  • 0987940 feat(api-keys): add last_used_at field to API key response (#877)
  • 02ee43c chore(deps): update dependency @​biomejs/biome to v2.4.6 (#847)
  • 35cd31a chore(deps): update dependency @​types/node to v24.11.0 (#856)
  • cfd8a08 fix(deps): update dependency svix to v1.86.0 (#849)
  • 0acc12d chore(deps): update dependency dotenv to v17.3.1 (#848)
  • d16e477 chore(deps): update dependency @​types/react to v19.2.14 (#845)
  • f0297fd chore(deps): update dependency rimraf to v6.1.3 (#850)
  • 222395a chore(deps): update pnpm/action-setup digest to 9b5745c (#852)
  • Additional commits viewable in compare view

Dependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually by commenting @dependabot rebase.


Dependabot commands and options

You can trigger Dependabot actions by commenting on this PR:

  • @dependabot rebase will rebase this PR
  • @dependabot recreate will recreate this PR, overwriting any edits that have been made to it
  • @dependabot show <dependency name> ignore conditions will show all of the ignore conditions of the specified dependency
  • @dependabot ignore <dependency name> major version will close this group update PR and stop Dependabot creating any more for the specific dependency's major version (unless you unignore this specific dependency's major version or upgrade to it yourself)
  • @dependabot ignore <dependency name> minor version will close this group update PR and stop Dependabot creating any more for the specific dependency's minor version (unless you unignore this specific dependency's minor version or upgrade to it yourself)
  • @dependabot ignore <dependency name> will close this group update PR and stop Dependabot creating any more for the specific dependency (unless you unignore this specific dependency or upgrade to it yourself)
  • @dependabot unignore <dependency name> will remove all of the ignore conditions of the specified dependency
  • @dependabot unignore <dependency name> <ignore condition> will remove the ignore condition of the specified dependency and ignore conditions

Bumps the production group in /patchnotes-email with 3 updates: [@react-email/components](https://github.com/resend/react-email/tree/HEAD/packages/components), [esbuild-wasm](https://github.com/evanw/esbuild) and [resend](https://github.com/resend/resend-node).


Updates `@react-email/components` from 1.0.9 to 1.0.10
- [Release notes](https://github.com/resend/react-email/releases)
- [Changelog](https://github.com/resend/react-email/blob/canary/packages/components/CHANGELOG.md)
- [Commits](https://github.com/resend/react-email/commits/@react-email/components@1.0.10/packages/components)

Updates `esbuild-wasm` from 0.27.3 to 0.27.4
- [Release notes](https://github.com/evanw/esbuild/releases)
- [Changelog](https://github.com/evanw/esbuild/blob/main/CHANGELOG.md)
- [Commits](evanw/esbuild@v0.27.3...v0.27.4)

Updates `resend` from 6.9.3 to 6.9.4
- [Release notes](https://github.com/resend/resend-node/releases)
- [Commits](resend/resend-node@v6.9.3...v6.9.4)

---
updated-dependencies:
- dependency-name: "@react-email/components"
  dependency-version: 1.0.10
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: production
- dependency-name: esbuild-wasm
  dependency-version: 0.27.4
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: production
- dependency-name: resend
  dependency-version: 6.9.4
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: production
...

Signed-off-by: dependabot[bot] <support@github.com>
@dependabot dependabot bot added dependencies Pull requests that update a dependency file javascript Pull requests that update javascript code labels Mar 18, 2026
paulvanbrenk added a commit that referenced this pull request Mar 18, 2026
## Summary
- Merges 10 pending dependabot PRs (#545, #546, #547, #548, #549, #550,
#551, #552, #553, #555)
- Skipped #554 (nanoid 5.1.7) — ESM-only, incompatible with CJS build
- Removed `babel` config from `vite.config.ts` for
`@vitejs/plugin-react` v6 compatibility (React Compiler is now
auto-detected)
- Regenerated pnpm lock file

## Updates included
- **GitHub Actions**: actions group (2 updates)
- **patchnotes-web**: production deps (3), dev deps (11), zustand,
vitest
- **patchnotes-email**: production deps (3), dev deps
(typescript-eslint), esbuild-wasm
- **.NET**: dotnet group (12 updates)
- **Root**: dev-dependencies group (11 updates)

## Validation
- Frontend: lint ✅ (0 errors), build ✅, tests ✅ (169 passed)
- Backend: build ✅ (0 warnings), tests ✅ (488 passed)
@paulvanbrenk paulvanbrenk merged commit 86d3fed into main Mar 18, 2026
2 of 4 checks passed
@paulvanbrenk paulvanbrenk deleted the dependabot/npm_and_yarn/patchnotes-email/production-a178470325 branch March 18, 2026 20:39
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

dependencies Pull requests that update a dependency file javascript Pull requests that update javascript code

Projects

None yet

Development

Successfully merging this pull request may close these issues.

1 participant