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

Merged
merged 5 commits into from
Jun 25, 2024
Merged

Conversation

renovate[bot]
Copy link
Contributor

@renovate renovate bot commented Jun 25, 2024

Mend Renovate

This PR contains the following updates:

Package Type Update Change OpenSSF Age Adoption Passing Confidence
@changesets/cli (source) devDependencies patch 2.27.5 -> 2.27.6 OpenSSF Scorecard age adoption passing confidence
@iconify-json/simple-icons devDependencies patch 1.1.106 -> 1.1.107 age adoption passing confidence
@playwright/test (source) devDependencies minor 1.44.1 -> 1.45.0 OpenSSF Scorecard age adoption passing confidence
@prisma/client (source) dependencies minor 5.15.1 -> 5.16.0 OpenSSF Scorecard age adoption passing confidence
@prisma/instrumentation (source) dependencies minor 5.15.1 -> 5.16.0 OpenSSF Scorecard age adoption passing confidence
@prisma/nextjs-monorepo-workaround-plugin (source) devDependencies minor 5.15.1 -> 5.16.0 OpenSSF Scorecard age adoption passing confidence
@sentry/browser (source) dependencies minor 7.117.0 -> 7.118.0 OpenSSF Scorecard age adoption passing confidence
@sentry/nextjs (source) dependencies minor 7.117.0 -> 7.118.0 OpenSSF Scorecard age adoption passing confidence
@sentry/node (source) dependencies minor 7.117.0 -> 7.118.0 OpenSSF Scorecard age adoption passing confidence
@sentry/opentelemetry (source) dependencies minor 7.117.0 -> 7.118.0 OpenSSF Scorecard age adoption passing confidence
@sentry/profiling-node (source) dependencies minor 7.117.0 -> 7.118.0 OpenSSF Scorecard age adoption passing confidence
@storybook/test-runner devDependencies minor 0.18.2 -> 0.19.0 OpenSSF Scorecard age adoption passing confidence
@swc/core (source) devDependencies patch 1.6.3 -> 1.6.5 OpenSSF Scorecard age adoption passing confidence
@turbo/gen (source) devDependencies patch 2.0.4 -> 2.0.5 OpenSSF Scorecard age adoption passing confidence
@types/node (source) devDependencies patch 20.14.6 -> 20.14.8 OpenSSF Scorecard age adoption passing confidence
@typescript-eslint/eslint-plugin (source) devDependencies minor 7.13.1 -> 7.14.1 OpenSSF Scorecard age adoption passing confidence
@typescript-eslint/parser (source) devDependencies minor 7.13.1 -> 7.14.1 OpenSSF Scorecard age adoption passing confidence
@vercel/postgres-kysely (source) dependencies minor 0.8.0 -> 0.9.0 OpenSSF Scorecard age adoption passing confidence
eslint-plugin-turbo (source) devDependencies patch 2.0.4 -> 2.0.5 OpenSSF Scorecard age adoption passing confidence
knip (source) devDependencies minor 5.22.0 -> 5.23.0 OpenSSF Scorecard age adoption passing confidence
listr2 devDependencies patch 8.2.2 -> 8.2.3 OpenSSF Scorecard age adoption passing confidence
prisma (source) devDependencies minor 5.15.1 -> 5.16.0 OpenSSF Scorecard age adoption passing confidence
sherif devDependencies minor 0.8.4 -> 0.9.0 OpenSSF Scorecard age adoption passing confidence
tsx (source) devDependencies patch 4.15.6 -> 4.15.7 OpenSSF Scorecard age adoption passing confidence
turbo (source) devDependencies patch 2.0.4 -> 2.0.5 OpenSSF Scorecard age adoption passing confidence
typescript (source) devDependencies minor 5.4.5 -> 5.5.2 OpenSSF Scorecard age adoption passing confidence

Release Notes

changesets/changesets (@​changesets/cli)

v2.27.6

Compare Source

Patch Changes
microsoft/playwright (@​playwright/test)

v1.45.0

Compare Source

prisma/prisma (@​prisma/client)

v5.16.0

Compare Source

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

Highlights
Omit model fields globally

With Prisma ORM 5.16.0 we’re more than happy to announce that we’re expanding the omitApi Preview feature to also include the ability to omit fields globally.

When the Preview feature is enabled, you’re able to define fields to omit when instantiating Prisma Client.

const prisma = new PrismaClient({
  omit: {
    user: {
      // make sure that password is never queried.
      password: true,
    },
  },
});

You’re also able to omit fields from multiple models and multiple fields from the same model

const prisma = new PrismaClient({
  omit: {
    user: { 
      // make sure that password and internalId are never queried.
      password: true,
      internalId: true,
    },
    post: {
      secretkey: true,
    },
  },
});

With both local and global omit, you now have the flexibility to completely remove sensitive fields while also tailoring individual queries. If you need the ability to generally omit a field except in a specific query, you can also overwrite a global omit locally

const prisma = new PrismaClient({
  omit: {
    user: { 
      // password is omitted globally.
      password: true,
    },
  },
});

const userWithPassword = await prisma.user.findUnique({
  omit: { password: false }, // omit now false, so password is returned
  where: { id: 1 },
});
Changes to prismaSchemaFolder

In 5.15.0 we released the prismaSchemaFolder Preview feature, allowing you to create multiple Prisma Schema files in a prisma/schema directory. We’ve gotten a lot of great feedback and are really excited with how the community has been using the feature.

To continue improving our multi-file schema support, we have a few breaking changes to the prismaSchemaFolder feature:

  • When using relative paths in Prisma Schema files with the prismaSchemaFolder feature, a path is now relative to the file it is defined in rather than relative to the prisma/schema folder. This means that if you have a generator block in /project/prisma/schema/config/generator.prisma with an output of ./foo the output will be resolved to /project/prisma/schema/config/foo rather than /project/prisma/foo. The path to a SQLite file will be resolved in the same manner.
  • We realized that during migration many people would have prisma/schema as well as prisma/schema.prisma. Our initial implementation looked for a .prisma file first and would ignore the schema folder if it exists. This is now an error.
Changes to fullTextSearch

In order to improve our full-text search implementation we have made a breaking change to the fullTextSearch Preview feature.

Previously, when the feature was enabled we updated the <Model>OrderByWithRelationInput TypeScript type with the <Model>OrderByWithRelationAndSearchRelevanceInput type. However, we have noted that there are no cases where relational ordering is needed but search relevance is not. Thus, we have decided to remove the <Model>OrderByWithRelationAndSearchRelevanceInput naming and only use the <Model>OrderByWithRelationInput naming.

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

Huge thanks to @​key-moon, @​pranayat, @​yubrot, @​skyzh, @​brian-dlee, @​mydea, @​nickcarnival, @​eruditmorina, @​nzakas, @​gutyerrez, @​avallete, @​ceddy4395, @​Kayoshi-dev, @​yehonatanz for helping!

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

v7.118.0

Compare Source

  • fix(v7/bundle): Ensure CDN bundles do not overwrite window.Sentry (#​12579)
storybookjs/test-runner (@​storybook/test-runner)

v0.19.0

Compare Source

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

v1.6.5

Compare Source

v1.6.4

Compare Source

Features
Miscellaneous Tasks
Performance
Refactor
vercel/turbo (@​turbo/gen)

v2.0.5

Compare Source

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

v7.14.1

Compare Source

🩹 Fixes
  • eslint-plugin: [prefer-nullish-coalescing] treat enums and literals as their underlying primitive types

  • eslint-plugin: [prefer-nullish-coalescing] ensure ternary fix does not remove parens

❤️ Thank You
  • Jake Bailey

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

v7.14.0

Compare Source

🚀 Features
  • support TypeScript 5.5
🩹 Fixes
  • eslint-plugin: [no-extraneous-class] handle abstract members

  • eslint-plugin: [prefer-nullish-coalescing] handle intersected primitive types

  • eslint-plugin: [no-invalid-this] support AccessorProperty

❤️ Thank You
  • Brad Zacher
  • cm-ayf
  • Jake Bailey
  • James Zhan
  • Joshua Chen
  • yoshi2no

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

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

v7.14.1

Compare Source

This was a version bump only for parser to align it with other projects, there were no code changes.

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

v7.14.0

Compare Source

🚀 Features
  • support TypeScript 5.5
❤️ Thank You
  • Brad Zacher
  • cm-ayf
  • Jake Bailey
  • James Zhan
  • Joshua Chen
  • yoshi2no

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

vercel/storage (@​vercel/postgres-kysely)

v0.9.0

Compare Source

Patch Changes
vercel/turbo (eslint-plugin-turbo)

v2.0.5: Turborepo v2.0.5

Compare Source

What's Changed

create-turbo
@​turbo/codemod
Examples
Changelog

New Contributors

Full Changelog: vercel/turborepo@v2.0.4...v2.0.5

webpro-nl/knip (knip)

v5.23.0

Compare Source

v5.22.3

Compare Source

  • Try harder looking up strictly-ns-references recursively (#​690) (4cf1337)
  • Also traverse into re-exports and re-exported aliases when looking up strictly-ns-references (resolves #​690) (b98c5b9)
  • Update docs (e906674)
  • Add support for graphql-codegen plugin level config (resolves #​692) (#​693) (71de7f1)

v5.22.2

Compare Source

  • Fix abs extended tsconfig paths if internal (resolves #​689) (d1261c1)
  • Update release-it and use JSON schema (a4111fe)

v5.22.1

Compare Source

listr2/listr2 (listr2)

v8.2.3

Compare Source

listr2 8.2.3 (2024-06-21)

Bug Fixes
  • process-output: trick inquirer and such to not wrap on their own (78b9a90)
QuiiBz/sherif (sherif)

v0.9.0

Compare Source

What's Changed

Full Changelog: QuiiBz/sherif@v0.8.4...v0.9.0

privatenumber/tsx (tsx)

v4.15.7

Compare Source

Bug Fixes

This release is also available on:

vercel/turbo (turbo)

v2.0.5

Compare Source

Microsoft/TypeScript (typescript)

v5.5.2

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 has been generated by Mend Renovate. View repository job log here.

Signed-off-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
@renovate renovate bot requested a review from JoeKarow as a code owner June 25, 2024 16:43
@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 Jun 25, 2024
Copy link

vercel bot commented Jun 25, 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 Jun 25, 2024 5:49pm

Copy link
Contributor

coderabbitai bot commented Jun 25, 2024

Important

Review skipped

Bot user detected.

To trigger a single review, invoke the @coderabbitai review command.

You can disable this status message by setting the reviews.review_status to false in the CodeRabbit configuration file.


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 Configration 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 Jun 25, 2024

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

Package New capabilities Transitives Size Publisher
npm/@prisma/instrumentation@5.16.0 None 0 0 B
npm/@prisma/nextjs-monorepo-workaround-plugin@5.16.0 None 0 0 B
npm/knip@5.23.0 None 0 0 B
npm/prisma@5.16.0 None 0 0 B

View full report↗︎

Copy link
Contributor

github-actions bot commented Jun 25, 2024

📦 Next.js Bundle Analysis for @weareinreach/app

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

Four Pages Changed Size

The following pages changed size from the code in this PR compared to its base branch:

Page Size (compressed) First Load % of Budget (575 KB)
/admin 117.92 KB 529.61 KB 92.11% (🟢 -0.21%)
/admin/quicklink/email 46.91 KB 458.6 KB 79.76% (🟢 -0.17%)
/admin/quicklink/phone 79.38 KB 491.07 KB 85.40% (🟢 -0.21%)
/admin/quicklink/services 50.66 KB 462.35 KB 80.41% (🟢 -0.21%)
Details

Only the gzipped size is provided here based on an expert tip.

First Load is the size of the global bundle plus the bundle for the individual page. If a user were to show up to your website and land on a given page, the first load size represents the amount of javascript that user would need to download. If next/link is used, subsequent page loads would only need to download that page's bundle (the number in the "Size" column), since the global bundle has already been downloaded.

Any third party scripts you have added directly to your app using the <script> tag are not accounted for in this analysis

The "Budget %" column shows what percentage of your performance budget the First Load total takes up. For example, if your budget was 100kb, and a given page's first load size was 10kb, it would be 10% of your budget. You can also see how much this has increased or decreased compared to the base branch of your PR. If this percentage has increased by 20% or more, there will be a red status indicator applied, indicating that special attention should be given to this. If you see "+/- <0.01%" it means that there was a change in bundle size, but it is a trivial enough amount that it can be ignored.

Copy link

relativeci bot commented Jun 25, 2024

#722 Bundle Size — 3.58MiB (+1.29%).

2d0cf1e(current) vs 2447dd7 dev#715(baseline)

Important

Bundle introduced 2 duplicate packages – View changed duplicate packages

Bundle metrics  Change 9 changes Regression 3 regressions Improvement 1 improvement
                 Current
#722
     Baseline
#715
Regression  Initial JS 3.19MiB(+1.46%) 3.14MiB
No change  Initial CSS 9.54KiB 9.54KiB
Change  Cache Invalidation 65.28% 35.88%
Change  Chunks 68(-2.86%) 70
Change  Assets 81(-2.41%) 83
Change  Modules 2035(-0.39%) 2043
Improvement  Duplicate Modules 257(-3.75%) 267
Change  Duplicate Code 7.09%(-4.19%) 7.4%
Regression  Packages 219(+0.92%) 217
Regression  Duplicate Packages 8(+33.33%) 6
Bundle size by type  Change 2 changes Regression 1 regression Improvement 1 improvement
                 Current
#722
     Baseline
#715
Regression  JS 3.46MiB (+1.34%) 3.42MiB
No change  Fonts 94.54KiB 94.54KiB
Improvement  Other 9.57KiB (-0.13%) 9.58KiB
No change  CSS 9.54KiB 9.54KiB
No change  IMG 8.57KiB 8.57KiB

Bundle analysis reportBranch renovate/all-minor-patchProject dashboard

Copy link

alwaysmeticulous bot commented Jun 25, 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 2d0cf1e. This comment will update as new commits are pushed.

Copy link
Contributor Author

renovate bot commented Jun 25, 2024

Edited/Blocked Notification

Renovate will not automatically rebase this PR, because it does not recognize the last commit author and assumes somebody else may have edited the PR.

You can manually request rebase by checking the rebase/retry box above.

⚠️ Warning: custom changes will be lost.

JoeKarow
JoeKarow previously approved these changes Jun 25, 2024
Copy link

sonarcloud bot commented Jun 25, 2024

@kodiakhq kodiakhq bot merged commit 3610f56 into dev Jun 25, 2024
20 of 21 checks passed
@kodiakhq kodiakhq bot deleted the renovate/all-minor-patch branch June 25, 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.

None yet

1 participant