Skip to content

fix(deps): update dependency react-email to v6.6.9#59

Open
renovate[bot] wants to merge 1 commit into
mainfrom
renovate/react-email-monorepo
Open

fix(deps): update dependency react-email to v6.6.9#59
renovate[bot] wants to merge 1 commit into
mainfrom
renovate/react-email-monorepo

Conversation

@renovate

@renovate renovate Bot commented Dec 29, 2025

Copy link
Copy Markdown
Contributor

This PR contains the following updates:

Package Change Age Confidence
react-email (source) 6.0.06.6.9 age confidence

Release Notes

resend/react-email (react-email)

v6.6.9

Compare Source

Patch Changes
  • bc2f7e3: Fix group utilities including bad rules that don't work

v6.6.8

Compare Source

Patch Changes
  • dca3c01: Fix email build computing the wrong output file tracing root in nested-workspace monorepos (e.g. a package one or more directories below the true repo root), which caused Vercel deploys to fail with an ENOENT error on the routes manifest.

v6.6.7

Compare Source

Patch Changes
  • 6a5ff2a: Escape double quotes in Markdown link href/title and image title attributes, matching the escaping already applied to image src/alt. A markdown title like 'The "Complete" Guide' no longer breaks out of the attribute in the rendered HTML.
  • 4cf4c72: Fix two-value logical shorthands whose values aren't all numeric (e.g. margin-inline: 1rem auto, padding-inline: 10px calc(1rem + 2px)) producing invalid duplicated longhands. They are now split into the correct per-side declarations.
  • fa77d55: Merge declarations when the same class is defined by multiple Tailwind rules (e.g. a preset and a child config override).
  • fa52a04: Convert Tailwind's rgba(r g b / a) syntax to rgb(r,g,b,a) syntax for better email client support.
  • fc8318c: Fix Tailwind classes not being inlined into styles for <Section>, <Column> and <Row>.

v6.6.6

Compare Source

Patch Changes
  • b4ac0d5: Fix Button emitting mso-text-raise without a unit on its Outlook padding spacer (e.g. mso-text-raise:18), which Outlook treats as invalid. The value now carries px, matching the unit React already adds on the button label.
  • cb3c468: Fix email build so the generated preview app deploys on Vercel by tracing files from the user's project root instead of the .react-email subfolder.
  • Updated dependencies [c300cfb]

v6.6.5

Compare Source

v6.6.4

Compare Source

Patch Changes
  • f8279be: Fix Tailwind pill utilities like rounded-t-full and rounded-e-full leaving an unrenderable calc(infinity * 1px) in the inlined email CSS (previously only rounded-full was converted to 9999px).

v6.6.3

Compare Source

v6.6.2

Compare Source

Patch Changes
  • 437c414: Fix Tailwind opacity modifiers (e.g. bg-blue-600/50) rendering an invalid percentage alpha that breaks in some email clients.

v6.6.1

Compare Source

Patch Changes
  • 21bac49: Fix Markdown corrupting double quotes in markdownCustomStyles. Inline style values containing a " (e.g. fontFamily: '"Times New Roman", serif') were escaped to the apostrophe entity &#x27; instead of &quot;, silently rewriting the quoted value. Double quotes are now escaped as &quot;.
  • Updated dependencies [60a5b09]

v6.6.0

Compare Source

Minor Changes
  • 16ff94c: add a useTitleTag in Preview component so users can disable it if they want to

v6.5.0

Compare Source

Minor Changes
  • 3875d2a: add a --clients option to email dev and a COMPATIBILITY_EMAIL_CLIENTS environment variable to narrow which email clients trigger compatibility warnings. By default the preview still warns for gmail, apple-mail, outlook, and yahoo. Teams that only target one or two clients can now skip the noise: email dev --clients outlook,apple-mail. The CLI flag wins over the env var; an empty or fully-invalid list falls back to the defaults so warnings can't be silently switched off. Builds on #​2797 by @​ReemX.
Patch Changes
  • d47825a: Add accessibility defaults to components: dir/lang on Body, an empty alt fallback on Img, role="presentation" on the Markdown table, and a <title> from Preview.

v6.4.0

Compare Source

Minor Changes
  • ba99365: resolve and strip unresolved --tw-* CSS variables in non-inlinable rules so Tailwind media query utilities no longer break Gmail

v6.3.3

Compare Source

v6.3.2

Compare Source

Patch Changes
  • fbda5c8: increase whitespace padding to 200 characters for better Gmail preview text rendering

v6.3.1

Compare Source

Patch Changes
  • c610dc0: fix: padding in Container/Section failing on Klaviyo and Outlook desktop

v6.3.0

Compare Source

v6.2.0

Compare Source

Minor Changes
  • 192d82a: Add theme and utility props to <Tailwind> for Tailwind v4 CSS-first configuration. Both accept a CSS string and can be combined with the existing config prop.

    import themeCss from "./theme.css?inline";
    
    <Tailwind theme={themeCss}>
      <div className="bg-brand font-display">Custom themed content</div>
    </Tailwind>;

    Empty strings are no-ops. The base Tailwind theme and utilities are still loaded — theme and utility layer on top.

    The preview server, email export, and the caniemail compatibility check all understand the Vite-style ?inline and ?raw suffixes on CSS imports, so the pattern above works the same in your project and inside the preview UI. The compatibility check also extracts the theme and utility props (in addition to config) when analyzing your template, so any caniemail incompatibilities in CSS produced by those props will surface as warnings.

    Internal note: the exported setupTailwind helper now takes { config, cssConfigs } instead of a positional TailwindConfig. Calling it with the old shape throws with a migration hint.

Patch Changes
  • 06f1d05: Watch directories targeted by dynamic import() template literals so changes to runtime-resolved files trigger preview reloads.

v6.1.5

Compare Source

Patch Changes
  • 1a61cb0: Avoid OOM when running email export on projects with many templates. esbuild builds now run in batches of 10 entry points, and the render phase runs each batch of 25 templates inside a worker_threads worker so V8 isolate memory is reclaimed between batches.

v6.1.4

Compare Source

Patch Changes
  • 1c386ce: Avoid spamming each spinner frame as a new line on non-TTY streams (CI logs, pipes, dumb terminals). The spinner now logs each status text once instead of redrawing animated frames when the output is not a TTY.
  • ad6a9de: - deprecate packageManager CLI option for email build, only supporting npm
    • ensure email build dependency installation includes dev dependencies

v6.1.3

Compare Source

v6.1.1

Compare Source

Patch Changes
  • 3c62bd0: fix divider with extra borders around other corners

v6.1.0

Compare Source

Patch Changes
  • 47eeece: Tailwind: clearer error when <Head> is outside <Tailwind>

v6.0.8

Compare Source

Patch Changes
  • 65525e0: Tailwind: parse non inline configuration variables

v6.0.7

Compare Source

Patch Changes
  • 87a2486: undo nesting of all media queries, and replace >= <= exxpressions with min-width/max-width on the Tailwind component

v6.0.6

Compare Source

Patch Changes
  • 84bb7ab: collapse empty-fallback var() refs in inline styles

v6.0.5

Compare Source

v6.0.4

Compare Source

Patch Changes

v6.0.3

Compare Source

Patch Changes
  • bb51e5e: fix missing react and react-dom peer dependencies

v6.0.2

Compare Source

Patch Changes
  • 63b6e71: Fix Markdown component crashing on CommonMark loose lists with paragraph continuations

v6.0.1

Compare Source

Patch Changes
  • 599b8c5: fix type issues in starter template and in react-email

Configuration

📅 Schedule: (UTC)

  • Branch creation
    • At any time (no schedule defined)
  • Automerge
    • At any time (no schedule defined)

🚦 Automerge: Disabled by config. Please merge this manually once you are satisfied.

Rebasing: Whenever PR becomes conflicted, or you tick the rebase/retry checkbox.

🔕 Ignore: Close this PR and you won't be reminded about this update again.


  • If you want to rebase/retry this PR, check this box

This PR was generated by Mend Renovate. View the repository job log.

@renovate renovate Bot changed the title fix(deps): update dependency @react-email/render to v2.0.1 fix(deps): update dependency @react-email/render to v2.0.2 Jan 7, 2026
@renovate renovate Bot force-pushed the renovate/react-email-monorepo branch from 8bcc3bd to d4a284d Compare January 7, 2026 18:51
@renovate renovate Bot changed the title fix(deps): update dependency @react-email/render to v2.0.2 fix(deps): update dependency @react-email/render to v2.0.3 Jan 19, 2026
@renovate renovate Bot force-pushed the renovate/react-email-monorepo branch from d4a284d to cc43d32 Compare January 19, 2026 20:14
@renovate renovate Bot changed the title fix(deps): update dependency @react-email/render to v2.0.3 fix(deps): update dependency @react-email/render to v2.0.4 Jan 20, 2026
@renovate renovate Bot force-pushed the renovate/react-email-monorepo branch from cc43d32 to c598483 Compare January 20, 2026 18:38
@renovate renovate Bot force-pushed the renovate/react-email-monorepo branch from c598483 to a34b641 Compare March 5, 2026 16:40
@renovate renovate Bot force-pushed the renovate/react-email-monorepo branch from a34b641 to a33fa88 Compare April 1, 2026 02:40
@renovate renovate Bot changed the title fix(deps): update dependency @react-email/render to v2.0.4 fix(deps): update dependency @react-email/render to v2.0.5 Apr 1, 2026
@renovate renovate Bot changed the title fix(deps): update dependency @react-email/render to v2.0.5 fix(deps): update dependency @react-email/render to v2.0.6 Apr 9, 2026
@renovate renovate Bot force-pushed the renovate/react-email-monorepo branch from a33fa88 to 555d0c1 Compare April 9, 2026 16:31
@renovate renovate Bot changed the title fix(deps): update dependency @react-email/render to v2.0.6 fix(deps): update dependency @react-email/render to v2.0.7 Apr 16, 2026
@renovate renovate Bot force-pushed the renovate/react-email-monorepo branch from 555d0c1 to bbb9edb Compare April 16, 2026 20:54
@renovate renovate Bot changed the title fix(deps): update dependency @react-email/render to v2.0.7 fix(deps): update dependency @react-email/render to v2.0.7 - autoclosed Apr 24, 2026
@renovate renovate Bot closed this Apr 24, 2026
@renovate renovate Bot deleted the renovate/react-email-monorepo branch April 24, 2026 18:30
@renovate renovate Bot changed the title fix(deps): update dependency @react-email/render to v2.0.7 - autoclosed fix(deps): update dependency react-email to v6.0.1 Apr 27, 2026
@renovate renovate Bot reopened this Apr 27, 2026
@renovate renovate Bot force-pushed the renovate/react-email-monorepo branch 2 times, most recently from bbb9edb to 0a89452 Compare April 27, 2026 16:56
@renovate renovate Bot changed the title fix(deps): update dependency react-email to v6.0.1 fix(deps): update dependency react-email to v6.0.4 Apr 28, 2026
@renovate renovate Bot force-pushed the renovate/react-email-monorepo branch from 0a89452 to 3835fda Compare April 28, 2026 21:02
@renovate renovate Bot changed the title fix(deps): update dependency react-email to v6.0.4 fix(deps): update dependency react-email to v6.0.5 Apr 29, 2026
@renovate renovate Bot force-pushed the renovate/react-email-monorepo branch from 3835fda to dade3f3 Compare April 29, 2026 03:27
@renovate renovate Bot changed the title fix(deps): update dependency react-email to v6.0.5 fix(deps): update dependency react-email to v6.0.7 May 4, 2026
@renovate renovate Bot force-pushed the renovate/react-email-monorepo branch from dade3f3 to 0681f3b Compare May 4, 2026 16:34
@renovate renovate Bot changed the title fix(deps): update dependency react-email to v6.0.7 fix(deps): update dependency react-email to v6.0.8 May 4, 2026
@renovate renovate Bot force-pushed the renovate/react-email-monorepo branch from 0681f3b to 0be3047 Compare May 4, 2026 23:42
@renovate renovate Bot changed the title fix(deps): update dependency react-email to v6.0.8 fix(deps): update dependency react-email to v6.1.1 May 6, 2026
@renovate renovate Bot force-pushed the renovate/react-email-monorepo branch from 0be3047 to aeaf1e5 Compare May 6, 2026 19:13
@renovate renovate Bot force-pushed the renovate/react-email-monorepo branch from cc224a8 to 097c696 Compare May 22, 2026 16:48
@renovate renovate Bot changed the title fix(deps): update dependency react-email to v6.3.0 fix(deps): update dependency react-email to v6.3.1 May 22, 2026
@renovate renovate Bot changed the title fix(deps): update dependency react-email to v6.3.1 fix(deps): update dependency react-email to v6.3.2 May 23, 2026
@renovate renovate Bot force-pushed the renovate/react-email-monorepo branch 2 times, most recently from 756412d to 2a4263a Compare May 25, 2026 15:31
@renovate renovate Bot changed the title fix(deps): update dependency react-email to v6.3.2 fix(deps): update dependency react-email to v6.3.3 May 25, 2026
@renovate renovate Bot force-pushed the renovate/react-email-monorepo branch from 2a4263a to 48a25d1 Compare May 26, 2026 23:42
@renovate renovate Bot changed the title fix(deps): update dependency react-email to v6.3.3 fix(deps): update dependency react-email to v6.4.0 May 26, 2026
@renovate renovate Bot changed the title fix(deps): update dependency react-email to v6.4.0 fix(deps): update dependency react-email to v6.5.0 May 27, 2026
@renovate renovate Bot force-pushed the renovate/react-email-monorepo branch from 48a25d1 to 253d057 Compare May 27, 2026 20:07
@renovate renovate Bot changed the title fix(deps): update dependency react-email to v6.5.0 fix(deps): update react-email monorepo to v6.5.0 Jun 2, 2026
@renovate renovate Bot changed the title fix(deps): update react-email monorepo to v6.5.0 fix(deps): update react-email monorepo to v6.6.0 Jun 9, 2026
@renovate renovate Bot force-pushed the renovate/react-email-monorepo branch from 253d057 to 4029694 Compare June 9, 2026 12:47
@renovate renovate Bot changed the title fix(deps): update react-email monorepo to v6.6.0 fix(deps): update react-email monorepo to v6.6.3 Jun 16, 2026
@renovate renovate Bot force-pushed the renovate/react-email-monorepo branch from 4029694 to 0be8018 Compare June 16, 2026 20:54
@renovate renovate Bot changed the title fix(deps): update react-email monorepo to v6.6.3 fix(deps): update react-email monorepo Jun 22, 2026
@renovate renovate Bot force-pushed the renovate/react-email-monorepo branch from 0be8018 to 180656c Compare June 22, 2026 23:39
@renovate renovate Bot changed the title fix(deps): update react-email monorepo fix(deps): update dependency react-email to v6.6.4 Jun 25, 2026
@renovate renovate Bot changed the title fix(deps): update dependency react-email to v6.6.4 fix(deps): update dependency react-email to v6.6.5 Jun 25, 2026
@renovate renovate Bot force-pushed the renovate/react-email-monorepo branch from 180656c to 8ad541a Compare June 25, 2026 19:28
@renovate renovate Bot force-pushed the renovate/react-email-monorepo branch from 8ad541a to fac4027 Compare July 3, 2026 03:48
@renovate renovate Bot changed the title fix(deps): update dependency react-email to v6.6.5 fix(deps): update dependency react-email to v6.6.6 Jul 3, 2026
@socket-security

socket-security Bot commented Jul 3, 2026

Copy link
Copy Markdown

Review the following changes in direct dependencies. Learn more about Socket for GitHub.

Diff Package Supply Chain
Security
Vulnerability Quality Maintenance License
Addedreact-email@​6.6.9991009298100

View full report

@renovate renovate Bot changed the title fix(deps): update dependency react-email to v6.6.6 fix(deps): update dependency react-email to v6.6.7 Jul 7, 2026
@renovate renovate Bot force-pushed the renovate/react-email-monorepo branch 2 times, most recently from 3774205 to 687de6f Compare July 7, 2026 23:37
@renovate renovate Bot changed the title fix(deps): update dependency react-email to v6.6.7 fix(deps): update dependency react-email to v6.6.8 Jul 7, 2026
@renovate renovate Bot force-pushed the renovate/react-email-monorepo branch from 687de6f to 31f1aab Compare July 9, 2026 18:47
@renovate renovate Bot changed the title fix(deps): update dependency react-email to v6.6.8 fix(deps): update dependency react-email to v6.6.9 Jul 9, 2026
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

None yet

Projects

None yet

Development

Successfully merging this pull request may close these issues.

0 participants