Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix(cognito-user-migrate): update all non-major dependencies #1110

Merged
merged 1 commit into from
Feb 20, 2024

Conversation

renovate[bot]
Copy link
Contributor

@renovate renovate bot commented Feb 16, 2024

Mend Renovate

This PR contains the following updates:

Package Change Age Adoption Passing Confidence
@aws-lambda-powertools/logger (source) 1.18.0 -> 1.18.1 age adoption passing confidence
@iconify-json/simple-icons 1.1.91 -> 1.1.92 age adoption passing confidence
@prisma/client (source) 5.9.1 -> 5.10.1 age adoption passing confidence
@prisma/instrumentation (source) 5.9.1 -> 5.10.1 age adoption passing confidence
@prisma/nextjs-monorepo-workaround-plugin (source) 5.9.1 -> 5.10.1 age adoption passing confidence
@sentry/browser (source) 7.101.1 -> 7.102.0 age adoption passing confidence
@sentry/nextjs (source) 7.101.1 -> 7.102.0 age adoption passing confidence
@sentry/node (source) 7.101.1 -> 7.102.0 age adoption passing confidence
@sentry/opentelemetry (source) 7.101.1 -> 7.102.0 age adoption passing confidence
@sentry/opentelemetry-node (source) 7.101.1 -> 7.102.0 age adoption passing confidence
@sentry/profiling-node (source) 7.101.1 -> 7.102.0 age adoption passing confidence
@storybook/addon-a11y (source) 7.6.16 -> 7.6.17 age adoption passing confidence
@storybook/addon-actions (source) 7.6.16 -> 7.6.17 age adoption passing confidence
@storybook/addon-essentials (source) 7.6.16 -> 7.6.17 age adoption passing confidence
@storybook/addon-interactions (source) 7.6.16 -> 7.6.17 age adoption passing confidence
@storybook/addon-links (source) 7.6.16 -> 7.6.17 age adoption passing confidence
@storybook/addon-viewport (source) 7.6.16 -> 7.6.17 age adoption passing confidence
@storybook/components (source) 7.6.16 -> 7.6.17 age adoption passing confidence
@storybook/core-events (source) 7.6.16 -> 7.6.17 age adoption passing confidence
@storybook/manager-api (source) 7.6.16 -> 7.6.17 age adoption passing confidence
@storybook/nextjs (source) 7.6.16 -> 7.6.17 age adoption passing confidence
@storybook/preview-api (source) 7.6.16 -> 7.6.17 age adoption passing confidence
@storybook/react (source) 7.6.16 -> 7.6.17 age adoption passing confidence
@storybook/theming (source) 7.6.16 -> 7.6.17 age adoption passing confidence
@storybook/types (source) 7.6.16 -> 7.6.17 age adoption passing confidence
@swc/core (source) 1.4.1 -> 1.4.2 age adoption passing confidence
@types/aws-lambda (source) 8.10.133 -> 8.10.134 age adoption passing confidence
@types/react (source) 18.2.55 -> 18.2.57 age adoption passing confidence
@typescript-eslint/eslint-plugin (source) 7.0.1 -> 7.0.2 age adoption passing confidence
@typescript-eslint/parser (source) 7.0.1 -> 7.0.2 age adoption passing confidence
@vercel/analytics (source) 1.2.0 -> 1.2.2 age adoption passing confidence
@vercel/edge-config (source) 1.0.0 -> 1.0.2 age adoption passing confidence
chromatic (source) 10.9.5 -> 10.9.6 age adoption passing confidence
dotenv 16.4.4 -> 16.4.5 age adoption passing confidence
i18next (source) 23.8.2 -> 23.9.0 age adoption passing confidence
inquirer (source) 9.2.14 -> 9.2.15 age adoption passing confidence
msw (source) 2.2.0 -> 2.2.1 age adoption passing confidence
nanoid 5.0.5 -> 5.0.6 age adoption passing confidence
prisma (source) 5.9.1 -> 5.10.1 age adoption passing confidence
storybook (source) 7.6.16 -> 7.6.17 age adoption passing confidence
webpack 5.90.2 -> 5.90.3 age adoption passing confidence
zustand 4.5.0 -> 4.5.1 age adoption passing confidence

Release Notes

aws-powertools/powertools-lambda-typescript (@​aws-lambda-powertools/logger)

v1.18.1

Compare Source

Note: Version bump only for package aws-lambda-powertools-typescript

prisma/prisma (@​prisma/client)

v5.10.1

Compare Source

Today, we are issuing the 5.10.1 patch release.

Fix in Prisma Client / Prisma CLI

v5.10.0

Compare Source

Today, we are excited to share the 5.10.0 stable 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 relationJoins Preview feature with the mysql database provider, you now also get access to the relationLoadStrategy option in relation queries that let you choose whether you want to merged relations on the application- or database-level.

If you enable the relationJoins Preview feature, you can choose between the join and query options:

  • 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:

// schema.prisma
generator client {
  provider        = "prisma-client-js"
  previewFeatures = ["relationJoins"]
}

Be sure to re-generate Prisma Client afterwards:

npx prisma generate

And finally, specify the relation loading strategy for your relation query via the relationLoadStrategy option as follows:

await prisma.user.findMany({
  relationLoadStrategy: 'join', // or 'query' 
  include: {
    posts: true,
  },
})

Note that in the example above, the relationLoadStrategy could be omitted altogether because join is used as the default value.

A few notes about relationLoadStrategy support on MySQL:

  • relationLoadStrategy is supported for MySQL v8.0.14 and higher. MariaDB is not supported.
  • Prisma ORM uses correlated sub-queries for MySQL (as opposed to LATERAL JOINs which are used on PostgreSQL).
Configure transaction options in the PrismaClient constructor

This feature enables you to configure the following transaction options on a global level via the PrismaClient constructor:

  • 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:

const prisma = new PrismaClient({
  transactionOptions: {
    isolationLevel: 'ReadCommitted',
    timeout: 1_000, // 1 sec
    maxWait: 2_000  // 2 sec
  }
})

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 P2037 code for “Too many database connections opened” errors

We 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
getsentry/sentry-javascript (@​sentry/browser)

v7.102.0

Compare Source

  • fix: Export session API (#​10712)
  • fix(core): Fix scope capturing via captureContext function (#​10737)
Bundle size 📦
Path Size
@​sentry/browser (incl. Tracing, Replay, Feedback) - Webpack (gzipped) 78.43 KB
@​sentry/browser (incl. Tracing, Replay) - Webpack (gzipped) 69.66 KB
@​sentry/browser (incl. Tracing, Replay with Canvas) - Webpack (gzipped) 73.6 KB
@​sentry/browser (incl. Tracing, Replay) - Webpack with treeshaking flags (gzipped) 63.28 KB
@​sentry/browser (incl. Tracing) - Webpack (gzipped) 33.62 KB
@​sentry/browser (incl. browserTracingIntegration) - Webpack (gzipped) 33.5 KB
@​sentry/browser (incl. Feedback) - Webpack (gzipped) 31.38 KB
@​sentry/browser (incl. sendFeedback) - Webpack (gzipped) 31.39 KB
@​sentry/browser - Webpack (gzipped) 22.66 KB
@​sentry/browser (incl. Tracing, Replay, Feedback) - ES6 CDN Bundle (gzipped) 76.72 KB
@​sentry/browser (incl. Tracing, Replay) - ES6 CDN Bundle (gzipped) 68.21 KB
@​sentry/browser (incl. Tracing) - ES6 CDN Bundle (gzipped) 34.03 KB
@​sentry/browser - ES6 CDN Bundle (gzipped) 25.05 KB
@​sentry/browser (incl. Tracing, Replay) - ES6 CDN Bundle (minified & uncompressed) 214.99 KB
@​sentry/browser (incl. Tracing) - ES6 CDN Bundle (minified & uncompressed) 102.78 KB
@​sentry/browser - ES6 CDN Bundle (minified & uncompressed) 75.08 KB
@​sentry/browser (incl. Tracing) - ES5 CDN Bundle (gzipped) 37.19 KB
@​sentry/react (incl. Tracing, Replay) - Webpack (gzipped) 70.03 KB
@​sentry/react - Webpack (gzipped) 22.69 KB
@​sentry/nextjs Client (incl. Tracing, Replay) - Webpack (gzipped) 87.7 KB
@​sentry/nextjs Client - Webpack (gzipped) 51.89 KB
@​sentry-internal/feedback - Webpack (gzipped) 17.24 KB
storybookjs/storybook (@​storybook/addon-a11y)

v7.6.17

Compare Source

storybookjs/storybook (@​storybook/addon-actions)

v7.6.17

Compare Source

storybookjs/storybook (@​storybook/addon-essentials)

v7.6.17

Compare Source

storybookjs/storybook (@​storybook/addon-interactions)

v7.6.17

Compare Source

swc-project/swc (@​swc/core)

v1.4.2

Compare Source

Bug Fixes
Features
Testing
typescript-eslint/typescript-eslint (@​typescript-eslint/eslint-plugin)

v7.0.2

Compare Source

🩹 Fixes
  • fix tsconfig-less check errors, fix @types/eslint incompatibilities, add tests
❤️ Thank You
  • Brad Zacher
  • Gareth Jones

You can read about our versioning strategy and releases on our website.

typescript-eslint/typescript-eslint (@​typescript-eslint/parser)

v7.0.2

Compare Source

🩹 Fixes
  • fix tsconfig-less check errors, fix @types/eslint incompatibilities, add tests
❤️ Thank You
  • Brad Zacher
  • Gareth Jones

You can read about our versioning strategy and releases on our website.

vercel/analytics (@​vercel/analytics)

v1.2.2

Compare Source

What's Changed

Full Changelog: vercel/analytics@1.2.1...1.2.2

v1.2.1

Compare Source

What's Changed

New Contributors

Full Changelog: vercel/analytics@1.2.0...1.2.1

vercel/storage (@​vercel/edge-config)

v1.0.2

Compare Source

Patch Changes
  • 78d5814: prevents having too many open connections

v1.0.1

Compare Source

Patch Changes
chromaui/chromatic-cli (chromatic)

v10.9.6

Compare Source

🐛 Bug Fix
Authors: 1

motdotla/dotenv (dotenv)

v16.4.5

Compare Source

Changed
  • 🐞 fix recent regression when using path option. return to historical behavior: do not attempt to auto find .env if path set. (regression was introduced in 16.4.3) #​814
i18next/i18next (i18next)

v23.9.0

Compare Source

  • types: support nested keys in InterpolationMap 2140 fixes 2014

v23.8.3

Compare Source

  • prevent resource mutation when using addResourceBundle 2081
SBoudrias/Inquirer.js (inquirer)

v9.2.15

Compare Source

mswjs/msw (msw)

v2.2.1

Compare Source

v2.2.1 (2024-02-17)

Bug Fixes
ai/nanoid (nanoid)

v5.0.6

Compare Source

  • Fixed React Native support.
storybookjs/storybook (storybook)

v7.6.17

Compare Source

webpack/webpack (webpack)

v5.90.3

Compare Source

Bug Fixes

  • don't mangle when destructuring a reexport
  • types for Stats.toJson() and Stats.toString()
  • many internal types
  • [CSS] clean up export css local vars

Perf

  • simplify and optimize chunk graph creation
pmndrs/zustand (zustand)

v4.5.1

Compare Source

People might have misunderstood with useStore deprecation message. Hope this mitigates it.

What's Changed


Configuration

📅 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.


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

This PR has been generated by Mend Renovate. View repository job log here.

@renovate renovate bot requested a review from JoeKarow as a code owner February 16, 2024 16:02
@renovate renovate bot added automerge Enable Kodiak auto-merge dependencies Change in project dependencies. kodiak: merge.method = 'squash' Kodiak will squash merge this PR. labels Feb 16, 2024
Copy link

vercel bot commented Feb 16, 2024

The latest updates on your projects. Learn more about Vercel for Git ↗︎

Name Status Preview Comments Updated (UTC)
inreach-app ✅ Ready (Inspect) Visit Preview 💬 Add feedback Feb 20, 2024 11:52pm

Copy link

socket-security bot commented Feb 16, 2024

New and removed dependencies detected. Learn more about Socket for GitHub ↗︎

Package New capabilities Transitives Size Publisher
npm/@aws-lambda-powertools/logger@1.18.1 Transitive: environment +1 167 kB aws-powertools-bot
npm/@iconify-json/simple-icons@1.1.92 None +1 4.78 MB cyberalien
npm/@prisma/client@5.10.1 None 0 8.56 MB aqrln, janpio, jolg42, ...3 more
npm/@prisma/instrumentation@5.10.1 Transitive: environment, filesystem, shell, unsafe +7 4.31 MB aqrln, janpio, jolg42, ...3 more
npm/@prisma/nextjs-monorepo-workaround-plugin@5.10.1 None 0 18.2 kB aqrln, janpio, jolg42, ...3 more
npm/@sentry/browser@7.102.0 network +7 9.99 MB sentry-bot
npm/@sentry/nextjs@7.102.0 Transitive: environment, filesystem, network, shell, unsafe +17 15.1 MB benvinegar, billyvg, evanpurkhiser, ...8 more
npm/@sentry/node@7.102.0 environment, filesystem, network, shell, unsafe +4 6.64 MB sentry-bot
npm/@sentry/opentelemetry-node@7.102.0 Transitive: environment, filesystem, network, shell, unsafe +8 7.56 MB benvinegar, billyvg, evanpurkhiser, ...8 more
npm/@sentry/opentelemetry@7.102.0 Transitive: environment, filesystem, network, shell, unsafe +8 7.88 MB benvinegar, billyvg, evanpurkhiser, ...8 more
npm/@sentry/profiling-node@7.102.0 environment, filesystem, shell 0 2.55 MB sentry-bot
npm/@storybook/addon-a11y@7.6.17 None +3 2.49 MB shilman
npm/@storybook/addon-actions@7.6.17 environment, eval +3 448 kB shilman
npm/@storybook/addon-essentials@7.6.17 Transitive: environment, eval, filesystem, network, unsafe +132 34.8 MB shilman
npm/@storybook/addon-interactions@7.6.17 Transitive: environment +25 11.1 MB shilman
npm/@storybook/addon-links@7.6.17 environment, eval +2 379 kB shilman
npm/@storybook/addon-viewport@7.6.17 None 0 16.5 kB shilman
npm/@storybook/components@7.6.17 environment, eval +68 16.1 MB shilman
npm/@storybook/core-events@7.6.17 None 0 73.1 kB shilman
npm/@storybook/manager-api@7.6.17 environment, network Transitive: eval +29 10 MB shilman
npm/@storybook/nextjs@7.6.17 Transitive: environment, eval, filesystem, network, shell, unsafe +179 23.4 MB alexandrebodin, amalik2, dandean, ...23 more
npm/@storybook/preview-api@7.6.17 network Transitive: environment +26 9.74 MB shilman
npm/@storybook/react@7.6.17 Transitive: environment, filesystem, network, unsafe +43 15.6 MB shilman
npm/@storybook/theming@7.6.17 environment +3 759 kB shilman
npm/@storybook/types@7.6.17 Transitive: environment +24 8.91 MB shilman
npm/@swc/core@1.4.2 environment, filesystem, shell +3 627 kB kdy1
npm/@types/aws-lambda@8.10.134 None 0 141 kB types
npm/@types/react@18.2.57 None +2 435 kB types
npm/@typescript-eslint/eslint-plugin@7.0.2 None +11 5.23 MB bradzacher, jameshenry
npm/@typescript-eslint/parser@7.0.2 None +4 1.37 MB jameshenry
npm/@vercel/analytics@1.2.2 None 0 190 kB chriswdmr, ijjk, matheuss, ...6 more
npm/@vercel/edge-config@1.0.2 None +2 1.31 MB chriswdmr, ijjk, matheuss, ...6 more
npm/aws-jwt-verify@4.0.1 None 0 252 kB ottokrus
npm/aws-lambda@1.0.7 environment, filesystem, shell Transitive: network +1 93 MB adrian.praja

🚮 Removed packages: npm/@aws-lambda-powertools/logger@1.18.0, npm/@iconify-json/simple-icons@1.1.91, npm/@prisma/client@5.9.1, npm/@prisma/instrumentation@5.9.1, npm/@prisma/nextjs-monorepo-workaround-plugin@5.9.1, npm/@sentry/browser@7.101.1, npm/@sentry/nextjs@7.101.1, npm/@sentry/node@7.101.1, npm/@sentry/opentelemetry-node@7.101.1, npm/@sentry/opentelemetry@7.101.1, npm/@sentry/profiling-node@7.101.1, npm/@storybook/addon-a11y@7.6.16, npm/@storybook/addon-actions@7.6.16, npm/@storybook/addon-essentials@7.6.16, npm/@storybook/addon-interactions@7.6.16, npm/@storybook/addon-links@7.6.16, npm/@storybook/addon-viewport@7.6.16, npm/@storybook/components@7.6.16, npm/@storybook/core-events@7.6.16, npm/@storybook/manager-api@7.6.16, npm/@storybook/nextjs@7.6.16, npm/@storybook/preview-api@7.6.16, npm/@storybook/react@7.6.16, npm/@storybook/theming@7.6.16, npm/@storybook/types@7.6.16, npm/@swc/core@1.4.1, npm/@types/aws-lambda@8.10.133, npm/@types/react@18.2.55, npm/@typescript-eslint/eslint-plugin@7.0.1, npm/@typescript-eslint/parser@7.0.1, npm/@vercel/analytics@1.2.0, npm/@vercel/edge-config@1.0.0

View full report↗︎

Copy link
Contributor

github-actions bot commented Feb 16, 2024

📦 Next.js Bundle Analysis for @weareinreach/app

This analysis was generated by the Next.js Bundle Analysis action. 🤖

This PR introduced no changes to the JavaScript bundle! 🙌

Copy link

alwaysmeticulous bot commented Feb 16, 2024

🤖 No test run has been triggered as your Meticulous project has been deactivated (since you haven't viewed any test results in a while). Click here to reactivate.

Last updated for commit 0a8a42b. This comment will update as new commits are pushed.

@renovate renovate bot changed the title chore(ui): update dependency chromatic to v10.9.6 chore(ui): update all non-major dependencies Feb 17, 2024
@renovate renovate bot changed the title chore(ui): update all non-major dependencies chore(cognito-user-migrate): update all non-major dependencies Feb 18, 2024
@renovate renovate bot changed the title chore(ui): update all non-major dependencies fix(cognito-user-migrate): update all non-major dependencies Feb 20, 2024
Signed-off-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
Copy link

sonarcloud bot commented Feb 20, 2024

Quality Gate Passed Quality Gate passed

Issues
0 New issues

Measures
0 Security Hotspots
No data about Coverage
0.0% Duplication on New Code

See analysis details on SonarCloud

@kodiakhq kodiakhq bot merged commit fd1e85c into dev Feb 20, 2024
20 of 21 checks passed
@kodiakhq kodiakhq bot deleted the renovate/all-minor-patch branch February 20, 2024 23:52
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Projects
None yet
Development

Successfully merging this pull request may close these issues.

None yet

1 participant