fix(cognito-user-migrate): update all non-major dependencies#1110
Merged
kodiakhq[bot] merged 1 commit intodevfrom Feb 20, 2024
Merged
fix(cognito-user-migrate): update all non-major dependencies#1110kodiakhq[bot] merged 1 commit intodevfrom
kodiakhq[bot] merged 1 commit intodevfrom
Conversation
|
The latest updates on your projects. Learn more about Vercel for Git ↗︎
|
Contributor
📦 Next.js Bundle Analysis for @weareinreach/appThis analysis was generated by the Next.js Bundle Analysis action. 🤖 This PR introduced no changes to the JavaScript bundle! 🙌 |
ba4ebc2 to
1583069
Compare
1583069 to
286b579
Compare
286b579 to
d0998e7
Compare
d0998e7 to
2864e74
Compare
2864e74 to
ba2c20b
Compare
ba2c20b to
d0e2362
Compare
bee7998 to
768c231
Compare
768c231 to
46adf77
Compare
46adf77 to
c8943fb
Compare
c8943fb to
fa7d103
Compare
fa7d103 to
9125bb2
Compare
9125bb2 to
7df6785
Compare
7df6785 to
c6a17b8
Compare
c6a17b8 to
32375f8
Compare
32375f8 to
aaadc79
Compare
aaadc79 to
7e4fafc
Compare
JoeKarow
approved these changes
Feb 20, 2024
Signed-off-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
9610916 to
0a8a42b
Compare
|
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.



This PR contains the following updates:
1.18.0->1.18.11.1.91->1.1.925.9.1->5.10.15.9.1->5.10.15.9.1->5.10.17.101.1->7.102.07.101.1->7.102.07.101.1->7.102.07.101.1->7.102.07.101.1->7.102.07.101.1->7.102.07.6.16->7.6.177.6.16->7.6.177.6.16->7.6.177.6.16->7.6.177.6.16->7.6.177.6.16->7.6.177.6.16->7.6.177.6.16->7.6.177.6.16->7.6.177.6.16->7.6.177.6.16->7.6.177.6.16->7.6.177.6.16->7.6.177.6.16->7.6.171.4.1->1.4.28.10.133->8.10.13418.2.55->18.2.577.0.1->7.0.27.0.1->7.0.21.2.0->1.2.21.0.0->1.0.210.9.5->10.9.616.4.4->16.4.523.8.2->23.9.09.2.14->9.2.152.2.0->2.2.15.0.5->5.0.65.9.1->5.10.17.6.16->7.6.175.90.2->5.90.34.5.0->4.5.1Release Notes
aws-powertools/powertools-lambda-typescript (@aws-lambda-powertools/logger)
v1.18.1Compare Source
Note: Version bump only for package aws-lambda-powertools-typescript
prisma/prisma (@prisma/client)
v5.10.1Compare Source
Today, we are issuing the
5.10.1patch release.Fix in Prisma Client / Prisma CLI
v5.10.0Compare Source
Today, we are excited to share the
5.10.0stable release 🎉🌟 Help us spread the word about Prisma by starring the repo ☝️ or posting on X about the release.
Highlights
Optimized relation queries in MySQL (Preview)
This release brings the optimizations for relation queries from the previous releases to MySQL as well! This means that by enabling the
relationJoinsPreview feature with themysqldatabase provider, you now also get access to therelationLoadStrategyoption in relation queries that let you choose whether you want to merged relations on the application- or database-level.If you enable the
relationJoinsPreview feature, you can choose between thejoinandqueryoptions:join(default): Sends a single query to the database and joins the data on the database-level.query: Sends multiple queries to the database and joins the data on the application-level.To get started, enable the Preview feature in your Prisma schema:
Be sure to re-generate Prisma Client afterwards:
And finally, specify the relation loading strategy for your relation query via the
relationLoadStrategyoption as follows:Note that in the example above, the
relationLoadStrategycould be omitted altogether becausejoinis used as the default value.A few notes about
relationLoadStrategysupport on MySQL:relationLoadStrategyis supported for MySQL v8.0.14 and higher. MariaDB is not supported.LATERALJOINs which are used on PostgreSQL).Configure transaction options in the
PrismaClientconstructorThis feature enables you to configure the following transaction options on a global level via the
PrismaClientconstructor:isolationLevel: Sets the transaction isolation level. By default, this is set to the value currently configured in your database.timeout: The maximum amount of time the interactive transaction can run before being canceled and rolled back. The default value is 5 seconds.maxWait: The maximum amount of time Prisma Client will wait to acquire a transaction from the database. The default value is 2 seconds.Here is an example of how you can set this value globally for all transactions:
Thanks a lot to our fantastic community member
@tockn, who took the initiative to implement this feature in Prisma ORM 🎉Note that you can still override the global values by setting them on a particular transaction.
New
P2037code for “Too many database connections opened” errorsWe introduced a new error code for “Too many database connections opened” errors:
P2037. You can find all error codes in our documentation.Access the Prisma Data Platform via Prisma CLI
Now available in Early Access, you can manage your workspace and configure Prisma Accelerate and Prisma Pulse directly from the terminal.
Visit our docs to learn more about the integration and try it out for yourself!
Fixes and improvements
Prisma Client
Option::unwrap()on aNonevalue when using the relationJoins preview feature with driver adaptersPrisma.TransactionClientappears to be missing types@prisma/clientin Next.js middleware$extendsalways returnanyError: Prisma Client is unable to run in an edge runtime. As an alternative, try Accelerate: https://pris.ly/d/accelerate.t3.bookGenreTitledoes not exist in the current database"relationJoinspreview feature: calledOption::unwrap()on aNonevaluegetsentry/sentry-javascript (@sentry/browser)
v7.102.0Compare Source
captureContextfunction (#10737)Bundle size 📦
storybookjs/storybook (@storybook/addon-a11y)
v7.6.17Compare Source
storybookjs/storybook (@storybook/addon-actions)
v7.6.17Compare Source
storybookjs/storybook (@storybook/addon-essentials)
v7.6.17Compare Source
storybookjs/storybook (@storybook/addon-interactions)
v7.6.17Compare Source
swc-project/swc (@swc/core)
v1.4.2Compare Source
Bug Fixes
(es/helpers) Add
addInitializerto field decorators (#8619) (cd38ef3)(es/minifier) Abort property hoister on
thisusage (#8647) (9715320)(es/react) Validate pragma before parsing (#8637) (5f1cf01)
(es/typescript) Handle exported JSX members (#8642) (22c8e2e)
Features
(es/minifier) Remove unused parameters of arrow functions (#8636) (8cd4813)
(swc_core) Expose ES linter (#8635) (762959c)
Testing
(es/parser) Add a test for
<<(#8634) (2c63b31)(es/transforms) Add a test for
reserved_wordspass (#8638) (a0b77e0)typescript-eslint/typescript-eslint (@typescript-eslint/eslint-plugin)
v7.0.2Compare Source
🩹 Fixes
@types/eslintincompatibilities, add tests❤️ Thank You
You can read about our versioning strategy and releases on our website.
typescript-eslint/typescript-eslint (@typescript-eslint/parser)
v7.0.2Compare Source
🩹 Fixes
@types/eslintincompatibilities, add tests❤️ Thank You
You can read about our versioning strategy and releases on our website.
vercel/analytics (@vercel/analytics)
v1.2.2Compare Source
What's Changed
Full Changelog: vercel/analytics@1.2.1...1.2.2
v1.2.1Compare Source
What's Changed
New Contributors
Full Changelog: vercel/analytics@1.2.0...1.2.1
vercel/storage (@vercel/edge-config)
v1.0.2Compare Source
Patch Changes
78d5814: prevents having too many open connectionsv1.0.1Compare Source
Patch Changes
4e7e216: mark @opentelemetry/api as optional peer dependencychromaui/chromatic-cli (chromatic)
v10.9.6Compare Source
🐛 Bug Fix
Authors: 1
motdotla/dotenv (dotenv)
v16.4.5Compare Source
Changed
pathoption. return to historical behavior: do not attempt to auto find.envifpathset. (regression was introduced in16.4.3) #814i18next/i18next (i18next)
v23.9.0Compare Source
InterpolationMap2140 fixes 2014v23.8.3Compare Source
addResourceBundle2081SBoudrias/Inquirer.js (inquirer)
v9.2.15Compare Source
mswjs/msw (msw)
v2.2.1Compare Source
v2.2.1 (2024-02-17)
Bug Fixes
a78d57d) @kettanaitoai/nanoid (nanoid)
v5.0.6Compare Source
storybookjs/storybook (storybook)
v7.6.17Compare Source
webpack/webpack (webpack)
v5.90.3Compare Source
Bug Fixes
Stats.toJson()andStats.toString()Perf
pmndrs/zustand (zustand)
v4.5.1Compare Source
People might have misunderstood with
useStoredeprecation message. Hope this mitigates it.What's Changed
persistmiddleware by @rafaeelaudibert in [https://github.com/Relax types forpersistmiddleware pmndrs/zustand#2332](https://togithub.com/pmndrs/zustaConfiguration
📅 Schedule: 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 is behind base branch, or you tick the rebase/retry checkbox.
👻 Immortal: This PR will be recreated if closed unmerged. Get config help if that's undesired.
This PR has been generated by Mend Renovate. View repository job log here.