fix(deps): bump the dependencies group in /apps/sim with 4 updates
Type: Pull Request
State: Closed
Association: Contributor
Comments: 2
(about 1 year ago)
(about 1 year ago)
(about 1 year ago)
dependencies
⚠️ Dependabot is rebasing this PR ⚠️
Rebasing might not happen immediately, so don't worry if this takes some time.
Note: if you make any changes to this PR yourself, they will take precedence over the rebase.
Bumps the dependencies group in /apps/sim with 4 updates: next, esbuild, drizzle-kit and react-email.
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 esbuild from 0.18.20 to 0.25.4
Release notes
Sourced from esbuild's releases.
v0.25.4
Add simple support for CORS to esbuild's development server (#4125)
Starting with version 0.25.0, esbuild's development server is no longer configured to serve cross-origin requests. This was a deliberate change to prevent any website you visit from accessing your running esbuild development server. However, this change prevented (by design) certain use cases such as "debugging in production" by having your production website load code from
localhostwhere the esbuild development server is running.To enable this use case, esbuild is adding a feature to allow Cross-Origin Resource Sharing (a.k.a. CORS) for simple requests. Specifically, passing your origin to the new
corsoption will now set theAccess-Control-Allow-Originresponse header when the request has a matchingOriginheader. Note that this currently only works for requests that don't send a preflightOPTIONSrequest, as esbuild's development server doesn't currently supportOPTIONSrequests.Some examples:
CLI:
esbuild --servedir=. --cors-origin=https://example.comJS:
const ctx = await esbuild.context({}) await ctx.serve({ servedir: '.', cors: { origin: 'https://example.com', }, })Go:
ctx, _ := api.Context(api.BuildOptions{}) ctx.Serve(api.ServeOptions{ Servedir: ".", CORS: api.CORSOptions{ Origin: []string{"https://example.com"}, }, })The special origin
*can be used to allow any origin to access esbuild's development server. Note that this means any website you visit will be able to read everything served by esbuild.Pass through invalid URLs in source maps unmodified (#4169)
This fixes a regression in version 0.25.0 where
sourcesin source maps that form invalid URLs were not being passed through to the output. Version 0.25.0 changed the interpretation ofsourcesfrom file paths to URLs, which means that URL parsing can now fail. Previously URLs that couldn't be parsed were replaced with the empty string. With this release, invalid URLs insourcesshould now be passed through unmodified.Handle exports named
__proto__in ES modules (#4162, #4163)In JavaScript, the special property name
__proto__sets the prototype when used inside an object literal. Previously esbuild's ESM-to-CommonJS conversion didn't special-case the property name of exports named__proto__so the exported getter accidentally became the prototype of the object literal. It's unclear what this affects, if anything, but it's better practice to avoid this by using a computed property name in this case.This fix was contributed by
@magic-akari.
... (truncated)
Changelog
Sourced from esbuild's changelog.
Changelog: 2023
This changelog documents all esbuild versions published in the year 2023 (versions 0.16.13 through 0.19.11).
0.19.11
Fix TypeScript-specific class transform edge case (#3559)
The previous release introduced an optimization that avoided transforming
super()in the class constructor for TypeScript code compiled withuseDefineForClassFieldsset tofalseif all class instance fields have no initializers. The rationale was that in this case, all class instance fields are omitted in the output so no changes to the constructor are needed. However, if all of this is the case and there are#privateinstance fields with initializers, those private instance field initializers were still being moved into the constructor. This was problematic because they were being inserted before the call tosuper()(sincesuper()is now no longer transformed in that case). This release introduces an additional optimization that avoids moving the private instance field initializers into the constructor in this edge case, which generates smaller code, matches the TypeScript compiler's output more closely, and avoids this bug:// Original code class Foo extends Bar { #private = 1; public: any; constructor() { super(); } }// Old output (with esbuild v0.19.9)
class Foo extends Bar {
constructor() {
super();
this.#private = 1;
}
#private;
}// Old output (with esbuild v0.19.10)
class Foo extends Bar {
constructor() {
this.#private = 1;
super();
}
#private;
}// New output
class Foo extends Bar {
#private = 1;
constructor() {
super();
}
}
Minifier: allow reording a primitive past a side-effect (#3568)
The minifier previously allowed reordering a side-effect past a primitive, but didn't handle the case of reordering a primitive past a side-effect. This additional case is now handled:
... (truncated)
Commits
218d29epublish 0.25.4 to npme66cd0bdev server: simple support for CORS requests (#4171)8bf3368js api: validate some options as arrays of strings1e7375ajs api: simplify comma-separated array validation5f5964drelease notes for #4163adb5284fix: handle__proto__as a computed property in exports and add tests for s...0aa9f7bfix #4169: keep invalid source map URLs unmodified5959289add additional guards for #4114 when using:is()677910bpublish 0.25.3 to npma41040efix #4110: support custom non-IPhostvalues- Additional commits viewable 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
2
+2322
-4132
Package Dependencies
react-email
npm
3.0.7 → 4.0.13
Major
/apps/sim
drizzle-kit
npm
0.30.6 → 0.31.1
Minor
/apps/sim
Technical Details
| ID: | 945169 |
| UUID: | 2512477139 |
| Node ID: | PR_kwDONmSNmM6VwVvT |
| Host: | GitHub |
| Repository: | simstudioai/sim |
| Mergeable: | Yes |
| Merge State: | Unstable |