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

chore(ui): update all non-major dependencies #1395

Merged
merged 1 commit into from
Aug 27, 2024
Merged

Conversation

renovate[bot]
Copy link
Contributor

@renovate renovate bot commented Aug 23, 2024

Mend Renovate

This PR contains the following updates:

Package Type Update Change OpenSSF
@iconify/utils (source) devDependencies patch 2.1.31 -> 2.1.32 OpenSSF Scorecard
@prisma/client (source) dependencies minor 5.18.0 -> 5.19.0 OpenSSF Scorecard
@prisma/instrumentation (source) dependencies minor 5.18.0 -> 5.19.0 OpenSSF Scorecard
@prisma/nextjs-monorepo-workaround-plugin (source) devDependencies minor 5.18.0 -> 5.19.0 OpenSSF Scorecard
@sentry/browser (source) dependencies minor 8.26.0 -> 8.27.0 OpenSSF Scorecard
@sentry/nextjs (source) dependencies minor 8.26.0 -> 8.27.0 OpenSSF Scorecard
@sentry/node (source) dependencies minor 8.26.0 -> 8.27.0 OpenSSF Scorecard
@sentry/opentelemetry (source) dependencies minor 8.26.0 -> 8.27.0 OpenSSF Scorecard
@sentry/profiling-node (source) dependencies minor 8.26.0 -> 8.27.0 OpenSSF Scorecard
@swc/core (source) devDependencies patch 1.7.14 -> 1.7.18 OpenSSF Scorecard
@tanstack/react-table (source) peerDependencies patch 8.20.1 -> 8.20.5 OpenSSF Scorecard
@tanstack/react-table (source) devDependencies patch 8.20.1 -> 8.20.5 OpenSSF Scorecard
@tanstack/react-table (source) dependencies patch 8.20.1 -> 8.20.5 OpenSSF Scorecard
@tanstack/react-table-devtools (source) devDependencies patch 8.20.1 -> 8.20.5 OpenSSF Scorecard
@textea/json-viewer dependencies minor 3.4.1 -> 3.5.0 OpenSSF Scorecard
@total-typescript/ts-reset (source) devDependencies minor 0.5.1 -> 0.6.0 OpenSSF Scorecard
@turbo/gen (source) devDependencies minor 2.0.14 -> 2.1.0 OpenSSF Scorecard
@types/eslint (source) devDependencies patch 8.56.11 -> 8.56.12 OpenSSF Scorecard
eslint-import-resolver-typescript devDependencies patch 3.6.1 -> 3.6.3 OpenSSF Scorecard
eslint-plugin-turbo (source) devDependencies minor 2.0.14 -> 2.1.0 OpenSSF Scorecard
knip (source) devDependencies patch 5.27.3 -> 5.27.4 OpenSSF Scorecard
pnpm (source) packageManager minor 9.8.0 -> 9.9.0 OpenSSF Scorecard
prettier-plugin-packagejson devDependencies patch 2.5.1 -> 2.5.2 OpenSSF Scorecard
prisma (source) devDependencies minor 5.18.0 -> 5.19.0 OpenSSF Scorecard
react-hook-form (source) peerDependencies minor 7.52.2 -> 7.53.0 OpenSSF Scorecard
react-hook-form (source) devDependencies minor 7.52.2 -> 7.53.0 OpenSSF Scorecard
react-hook-form (source) dependencies minor 7.52.2 -> 7.53.0 OpenSSF Scorecard
tsx (source) devDependencies minor 4.17.0 -> 4.19.0 OpenSSF Scorecard
turbo (source) devDependencies minor 2.0.14 -> 2.1.0 OpenSSF Scorecard

Release Notes

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

v8.27.0

Compare Source

Important Changes
  • fix(nestjs): Exception filters in main app module are not being executed (#​13278)

    With this release nestjs error monitoring is no longer automatically set up after adding the SentryModule to your
    application, which led to issues in certain scenarios. You will now have to either add the SentryGlobalFilter to
    your main module providers or decorate the catch() method in your existing global exception filters with the newly
    released @WithSentry() decorator. See the docs for
    more details.

Other Changes
  • feat: Add options for passing nonces to feedback integration (#​13347)
  • feat: Add support for SENTRY_SPOTLIGHT env var in Node (#​13325)
  • feat(deps): bump @​prisma/instrumentation from 5.17.0 to 5.18.0 (#​13327)
  • feat(feedback): Improve error message for 403 errors (#​13441)
  • fix(deno): Don't rely on Deno.permissions.querySync (#​13378)
  • fix(replay): Ensure we publish replay CDN bundles (#​13437)

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

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

v1.7.18

Compare Source

TanStack/table (@​tanstack/react-table)

v8.20.5

Compare Source

Version 8.20.5 - 8/24/24, 11:37 PM

Changes

Fix
  • table-core: allow searching of numbers (#​5718) (237b1c4) by GaganSingh7
Docs
  • vue: add information about shallowRef for reactive data (#​5706) (58913b6) by Ola Alsaker

Packages

TexteaInc/json-viewer (@​textea/json-viewer)

v3.5.0

Compare Source

Features
  • add data-key-toggle-* class name for customization (c1e605a)
  • add utils getPathValue (194ac43)
  • hide colon when key is empty (c1ce6ed)
  • passing path to Editor for better customizability (f03ab10)
  • support displayComma for showing comma (2c85bdb)
total-typescript/ts-reset (@​total-typescript/ts-reset)

v0.6.0

Minor Changes
  • 6574858: Added a rule, /map-constructor, to default Map to Map<unknown, unknown> when no arguments are passed to the constructor.

    Before, you'd get any for both key and value types. Now, the result of Map.get is unknown instead of any:

    const userMap = new Map();
    
    const value = userMap.get("matt"); // value: unknown

    This now is part of the recommended rules.

  • 5bf3a15: Added a rule, /promise-catch, to change the catch method to take unknown instead of any as an argument.

    const promise = Promise.reject("error");
    
    // BEFORE
    
    promise.catch((error) => {
      console.error(error); // error is any!
    });
    
    // AFTER
    
    promise.catch((error) => {
      console.error(error); // error is unknown!
    });
Patch Changes
  • 53cee4f: author: @​none23

    Fixed a bug where running .filter on a union of arrays would not work.

vercel/turborepo (@​turbo/gen)

v2.1.0: Turborepo v2.1.0

Compare Source

What's Changed

Docs
@​turbo/codemod
Examples
Changelog

New Contributors

Full Changelog: vercel/turborepo@v2.0.14...v2.1.0

import-js/eslint-import-resolver-typescript (eslint-import-resolver-typescript)

v3.6.3

Compare Source

Patch Changes
webpro-nl/knip (knip)

v5.27.4

Compare Source

pnpm/pnpm (pnpm)

v9.9.0

Compare Source

matzkoh/prettier-plugin-packagejson (prettier-plugin-packagejson)

v2.5.2

Compare Source

Bug Fixes
  • deps: update dependency sort-package-json to v2.10.1 (44fef1d)
react-hook-form/react-hook-form (react-hook-form)

v7.53.0

Compare Source

privatenumber/tsx (tsx)

v4.19.0

Compare Source

v4.18.0

Compare Source

v4.17.1

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 various dependencies across the application, potentially introducing new features and improvements.
  • Bug Fixes

    • Incremented versions of multiple packages, which may include bug fixes and performance enhancements.
  • Documentation

    • Updated type definitions for ESLint, improving type safety and developer experience.
  • Chores

    • Minor version increments for several dependencies to maintain compatibility and improve functionality.

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

vercel bot commented Aug 23, 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 27, 2024 3:39pm

Copy link
Contributor

coderabbitai bot commented Aug 23, 2024

Walkthrough

The changes involve updates to various dependencies across multiple package.json files in the project. Key updates include the @textea/json-viewer package from 3.4.1 to 3.5.0, @iconify/utils from 2.1.31 to 2.1.32, @swc/core from 1.7.14 to 1.7.18, and @tanstack/react-table from 8.20.1 to 8.20.5. Additionally, the @types/eslint package was incremented from 8.56.11 to 8.56.12 in several files.

Changes

File Change Summary
packages/ui/package.json Updated @textea/json-viewer from 3.4.1 to 3.5.0, @iconify/utils from 2.1.31 to 2.1.32, @swc/core from 1.7.14 to 1.7.18, @tanstack/react-table from 8.20.1 to 8.20.5, @tanstack/react-table-devtools from 8.20.1 to 8.20.5, react-hook-form from 7.52.2 to 7.53.0, and tsx from 4.17.0 to 4.19.0
apps/app/package.json Updated @prisma/instrumentation from 5.18.0 to 5.19.0, @sentry packages from 8.26.0 to 8.27.0, @tanstack/react-table from 8.20.1 to 8.20.5, react-hook-form from 7.52.2 to 7.53.0, @total-typescript/ts-reset from 0.5.1 to 0.6.0, and @prisma/nextjs-monorepo-workaround-plugin from 5.18.0 to 5.19.0
package.json Updated @turbo/gen from 2.0.14 to 2.1.0, knip from 5.27.3 to 5.27.4, prettier-plugin-packagejson from 2.5.1 to 2.5.2, and tsx from 4.17.0 to 4.19.0
packages/db/package.json Updated @prisma/client and @prisma/instrumentation from 5.18.0 to 5.19.0, @turbo/gen from 2.0.14 to 2.1.0, @types/eslint from 8.56.11 to 8.56.12, prisma from 5.18.0 to 5.19.0, and tsx from 4.17.0 to 4.19.0
apps/web/package.json Updated @types/eslint from 8.56.11 to 8.56.12
lambdas/cognito-messaging/package.json Updated @types/eslint from 8.56.11 to 8.56.12
lambdas/cognito-user-migrate/package.json Updated @prisma/client and prisma from 5.18.0 to 5.19.0, and @types/eslint from 8.56.11 to 8.56.12
packages/analytics/package.json Updated @types/eslint from 8.56.11 to 8.56.12
packages/api/package.json Updated @sentry/nextjs from 8.26.0 to 8.27.0, @turbo/gen from 2.0.14 to 2.1.0, and @types/eslint from 8.56.11 to 8.56.12
packages/auth/package.json Updated @types/eslint from 8.56.11 to 8.56.12
packages/config/package.json Updated @types/eslint from 8.56.11 to 8.56.12
packages/env/package.json Updated @types/eslint from 8.56.11 to 8.56.12
packages/eslint-config/package.json Updated @types/eslint from 8.56.11 to 8.56.12

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

socket-security bot commented Aug 23, 2024

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

Package New capabilities Transitives Size Publisher
npm/@iconify/utils@2.1.32 Transitive: filesystem +2 466 kB cyberalien
npm/@prisma/client@5.19.0 environment, filesystem, shell 0 8.46 MB prismabot
npm/@prisma/instrumentation@5.19.0 environment 0 35.6 kB prismabot
npm/@sentry/browser@8.27.0 None +7 10 MB benvinegar, billyvg, evanpurkhiser, ...8 more
npm/@sentry/nextjs@8.27.0 Transitive: environment, filesystem, network, shell, unsafe +36 19.1 MB benvinegar, billyvg, evanpurkhiser, ...8 more
npm/@sentry/node@8.27.0 Transitive: environment, unsafe +29 11.2 MB benvinegar, billyvg, evanpurkhiser, ...8 more
npm/@sentry/opentelemetry@8.27.0 None +3 4.38 MB benvinegar, billyvg, evanpurkhiser, ...8 more
npm/@sentry/profiling-node@8.27.0 environment, filesystem, shell +3 6.79 MB sentry-bot
npm/@swc/core@1.7.18 None +2 310 kB kdy1, kwonoj
npm/@tanstack/react-table-devtools@8.20.5 None 0 443 kB tannerlinsley
npm/@tanstack/react-table@8.20.5 None +1 4.05 MB tannerlinsley
npm/@textea/json-viewer@3.5.0 environment +38 25.7 MB pionxzh
npm/@total-typescript/ts-reset@0.6.0 None 0 183 kB mpocock
npm/@turbo/gen@2.1.0 Transitive: environment, eval, filesystem +1 935 kB turbobot
npm/@types/eslint@8.56.12 None +2 250 kB types

🚮 Removed packages: npm/@iconify/utils@2.1.31), npm/@prisma/client@5.18.0), npm/@prisma/nextjs-monorepo-workaround-plugin@5.18.0), npm/@sentry/browser@8.26.0), npm/@sentry/nextjs@8.26.0), npm/@sentry/node@8.26.0), npm/@sentry/opentelemetry@8.26.0), npm/@sentry/profiling-node@8.26.0), npm/@swc/core@1.7.14), npm/@tanstack/react-table-devtools@8.20.1), npm/@tanstack/react-table@8.20.1), npm/@textea/json-viewer@3.4.1), npm/@turbo/gen@2.0.14), npm/@types/eslint@8.56.11)

View full report↗︎

Copy link

relativeci bot commented Aug 23, 2024

#1321 Bundle Size — 3.49MiB (~+0.01%).

e086cad(current) vs 30ebf2b dev#1308(baseline)

Warning

Bundle contains 5 duplicate packages – View duplicate packages

Bundle metrics  Change 2 changes Regression 1 regression
                 Current
#1321
     Baseline
#1308
Regression  Initial JS 3.06MiB(+0.01%) 3.06MiB
No change  Initial CSS 9.54KiB 9.54KiB
Change  Cache Invalidation 51.49% 32.27%
No change  Chunks 67 67
No change  Assets 80 80
No change  Modules 2013 2013
No change  Duplicate Modules 361 361
No change  Duplicate Code 10.03% 10.03%
No change  Packages 159 159
No change  Duplicate Packages 5 5
Bundle size by type  Change 1 change Regression 1 regression
                 Current
#1321
     Baseline
#1308
Regression  JS 3.38MiB (~+0.01%) 3.38MiB
No change  Fonts 94.54KiB 94.54KiB
No change  CSS 9.54KiB 9.54KiB
No change  Other 8.7KiB 8.7KiB
No change  IMG 8.57KiB 8.57KiB

Bundle analysis reportBranch renovate/all-minor-patchProject dashboard


Generated by RelativeCIDocumentationReport issue

Copy link
Contributor

github-actions bot commented Aug 23, 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 aec5a0e and e5373fc.

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

Copy link

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

@renovate renovate bot force-pushed the renovate/all-minor-patch branch from e5373fc to 7c9f59d Compare August 24, 2024 05:24
@renovate renovate bot changed the title chore(ui): update dependency @iconify/utils to v2.1.32 chore(ui): update all non-major dependencies Aug 24, 2024
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 e5373fc and 7c9f59d.

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)
  • package.json (1 hunks)
  • packages/ui/package.json (3 hunks)
Files skipped from review due to trivial changes (1)
  • package.json
Files skipped from review as they are similar to previous changes (1)
  • packages/ui/package.json
Additional comments not posted (1)
apps/app/package.json (1)

101-101: Verify the impact of the react-hook-form version update.

The update from 7.52.2 to 7.53.0 is a minor version change. Ensure that this update doesn't introduce breaking changes or require modifications in the application code.

Run the following script to check for any breaking changes or required updates in the application code:

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 7c9f59d and 06e049b.

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)
  • package.json (1 hunks)
  • packages/ui/package.json (4 hunks)
Files skipped from review due to trivial changes (1)
  • packages/ui/package.json
Files skipped from review as they are similar to previous changes (2)
  • apps/app/package.json
  • 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 06e049b and 013e51b.

Files ignored due to path filters (1)
  • pnpm-lock.yaml is excluded by !**/pnpm-lock.yaml
Files selected for processing (4)
  • apps/app/package.json (2 hunks)
  • package.json (1 hunks)
  • packages/db/package.json (1 hunks)
  • packages/ui/package.json (5 hunks)
Files skipped from review due to trivial changes (1)
  • packages/db/package.json
Files skipped from review as they are similar to previous changes (3)
  • apps/app/package.json
  • package.json
  • packages/ui/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 013e51b and d460435.

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

Copy link

socket-security bot commented Aug 25, 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 d460435 and c1ef2e9.

Files ignored due to path filters (1)
  • pnpm-lock.yaml is excluded by !**/pnpm-lock.yaml
Files selected for processing (4)
  • apps/app/package.json (3 hunks)
  • package.json (1 hunks)
  • packages/db/package.json (1 hunks)
  • packages/ui/package.json (6 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 (2)
  • package.json
  • packages/ui/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 c1ef2e9 and 7b1e722.

Files ignored due to path filters (1)
  • pnpm-lock.yaml is excluded by !**/pnpm-lock.yaml
Files selected for processing (14)
  • apps/app/package.json (3 hunks)
  • apps/web/package.json (1 hunks)
  • lambdas/cognito-messaging/package.json (1 hunks)
  • lambdas/cognito-user-migrate/package.json (1 hunks)
  • package.json (1 hunks)
  • packages/analytics/package.json (1 hunks)
  • packages/api/package.json (1 hunks)
  • packages/auth/package.json (1 hunks)
  • packages/config/package.json (1 hunks)
  • packages/db/package.json (2 hunks)
  • packages/env/package.json (1 hunks)
  • packages/eslint-config/package.json (1 hunks)
  • packages/ui/package.json (6 hunks)
  • packages/util/package.json (1 hunks)
Files skipped from review due to trivial changes (10)
  • apps/web/package.json
  • lambdas/cognito-messaging/package.json
  • lambdas/cognito-user-migrate/package.json
  • packages/analytics/package.json
  • packages/api/package.json
  • packages/auth/package.json
  • packages/config/package.json
  • packages/env/package.json
  • packages/eslint-config/package.json
  • packages/util/package.json
Files skipped from review as they are similar to previous changes (4)
  • apps/app/package.json
  • package.json
  • packages/db/package.json
  • packages/ui/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 7b1e722 and 4a2406e.

Files ignored due to path filters (1)
  • pnpm-lock.yaml is excluded by !**/pnpm-lock.yaml
Files selected for processing (14)
  • apps/app/package.json (3 hunks)
  • apps/web/package.json (1 hunks)
  • lambdas/cognito-messaging/package.json (1 hunks)
  • lambdas/cognito-user-migrate/package.json (1 hunks)
  • package.json (1 hunks)
  • packages/analytics/package.json (1 hunks)
  • packages/api/package.json (1 hunks)
  • packages/auth/package.json (1 hunks)
  • packages/config/package.json (1 hunks)
  • packages/db/package.json (2 hunks)
  • packages/env/package.json (1 hunks)
  • packages/eslint-config/package.json (2 hunks)
  • packages/ui/package.json (6 hunks)
  • packages/util/package.json (1 hunks)
Files skipped from review due to trivial changes (8)
  • apps/web/package.json
  • lambdas/cognito-messaging/package.json
  • package.json
  • packages/api/package.json
  • packages/auth/package.json
  • packages/config/package.json
  • packages/eslint-config/package.json
  • packages/util/package.json
Files skipped from review as they are similar to previous changes (6)
  • apps/app/package.json
  • lambdas/cognito-user-migrate/package.json
  • packages/analytics/package.json
  • packages/db/package.json
  • packages/env/package.json
  • packages/ui/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 4a2406e and cefb73f.

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

29-29: Verify compatibility of the new version.

The @textea/json-viewer package version has been updated from 3.4.1 to 3.5.0. Ensure that the new version does not introduce breaking changes.


81-81: Verify compatibility of the new version.

The @iconify/utils package version has been updated from 2.1.31 to 2.1.32. Ensure that the new version does not introduce breaking changes.


111-111: Verify compatibility of the new version.

The @swc/core package version has been updated from 1.7.14 to 1.7.18. Ensure that the new version does not introduce breaking changes.


115-115: Verify compatibility of the new version.

The @tanstack/react-table package version has been updated from 8.20.1 to 8.20.5. Ensure that the new version does not introduce breaking changes.


116-116: Verify compatibility of the new version.

The @tanstack/react-table-devtools package version has been updated from 8.20.1 to 8.20.5. Ensure that the new version does not introduce breaking changes.


121-121: Verify compatibility of the new version.

The @types/eslint package version has been updated from 8.56.11 to 8.56.12. Ensure that the new version does not introduce breaking changes.


158-158: Verify compatibility of the new version.

The react-hook-form package version has been updated from 7.52.2 to 7.53.0. Ensure that the new version does not introduce breaking changes.


171-171: Verify compatibility of the new version.

The tsx package version has been updated from 4.17.0 to 4.18.0. Ensure that the new version does not introduce breaking changes.

@renovate renovate bot force-pushed the renovate/all-minor-patch branch from cefb73f to 44dc2c0 Compare August 27, 2024 10:11
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 cefb73f and 44dc2c0.

Files ignored due to path filters (1)
  • pnpm-lock.yaml is excluded by !**/pnpm-lock.yaml
Files selected for processing (14)
  • apps/app/package.json (3 hunks)
  • apps/web/package.json (1 hunks)
  • lambdas/cognito-messaging/package.json (1 hunks)
  • lambdas/cognito-user-migrate/package.json (1 hunks)
  • package.json (1 hunks)
  • packages/analytics/package.json (1 hunks)
  • packages/api/package.json (1 hunks)
  • packages/auth/package.json (1 hunks)
  • packages/config/package.json (1 hunks)
  • packages/db/package.json (2 hunks)
  • packages/env/package.json (1 hunks)
  • packages/eslint-config/package.json (2 hunks)
  • packages/ui/package.json (7 hunks)
  • packages/util/package.json (1 hunks)
Files skipped from review due to trivial changes (8)
  • apps/web/package.json
  • lambdas/cognito-messaging/package.json
  • lambdas/cognito-user-migrate/package.json
  • packages/auth/package.json
  • packages/config/package.json
  • packages/env/package.json
  • packages/eslint-config/package.json
  • packages/util/package.json
Files skipped from review as they are similar to previous changes (6)
  • apps/app/package.json
  • package.json
  • packages/analytics/package.json
  • packages/api/package.json
  • packages/db/package.json
  • packages/ui/package.json

Signed-off-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
@renovate renovate bot force-pushed the renovate/all-minor-patch branch from 44dc2c0 to e086cad Compare August 27, 2024 15:33
Copy link

sonarcloud bot commented Aug 27, 2024

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 44dc2c0 and e086cad.

Files ignored due to path filters (1)
  • pnpm-lock.yaml is excluded by !**/pnpm-lock.yaml
Files selected for processing (14)
  • apps/app/package.json (2 hunks)
  • apps/web/package.json (1 hunks)
  • lambdas/cognito-messaging/package.json (1 hunks)
  • lambdas/cognito-user-migrate/package.json (1 hunks)
  • package.json (2 hunks)
  • packages/analytics/package.json (1 hunks)
  • packages/api/package.json (2 hunks)
  • packages/auth/package.json (1 hunks)
  • packages/config/package.json (1 hunks)
  • packages/db/package.json (4 hunks)
  • packages/env/package.json (1 hunks)
  • packages/eslint-config/package.json (2 hunks)
  • packages/ui/package.json (7 hunks)
  • packages/util/package.json (1 hunks)
Files skipped from review due to trivial changes (6)
  • apps/web/package.json
  • lambdas/cognito-messaging/package.json
  • packages/auth/package.json
  • packages/config/package.json
  • packages/env/package.json
  • packages/eslint-config/package.json
Files skipped from review as they are similar to previous changes (7)
  • lambdas/cognito-user-migrate/package.json
  • package.json
  • packages/analytics/package.json
  • packages/api/package.json
  • packages/db/package.json
  • packages/ui/package.json
  • packages/util/package.json
Additional comments not posted (12)
apps/app/package.json (12)

49-49: LGTM!

The update from @prisma/instrumentation version 5.18.0 to 5.19.0 is approved.


50-50: LGTM!

The update from @sentry/browser version 8.26.0 to 8.27.0 is approved.


51-51: LGTM!

The update from @sentry/nextjs version 8.26.0 to 8.27.0 is approved.


52-52: LGTM!

The update from @sentry/node version 8.26.0 to 8.27.0 is approved.


53-53: LGTM!

The update from @sentry/opentelemetry version 8.26.0 to 8.27.0 is approved.


54-54: LGTM!

The update from @sentry/profiling-node version 8.26.0 to 8.27.0 is approved.


56-56: LGTM!

The update from @tanstack/react-table version 8.20.1 to 8.20.5 is approved.


101-101: LGTM!

The update from react-hook-form version 7.52.2 to 7.53.0 is approved.


109-109: LGTM!

The update from @prisma/nextjs-monorepo-workaround-plugin version 5.18.0 to 5.19.0 is approved.


112-112: LGTM!

The update from @tanstack/react-table-devtools version 8.20.1 to 8.20.5 is approved.


113-113: LGTM!

The update from @total-typescript/ts-reset version 0.5.1 to 0.6.0 is approved.


114-114: LGTM!

The update from @types/eslint version 8.56.11 to 8.56.12 is approved.

@kodiakhq kodiakhq bot merged commit e328a5e into dev Aug 27, 2024
26 of 27 checks passed
@kodiakhq kodiakhq bot deleted the renovate/all-minor-patch branch August 27, 2024 17:50
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.

1 participant