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(auth): update all non-major dependencies #1367

Merged
merged 1 commit into from
Aug 6, 2024
Merged

Conversation

renovate[bot]
Copy link
Contributor

@renovate renovate bot commented Aug 5, 2024

Mend Renovate

This PR contains the following updates:

Package Type Update Change OpenSSF
@aws-sdk/client-cognito-identity-provider (source) dependencies minor 3.623.0 -> 3.624.0 OpenSSF Scorecard
@playwright/test (source) devDependencies minor 1.45.3 -> 1.46.0 OpenSSF Scorecard
@prisma/client (source) dependencies minor 5.17.0 -> 5.18.0 OpenSSF Scorecard
@prisma/instrumentation (source) dependencies minor 5.17.0 -> 5.18.0 OpenSSF Scorecard
@prisma/nextjs-monorepo-workaround-plugin (source) devDependencies minor 5.17.0 -> 5.18.0 OpenSSF Scorecard
@relative-ci/agent (source) devDependencies patch 4.2.9 -> 4.2.10 OpenSSF Scorecard
@sentry/browser (source) dependencies minor 8.22.0 -> 8.24.0 OpenSSF Scorecard
@sentry/nextjs (source) dependencies minor 8.22.0 -> 8.24.0 OpenSSF Scorecard
@sentry/node (source) dependencies minor 8.22.0 -> 8.24.0 OpenSSF Scorecard
@sentry/opentelemetry (source) dependencies minor 8.22.0 -> 8.24.0 OpenSSF Scorecard
@sentry/profiling-node (source) dependencies minor 8.22.0 -> 8.24.0 OpenSSF Scorecard
eslint-plugin-turbo (source) devDependencies patch 2.0.11 -> 2.0.12 OpenSSF Scorecard
prisma (source) devDependencies minor 5.17.0 -> 5.18.0 OpenSSF Scorecard
remeda (source) dependencies minor 2.7.0 -> 2.10.0 OpenSSF Scorecard
turbo (source) devDependencies patch 2.0.11 -> 2.0.12 OpenSSF Scorecard

Release Notes

aws/aws-sdk-js-v3 (@​aws-sdk/client-cognito-identity-provider)

v3.624.0

Compare Source

Note: Version bump only for package @​aws-sdk/client-cognito-identity-provider

microsoft/playwright (@​playwright/test)

v1.46.0

Compare Source

prisma/prisma (@​prisma/client)

v5.18.0

Compare Source

🌟 Help us spread the word about Prisma by starring the repo or tweeting about the release. 🌟

Highlights
Native support for UUIDv7

Previous to this release, the Prisma Schema function uuid() did not accept any arguments and created a UUIDv4 ID. While sufficient in many cases, UUIDv4 has a few drawbacks, namely that it is not temporally sortable.

UUIDv7 attempts to resolve this issue, making it easy to temporally sort your database rows by ID!

To support this, we’ve updated the uuid() function in Prisma Schema to accept an optional, integer argument. Right now, the only valid values are 4 and 7, with 4 being the default.

model User {
  id   String @​id @​default(uuid()) // defaults to 4
  name String
}

model User {
  id   String @​id @​default(uuid(4)) // same as above, but explicit
  name String
}

model User {
  id   String @​id @​default(uuid(7)) // will use UUIDv7 instead of UUIDv4
  name String
}
Bug squashing

We’ve squashed a number of bugs this release, special thanks to everyone who helped us! A few select highlights are:

Fixes and improvements
Prisma
Language tools (e.g. VS Code)
Credits

Huge thanks to @​mcuelenaere, @​pagewang0, @​Druue, @​key-moon, @​Jolg42, @​pranayat, @​ospfranco, @​yubrot, @​skyzh, @​haaawk for helping!

relative-ci/agent (@​relative-ci/agent)

v4.2.10: Release 4.2.10

Compare Source

What's Changed

Full Changelog: relative-ci/agent@v4.2.9...v4.2.10

getsentry/sentry-javascript (@​sentry/browser)

v8.24.0

Compare Source

  • feat(nestjs): Filter RPC exceptions (#​13227)
  • fix: Guard getReader function for other fetch implementations (#​13246)
  • fix(feedback): Ensure feedback can be lazy loaded in CDN bundles (#​13241)

v8.23.0

Compare Source

Important Changes
  • feat(cloudflare): Add Cloudflare D1 instrumentation (#​13142)

This release includes support for Cloudflare D1, Cloudflare's serverless SQL database. To instrument your Cloudflare D1
database, use the instrumentD1WithSentry method as follows:

// env.DB is the D1 DB binding configured in your `wrangler.toml`
const db = instrumentD1WithSentry(env.DB);
// Now you can use the database as usual
await db.prepare('SELECT * FROM table WHERE id = ?').bind(1).run();
Other Changes
  • feat(cloudflare): Allow users to pass handler to sentryPagesPlugin (#​13192)
  • feat(cloudflare): Instrument scheduled handler (#​13114)
  • feat(core): Add getTraceData function (#​13134)
  • feat(nestjs): Automatic instrumentation of nestjs interceptors before route execution (#​13153)
  • feat(nestjs): Automatic instrumentation of nestjs pipes (#​13137)
  • feat(nuxt): Filter out Nuxt build assets (#​13148)
  • feat(profiling): Attach sdk info to chunks (#​13145)
  • feat(solidstart): Add sentry onBeforeResponse middleware to enable distributed tracing (#​13221)
  • feat(solidstart): Filter out low quality transactions for build assets (#​13222)
  • fix(browser): Avoid showing browser extension error message in non-window global scopes (#​13156)
  • fix(feedback): Call dialog.close() in dialog close callbacks in \_loadAndRenderDialog (#​13203)
  • fix(nestjs): Inline Observable type to resolve missing 'rxjs' dependency (#​13166)
  • fix(nuxt): Detect pageload by adding flag in Vue router (#​13171)
  • fix(utils): Handle when requests get aborted in fetch instrumentation (#​13202)
  • ref(browser): Improve browserMetrics collection (#​13062)

Work in this release was contributed by @​horochx. Thank you for your contribution!

vercel/turbo (eslint-plugin-turbo)

v2.0.12

Compare Source

remeda/remeda (remeda)

v2.10.0

Compare Source

v2.9.1

Compare Source

Bug Fixes
  • takeXXX,dropXXX: Support unions of arrays/tuples (#​789) (9f1f4c1)

v2.9.0

Compare Source

Features
  • Add toUpperCase, toLowerCase, capitalize, uncapitalize, toCamelCase, startsWith, endsWith (#​790) (57a6825), closes #​509

v2.8.0

Compare Source

v2.7.2

Compare Source

Bug Fixes

v2.7.1

Compare Source

vercel/turbo (turbo)

v2.0.12

Compare Source


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 was generated by Mend Renovate. View the repository job log.

Summary by CodeRabbit

  • New Features

    • Updated dependencies may provide enhancements, performance improvements, and new features across various packages including Sentry, Playwright, AWS SDK, and Prisma.
  • Bug Fixes

    • Minor version updates potentially include bug fixes and optimizations for improved functionality.
  • Chores

    • Routine maintenance of package dependencies to ensure updated integrations and performance.

@renovate renovate bot requested a review from JoeKarow as a code owner August 5, 2024 16:22
@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 Aug 5, 2024
Copy link

vercel bot commented Aug 5, 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 Aug 6, 2024 5:37pm

Copy link
Contributor

coderabbitai bot commented Aug 5, 2024

Caution

Review failed

The pull request is closed.

Walkthrough

The updates consist of incrementing the versions of various dependencies in the package.json files across multiple modules. Notable changes include upgrading several Sentry-related packages from 8.22.0 to 8.24.0, along with minor updates to remeda, @playwright/test, and the AWS SDK for Cognito. These enhancements focus on improving performance, fixing bugs, and refining error tracking, all while maintaining the core functionality of the application.

Changes

Files Change Summary
apps/app/package.json Updated Sentry dependencies: @sentry/browser, @sentry/nextjs, @sentry/node, @sentry/opentelemetry, and @sentry/profiling-node from 8.22.0 to 8.24.0. Updated @playwright/test from 1.45.3 to 1.46.0 and @relative-ci/agent from 4.2.9 to 4.2.10.
packages/api/package.json Updated @sentry/nextjs from 8.22.0 to 8.24.0 and remeda from 2.7.0 to 2.10.0.
packages/auth/package.json Updated @aws-sdk/client-cognito-identity-provider from 3.623.0 to 3.624.0.
packages/db/package.json Updated @prisma/client, @prisma/instrumentation, and prisma from 5.17.0 to 5.18.0.
lambdas/cognito-user-migrate/package.json Updated @prisma/client and prisma from 5.17.0 to 5.18.0.
packages/eslint-config/package.json Updated eslint-plugin-turbo from 2.0.11 to 2.0.12.
package.json Updated turbo from 2.0.11 to 2.0.12.

Sequence Diagram(s)

sequenceDiagram
    participant User
    participant App
    participant Sentry

    User->>App: Interact with App
    App->>Sentry: Log error/event
    Sentry-->>App: Acknowledge
Loading

Thank you for using CodeRabbit. We offer it for free to the OSS community and would appreciate your support in helping us grow. If you find it useful, would you consider giving us a shout-out on your favorite social media?

Share
Tips

Chat

There are 3 ways to chat with CodeRabbit:

  • Review comments: Directly reply to a review comment made by CodeRabbit. Example:
    • I pushed a fix in commit <commit_id>.
    • Generate unit testing code for this file.
    • Open a follow-up GitHub issue for this discussion.
  • Files and specific lines of code (under the "Files changed" tab): Tag @coderabbitai in a new review comment at the desired location with your query. Examples:
    • @coderabbitai generate unit testing code for this file.
    • @coderabbitai modularize this function.
  • PR comments: Tag @coderabbitai in a new PR comment to ask questions about the PR branch. For the best results, please provide a very specific query, as very limited context is provided in this mode. Examples:
    • @coderabbitai generate interesting stats about this repository and render them as a table.
    • @coderabbitai show all the console.log statements in this repository.
    • @coderabbitai read src/utils.ts and generate unit testing code.
    • @coderabbitai read the files in the src/scheduler package and generate a class diagram using mermaid and a README in the markdown format.
    • @coderabbitai help me debug CodeRabbit configuration file.

Note: Be mindful of the bot's finite context window. It's strongly recommended to break down tasks such as reading entire modules into smaller chunks. For a focused discussion, use review comments to chat about specific files and their changes, instead of using the PR comments.

CodeRabbit Commands (invoked as PR comments)

  • @coderabbitai pause to pause the reviews on a PR.
  • @coderabbitai resume to resume the paused reviews.
  • @coderabbitai review to trigger an incremental review. This is useful when automatic reviews are disabled for the repository.
  • @coderabbitai full review to do a full review from scratch and review all the files again.
  • @coderabbitai summary to regenerate the summary of the PR.
  • @coderabbitai resolve resolve all the CodeRabbit review comments.
  • @coderabbitai configuration to show the current CodeRabbit configuration for the repository.
  • @coderabbitai help to get help.

Additionally, you can add @coderabbitai ignore anywhere in the PR description to prevent this PR from being reviewed.

CodeRabbit Configuration File (.coderabbit.yaml)

  • You can programmatically configure CodeRabbit by adding a .coderabbit.yaml file to the root of your repository.
  • Please see the configuration documentation for more information.
  • If your editor has YAML language server enabled, you can add the path at the top of this file to enable auto-completion and validation: # yaml-language-server: $schema=https://coderabbit.ai/integrations/schema.v2.json

Documentation and Community

  • Visit our Documentation for detailed information on how to use CodeRabbit.
  • Join our Discord Community to get help, request features, and share feedback.
  • Follow us on X/Twitter for updates and announcements.

Copy link

relativeci bot commented Aug 5, 2024

#1134 Bundle Size — 3.51MiB (~+0.01%).

e611de9(current) vs 94b8b59 dev#1130(baseline)

Warning

Bundle contains 5 duplicate packages – View duplicate packages

Bundle metrics  Change 2 changes Regression 1 regression
                 Current
#1134
     Baseline
#1130
Regression  Initial JS 3.07MiB(~+0.01%) 3.07MiB
No change  Initial CSS 9.54KiB 9.54KiB
Change  Cache Invalidation 65.37% 42.19%
No change  Chunks 64 64
No change  Assets 77 77
No change  Modules 2057 2057
No change  Duplicate Modules 340 340
No change  Duplicate Code 9.42% 9.42%
No change  Packages 209 209
No change  Duplicate Packages 5 5
Bundle size by type  Change 2 changes Regression 1 regression Improvement 1 improvement
                 Current
#1134
     Baseline
#1130
Regression  JS 3.39MiB (~+0.01%) 3.39MiB
No change  Fonts 94.54KiB 94.54KiB
No change  CSS 9.54KiB 9.54KiB
Improvement  Other 9.09KiB (-0.12%) 9.1KiB
No change  IMG 8.57KiB 8.57KiB

Bundle analysis reportBranch renovate/all-minor-patchProject dashboard

Copy link
Contributor

github-actions bot commented Aug 5, 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
Contributor

@coderabbitai coderabbitai bot left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Actionable comments posted: 0

Review details

Configuration used: CodeRabbit UI
Review profile: CHILL

Commits

Files that changed from the base of the PR and between 3313e65 and 2eb7f9f.

Files ignored due to path filters (1)
  • pnpm-lock.yaml is excluded by !**/pnpm-lock.yaml
Files selected for processing (2)
  • apps/app/package.json (1 hunks)
  • packages/api/package.json (1 hunks)
Files skipped from review due to trivial changes (1)
  • apps/app/package.json
Additional comments not posted (1)
packages/api/package.json (1)

20-20: Verify the changelog for @sentry/nextjs version 8.23.0.

Ensure that the update from 8.22.0 to 8.23.0 does not introduce breaking changes or require additional configuration adjustments. Review the changelog for any critical updates.

Verification successful

The update to @sentry/nextjs version 8.23.0 does not introduce breaking changes or require additional configuration adjustments.

The changelog indicates the addition of new features, such as Cloudflare D1 instrumentation, but no breaking changes.

  • No further action is required.
Scripts executed

The following scripts were executed for the analysis:

Script:

#!/bin/bash
# Description: Verify the changelog for `@sentry/nextjs` version `8.23.0` for any critical updates or breaking changes.

# Test: Fetch and display the changelog. Expect: No breaking changes or required configuration adjustments.
curl -s https://raw.githubusercontent.com/getsentry/sentry-javascript/master/CHANGELOG.md | grep -A 20 "8.23.0"

Length of output: 831

Copy link

alwaysmeticulous bot commented Aug 5, 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 e611de9. This comment will update as new commits are pushed.

@renovate renovate bot force-pushed the renovate/all-minor-patch branch from 2eb7f9f to 76e6968 Compare August 5, 2024 18:24
@renovate renovate bot changed the title fix(app): update all non-major dependencies to v8.23.0 fix(app): update all non-major dependencies Aug 5, 2024
Copy link

socket-security bot commented Aug 5, 2024

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

Package New capabilities Transitives Size Publisher

🚮 Removed packages: npm/typescript@5.5.4

View full report↗︎

Copy link
Contributor

@coderabbitai coderabbitai bot left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Actionable comments posted: 0

Review details

Configuration used: CodeRabbit UI
Review profile: CHILL

Commits

Files that changed from the base of the PR and between 2eb7f9f and 76e6968.

Files ignored due to path filters (1)
  • pnpm-lock.yaml is excluded by !**/pnpm-lock.yaml
Files selected for processing (2)
  • apps/app/package.json (1 hunks)
  • packages/api/package.json (2 hunks)
Files skipped from review due to trivial changes (2)
  • apps/app/package.json
  • packages/api/package.json

@renovate renovate bot force-pushed the renovate/all-minor-patch branch from 76e6968 to 16adb82 Compare August 5, 2024 19:52
@renovate renovate bot changed the title fix(app): update all non-major dependencies fix(auth): update all non-major dependencies Aug 5, 2024
Copy link

socket-security bot commented Aug 5, 2024

👍 Dependency issues cleared. Learn more about Socket for GitHub ↗︎

This PR previously contained dependency changes with security issues that have been resolved, removed, or ignored.

View full report↗︎

Copy link
Contributor

@coderabbitai coderabbitai bot left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Actionable comments posted: 0

Review details

Configuration used: CodeRabbit UI
Review profile: CHILL

Commits

Files that changed from the base of the PR and between 76e6968 and 16adb82.

Files ignored due to path filters (1)
  • pnpm-lock.yaml is excluded by !**/pnpm-lock.yaml
Files selected for processing (3)
  • apps/app/package.json (1 hunks)
  • packages/api/package.json (2 hunks)
  • packages/auth/package.json (1 hunks)
Files skipped from review due to trivial changes (2)
  • apps/app/package.json
  • packages/api/package.json
Additional comments not posted (1)
packages/auth/package.json (1)

61-61: Verify the changelog for @aws-sdk/client-cognito-identity-provider version 3.624.0.

The update from 3.623.0 to 3.624.0 is a minor version change. Minor updates typically include bug fixes, performance improvements, or minor features. However, it is prudent to verify the changelog to ensure no breaking changes or significant alterations that might affect the application.

@renovate renovate bot force-pushed the renovate/all-minor-patch branch from 16adb82 to df8aed1 Compare August 5, 2024 23:10
Copy link
Contributor

@coderabbitai coderabbitai bot left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Actionable comments posted: 0

Review details

Configuration used: CodeRabbit UI
Review profile: CHILL

Commits

Files that changed from the base of the PR and between 16adb82 and df8aed1.

Files ignored due to path filters (1)
  • pnpm-lock.yaml is excluded by !**/pnpm-lock.yaml
Files selected for processing (3)
  • apps/app/package.json (2 hunks)
  • packages/api/package.json (2 hunks)
  • packages/auth/package.json (1 hunks)
Files skipped from review due to trivial changes (2)
  • apps/app/package.json
  • packages/api/package.json
Files skipped from review as they are similar to previous changes (1)
  • packages/auth/package.json

Copy link
Contributor

@coderabbitai coderabbitai bot left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Actionable comments posted: 0

Review details

Configuration used: CodeRabbit UI
Review profile: CHILL

Commits

Files that changed from the base of the PR and between df8aed1 and 113b067.

Files ignored due to path filters (1)
  • pnpm-lock.yaml is excluded by !**/pnpm-lock.yaml
Files selected for processing (3)
  • apps/app/package.json (2 hunks)
  • packages/api/package.json (2 hunks)
  • packages/auth/package.json (1 hunks)
Files skipped from review due to trivial changes (3)
  • apps/app/package.json
  • packages/api/package.json
  • packages/auth/package.json

Copy link
Contributor

@coderabbitai coderabbitai bot left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Actionable comments posted: 0

Review details

Configuration used: CodeRabbit UI
Review profile: CHILL

Commits

Files that changed from the base of the PR and between 113b067 and 7c9db7a.

Files ignored due to path filters (1)
  • pnpm-lock.yaml is excluded by !**/pnpm-lock.yaml
Files selected for processing (5)
  • apps/app/package.json (2 hunks)
  • lambdas/cognito-user-migrate/package.json (2 hunks)
  • packages/api/package.json (2 hunks)
  • packages/auth/package.json (1 hunks)
  • packages/db/package.json (2 hunks)
Files skipped from review due to trivial changes (3)
  • apps/app/package.json
  • lambdas/cognito-user-migrate/package.json
  • packages/auth/package.json
Files skipped from review as they are similar to previous changes (1)
  • packages/api/package.json
Additional comments not posted (3)
packages/db/package.json (3)

50-50: Update @prisma/instrumentation to 5.18.0

The update from 5.17.0 to 5.18.0 may include bug fixes, performance improvements, or new features. Ensure that the changes are compatible with your current implementation.


107-107: Update prisma to 5.18.0

The update from 5.17.0 to 5.18.0 may include bug fixes, performance improvements, or new features. Ensure that the changes are compatible with your current implementation.


49-49: Update @prisma/client to 5.18.0

The update from 5.17.0 to 5.18.0 may include bug fixes, performance improvements, or new features. Ensure that the changes are compatible with your current implementation.

Copy link
Contributor

@coderabbitai coderabbitai bot left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Actionable comments posted: 0

Review details

Configuration used: CodeRabbit UI
Review profile: CHILL

Commits

Files that changed from the base of the PR and between 7c9db7a and dfc36a2.

Files ignored due to path filters (1)
  • pnpm-lock.yaml is excluded by !**/pnpm-lock.yaml
Files selected for processing (5)
  • apps/app/package.json (2 hunks)
  • lambdas/cognito-user-migrate/package.json (2 hunks)
  • packages/api/package.json (2 hunks)
  • packages/auth/package.json (1 hunks)
  • packages/db/package.json (2 hunks)
Files skipped from review due to trivial changes (2)
  • apps/app/package.json
  • packages/db/package.json
Files skipped from review as they are similar to previous changes (3)
  • lambdas/cognito-user-migrate/package.json
  • packages/api/package.json
  • packages/auth/package.json

Signed-off-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
Copy link

sonarcloud bot commented Aug 6, 2024

@kodiakhq kodiakhq bot merged commit 87bb363 into dev Aug 6, 2024
23 checks passed
@kodiakhq kodiakhq bot deleted the renovate/all-minor-patch branch August 6, 2024 17:37
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
📦 api 📦 app 📦 auth automerge Enable Kodiak auto-merge 📦 db dependencies Change in project dependencies. 📦 eslint-config kodiak: merge.method = 'squash' Kodiak will squash merge this PR.
Projects
None yet
Development

Successfully merging this pull request may close these issues.

1 participant