An open index of dependabot pull requests across open source projects.

fix(deps): bump the dependencies group across 1 directory with 3 updates

Closed
Number: #354
Type: Pull Request
State: Closed
Author: dependabot[bot] dependabot[bot]
Association: Contributor
Comments: 2
Created: May 12, 2025 at 01:58 AM UTC
(about 1 year ago)
Updated: May 12, 2025 at 05:05 AM UTC
(about 1 year ago)
Closed: May 12, 2025 at 05:05 AM UTC
(about 1 year ago)
Time to Close: about 3 hours
Labels:
dependencies
Description:

Bumps the dependencies group with 1 update in the /apps/sim directory: next.

Updates next from 15.3.1 to 15.3.2

Release notes

Sourced from next's releases.

v15.3.2

[!NOTE]
This release is backporting bug fixes. It does not include all pending features/changes on canary.

Core Changes

  • backport: fix(turbopack): Store persistence of wrapped task on RawVc::LocalOutput (#78488) (#78883)
  • @​next/mdx: Use stable turbopack config options (#78880)
  • Fix react-compiler: Fix detection of interest (#78879)
  • Fix turbopack: Backport sourcemap bugfix (#78881)
  • [next-server] preserve rsc query for rsc redirects (#78876)
  • Update middleware public/static matching (#78875)

Credits

Huge thanks to @​ijjk, @​huozhi, @​kdy1, @​wbinnssmith, and @​bgw for helping!

Commits

Updates drizzle-kit from 0.30.6 to 0.31.1

Release notes

Sourced from drizzle-kit's releases.

drizzle-kit@0.31.1

Fixed drizzle-kit pull bugs when using Gel extensions.

Because Gel extensions create schema names containing :: (for example, ext::auth), Drizzle previously handled these names incorrectly. Starting with this release, you can use Gel extensions without any problems. Here’s what you should do:

  1. Enable extensions schemas in drizzle.config.ts
import  { defineConfig } from "drizzle-kit";

export default defineConfig({ dialect: 'gel', schemaFilter: ['ext::auth', 'public'] });

  1. Run drizzle-kit pull

  2. Done!

drizzle-kit@0.31.0

Features and improvements

Enum DDL improvements

For situations where you drop an enum value or reorder values in an enum, there is no native way to do this in PostgreSQL. To handle these cases, drizzle-kit used to:

  • Change the column data types from the enum to text
  • Drop the old enum
  • Add the new enum
  • Change the column data types back to the new enum

However, there were a few scenarios that weren’t covered: PostgreSQL wasn’t updating default expressions for columns when their data types changed

Therefore, for cases where you either change a column’s data type from an enum to some other type, drop an enum value, or reorder enum values, we now do the following:

  • Change the column data types from the enum to text
  • Set the default using the ::text expression
  • Drop the old enum
  • Add the new enum
  • Change the column data types back to the new enum
  • Set the default using the :: expression

esbuild version upgrade

For drizzle-kit we upgraded the version to latest (0.25.2), thanks @​paulmarsicloud

Bug fixes

... (truncated)

Commits

Updates react-email from 3.0.7 to 4.0.13

Release notes

Sourced from react-email's releases.

react-email@4.0.13

Patch Changes

  • 8e4afce: fix hot reloading support for users with NodeNext-style imports

Full Changelog: https://github.com/resend/react-email/compare/react-email@4.0.12...react-email@4.0.13

react-email@4.0.12

Patch Changes

  • aa518a3: Add an explicit error when running Node <= 17

Full Changelog: https://github.com/resend/react-email/compare/react-email@4.0.11...react-email@4.0.12

react-email@4.0.11

Patch Changes

  • 1a17219: fix improper require in email export
  • 45ab698: update next to 15.3.1

Full Changelog: https://github.com/resend/react-email/compare/react-email@4.0.10...react-email@4.0.11

react-email@4.0.10

Patch Changes

  • 5ef9fe8: fix support for import ... = require(...) syntax
  • 4c7f597: fix email dev not working with traversal error

Full Changelog: https://github.com/resend/react-email/compare/react-email@4.0.9...react-email@4.0.10

react-email@4.0.9

Patch Changes

  • 643d841: Add .json import support for hot reloading
  • f21a983: fix Node 18 support
  • cd02449: Ensure dependencies outside emails directory are completely resolved
  • 73a31ed: Fix dependent of dependents not causing hot reloads
  • bdffd8c: fix backwards compatibility with render versions
  • e7fa043: Fix access to files outside static directory
  • 9aa033c: Use range of versions for dependencies
  • ab70556: Fix non-email files being rendered during hot reloading
  • 9c9aa5d: Add error message for when an email template does not have a default export

Full Changelog: https://github.com/resend/react-email/compare/react-email@4.0.8...react-email@4.0.9

react-email@4.0.8

[!NOTE] This is a release to backport fixes, it does not contain what was released in the latest canaries.

Patch changes

... (truncated)

Changelog

Sourced from react-email's changelog.

4.0.13

Patch Changes

  • 8e4afce: fix hot reloading support for users with NodeNext-style imports

4.0.12

Patch Changes

  • aa518a3: Add an explicit error when running Node <= 17

4.0.11

Patch Changes

  • 1a17219: fix improper require in email export
  • 45ab698: update next to 15.3.1

4.0.10

Patch Changes

  • 5ef9fe8: fix support for import ... = require(...) syntax
  • 4c7f597: fix email dev not working with traversal error

4.0.9

Patch Changes

  • 643d841: Add .json import support for hot reloading
  • f21a983: fix Node 18 support
  • cd02449: Ensure dependencies outside emails directory are completely resolved
  • 73a31ed: Fix dependent of dependents not causing hot reloads
  • bdffd8c: fix backwards compatibility with render versions
  • e7fa043: Fix access to files outside static directory
  • 9aa033c: Use range of versions for dependencies
  • ab70556: Fix non-email files being rendered during hot reloading
  • 9c9aa5d: Add error message for when an email template does not have a default export

4.0.8

Patch Changes

  • ea579b5: Log out errors that happen when export's esbuild fails

4.0.7

Patch Changes

... (truncated)

Commits
  • 9208f58 chore(root): Version packages (#2228)
  • 8e4afce fix(react-email): Support for users with NodeNext-style imports (#2227)
  • 221ebf7 chore(root): Version packages (#2216)
  • aa518a3 fix(react-email): No explicit error when running with Node <= 17 (#1923)
  • dcb8164 chore(root): Version packages (#2208)
  • e42c267 chore(react-email): Remove debugging log
  • 45ab698 fix(react-email): "createServerParamsForMetadata is not a function" (#2206)
  • 1a17219 fix(react-email): Import compiled templates with createRequire's require (#...
  • 6e33167 chore(root): Version packages (#2203)
  • a41a943 fix(react-email): Tests not importing @​babel/traverse the same as raw ESM (#2...
  • 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 merge will merge this PR after your CI passes on it
  • @dependabot squash and merge will squash and merge this PR after your CI passes on it
  • @dependabot cancel merge will cancel a previously requested merge and block automerging
  • @dependabot reopen will reopen this PR if it is closed
  • @dependabot close will close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually
  • @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
    You can disable automated security fix PRs for this repo from the Security Alerts page.
Pull Request Statistics
Commits:
1
Files Changed:
1
Additions:
+2319
Deletions:
-4129
Package Dependencies
Package:
next
Ecosystem:
npm
Version Change:
15.3.1 → 15.3.2
Update Type:
Patch
Package:
react-email
Ecosystem:
npm
Version Change:
3.0.7 → 4.0.13
Update Type:
Major
Package:
drizzle-kit
Ecosystem:
npm
Version Change:
0.30.6 → 0.31.1
Update Type:
Minor
Technical Details
ID: 170502
UUID: 2512487664
Node ID: PR_kwDONmSNmM6VwYTw
Host: GitHub
Repository: simstudioai/sim
Mergeable: Yes
Merge State: Clean