fix(deps): bump the dependencies group across 1 directory with 3 updates
Type: Pull Request
State: Closed
Association: Contributor
Comments: 2
(about 1 year ago)
(about 1 year ago)
(about 1 year ago)
dependencies
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@bgwfor helping!
Commits
d9ec4a4v15.3.23def5ffbackport: fix(turbopack): Store persistence of wrapped task on RawVc::LocalOu...d0b2f8a@next/mdx: Use stable turbopack config options (#78880)04176defix(react-compiler): Fix detection of interest (#78879)b40778bfix(turbopack): Backport sourcemap bugfix (#78881)20f3120[next-server] preserve rsc query for rsc redirects (#78876)b464d18Update middleware public/static matching (#78875)- See full diff in compare view
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 pullbugs 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:
- Enable extensions schemas in
drizzle.config.tsimport { defineConfig } from "drizzle-kit";export default defineConfig({ dialect: 'gel', schemaFilter: ['ext::auth', 'public'] });
Run
drizzle-kit pullDone!
drizzle-kit@0.31.0
Features and improvements
Enum DDL improvements
For situations where you drop an
enumvalue or reorder values in anenum, there is no native way to do this in PostgreSQL. To handle these cases,drizzle-kitused 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:
PostgreSQLwasn’t updating default expressions for columns when their data types changedTherefore, for cases where you either change a column’s data type from an
enumto some other type, drop anenumvalue, or reorderenumvalues, 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
esbuildversion upgradeFor
drizzle-kitwe upgraded the version to latest (0.25.2), thanks@paulmarsicloudBug 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 importsFull 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
requireinemail 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 devnot working withtraversalerrorFull 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
renderversions- e7fa043: Fix access to files outside
staticdirectory- 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 imports4.0.12
Patch Changes
- aa518a3: Add an explicit error when running Node <= 17
4.0.11
Patch Changes
- 1a17219: fix improper
requireinemail export- 45ab698: update next to 15.3.1
4.0.10
Patch Changes
- 5ef9fe8: fix support for
import ... = require(...)syntax- 4c7f597: fix
email devnot working withtraversalerror4.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
renderversions- e7fa043: Fix access to files outside
staticdirectory- 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 fails4.0.7
Patch Changes
... (truncated)
Commits
9208f58chore(root): Version packages (#2228)8e4afcefix(react-email): Support for users withNodeNext-style imports (#2227)221ebf7chore(root): Version packages (#2216)aa518a3fix(react-email): No explicit error when running with Node <= 17 (#1923)dcb8164chore(root): Version packages (#2208)e42c267chore(react-email): Remove debugging log45ab698fix(react-email): "createServerParamsForMetadata is not a function" (#2206)1a17219fix(react-email): Import compiled templates withcreateRequire's require (#...6e33167chore(root): Version packages (#2203)a41a943fix(react-email): Tests not importing@babel/traversethe 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 rebasewill rebase this PR@dependabot recreatewill recreate this PR, overwriting any edits that have been made to it@dependabot mergewill merge this PR after your CI passes on it@dependabot squash and mergewill squash and merge this PR after your CI passes on it@dependabot cancel mergewill cancel a previously requested merge and block automerging@dependabot reopenwill reopen this PR if it is closed@dependabot closewill close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually@dependabot show <dependency name> ignore conditionswill show all of the ignore conditions of the specified dependency@dependabot ignore <dependency name> major versionwill 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 versionwill 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
1
1
+2319
-4129
Package Dependencies
Technical Details
| ID: | 170502 |
| UUID: | 2512487664 |
| Node ID: | PR_kwDONmSNmM6VwYTw |
| Host: | GitHub |
| Repository: | simstudioai/sim |
| Mergeable: | Yes |
| Merge State: | Clean |