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

Merged
merged 1 commit into from
Aug 8, 2024

Conversation

renovate[bot]
Copy link
Contributor

@renovate renovate bot commented Aug 1, 2024

Mend Renovate

This PR contains the following updates:

Package Type Update Change OpenSSF
@prisma/adapter-neon (source) dependencies minor 5.17.0 -> 5.18.0 OpenSSF Scorecard
@prisma/client (source) dependencies minor 5.17.0 -> 5.18.0 OpenSSF Scorecard
@relative-ci/agent (source) devDependencies patch 4.2.9 -> 4.2.10 OpenSSF Scorecard
@storybook/addon-a11y (source) devDependencies patch 8.2.6 -> 8.2.8 OpenSSF Scorecard
@storybook/addon-essentials (source) devDependencies patch 8.2.6 -> 8.2.8 OpenSSF Scorecard
@storybook/addon-interactions (source) devDependencies patch 8.2.6 -> 8.2.8 OpenSSF Scorecard
@storybook/addon-links (source) devDependencies patch 8.2.6 -> 8.2.8 OpenSSF Scorecard
@storybook/addon-viewport (source) devDependencies patch 8.2.6 -> 8.2.8 OpenSSF Scorecard
@storybook/blocks (source) devDependencies patch 8.2.6 -> 8.2.8 OpenSSF Scorecard
@storybook/nextjs (source) devDependencies patch 8.2.6 -> 8.2.8 OpenSSF Scorecard
@storybook/react (source) devDependencies patch 8.2.6 -> 8.2.8 OpenSSF Scorecard
@storybook/test (source) dependencies patch 8.2.6 -> 8.2.8 OpenSSF Scorecard
@types/node (source) devDependencies patch 20.14.13 -> 20.14.14 OpenSSF Scorecard
chromatic (source) devDependencies minor 11.6.0 -> 11.7.0 OpenSSF Scorecard
knip (source) devDependencies patch 5.27.0 -> 5.27.2 OpenSSF Scorecard
lint-staged devDependencies patch 15.2.7 -> 15.2.8 OpenSSF Scorecard
luxon devDependencies minor 3.4.4 -> 3.5.0 OpenSSF Scorecard
pnpm (source) packageManager minor 9.6.0 -> 9.7.0 OpenSSF Scorecard
prisma (source) devDependencies minor 5.17.0 -> 5.18.0 OpenSSF Scorecard
storybook (source) devDependencies patch 8.2.6 -> 8.2.8 OpenSSF Scorecard
tsx (source) devDependencies minor 4.16.3 -> 4.17.0 OpenSSF Scorecard
type-fest devDependencies minor 4.23.0 -> 4.24.0 OpenSSF Scorecard

Release Notes

prisma/prisma (@​prisma/adapter-neon)

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

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

v8.2.8

Compare Source

v8.2.7

Compare Source

chromaui/chromatic-cli (chromatic)

v11.7.0

Compare Source

🚀 Enhancement
Authors: 1

webpro-nl/knip (knip)

v5.27.2

Compare Source

v5.27.1

Compare Source

  • Use pathsBasePath if available to make compilerOptions.paths absolute (fixes #​748) (6c866d2)
  • Format docs (d0d5f97)
  • Increase enhanced-resolve cache duration (c7fa02e)
  • Add test coverage for tsconfig.json w/ module:commonjs (3d5a536)
  • Add non-standard CJS require calls in TS files as entry files (as require.resolve) (f8f0d66)
  • Update docs (b2ea3a9)
  • Fix regression issue template (f6066d6)
  • Aid ts issues (9eff1bb)
  • Enable more tests in Bun (953d6f6)
  • Update lockfile (4d8b35b)
  • Replace resolve with enhanced-resolve (39e0f22)
  • Temp exclude unlisted in typescript integration test (76752c8)
  • Inline playwright types (ea099cc)
  • Add Vue example to compilers in docs (#​733) (949ddd8)
  • Minor refactor (8c21df5)
  • Fix omitted expressions in Promise.all imports (resolves #​725) (858c0b7)
  • Clean up tryResolve etc. (e20a9e9)
  • fix: pnpm workspace fixes (#​738) (d5003d1)
  • Update .gitattributes to exclude binary files (b9b8f4d)
  • Revert "CRLF will be replaced by LF the next time Git touches it" (0fdb4c9)
  • Upgrade Astro (ccb7523)
  • Use latest tsx again (2b7d053)
  • Add bun create @​knip/config to installation instructions (fb19915)
lint-staged/lint-staged (lint-staged)

v15.2.8

Compare Source

Patch Changes
  • f0480f0 Thanks @​iiroj! - In the previous version the native git rev-parse --show-toplevel command was taken into use for resolving the current git repo root. This version switched the --show-toplevel flag with --show-cdup, because on Git installed via MSYS2 the former was returning absolute paths that do not work with Node.js child_process. The new flag returns a path relative to the working directory, avoiding the issue.

    The GitHub Actions workflow has been updated to install Git via MSYS2, to ensure better future compatibility; using the default Git binary in the GitHub Actions runner was working correctly even with MSYS2.

moment/luxon (luxon)

v3.5.0

Compare Source

  • Various performance improvements
  • throwOnInvalid causes the constructor to throw if the year is invalid
pnpm/pnpm (pnpm)

v9.7.0: pnpm 9.7

Compare Source

Minor Changes

  • Added pnpm version management. If the manage-package-manager-versions setting is set to true, pnpm will switch to the version specified in the packageManager field of package.json #​8363. This is the same field used by Corepack. Example:

    {
      "packageManager": "pnpm@9.3.0"
    }
  • Added the ability to apply patch to all versions #​8337.

    If the key of pnpm.patchedDependencies is a package name without a version (e.g. pkg), pnpm will attempt to apply the patch to all versions of the package. Failures will be skipped. If there's only one version of pkg installed, pnpm patch pkg and subsequent pnpm patch-commit $edit_dir will create an entry named pkg in pnpm.patchedDependencies. And pnpm will attempt to apply this patch to other versions of pkg in the future.

  • Change the default edit dir location when running pnpm patch from a temporary directory to node_modules/.pnpm_patches/pkg[@​version] to allow the code editor to open the edit dir in the same file tree as the main project #​8379.

  • Substitute environment variables in config keys #​6679.

Patch Changes

  • pnpm install should run node-gyp rebuild if the project has a binding.gyp file even if the project doesn't have an install script #​8293.
  • Print warnings to stderr #​8342.
  • Peer dependencies of optional peer dependencies should be automatically installed #​8323.

Platinum Sponsors

Gold Sponsors

Our Silver Sponsors

privatenumber/tsx (tsx)

v4.17.0

Compare Source

v4.16.5

Compare Source

Bug Fixes
  • resolver: directory import nested ".." (2fada74)

This release is also available on:

v4.16.4

Compare Source

Bug Fixes

This release is also available on:

sindresorhus/type-fest (type-fest)

v4.24.0

Compare Source


Configuration

📅 Schedule: Branch creation - "before 4am on Monday,before 4am on Thursday" (UTC), 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

  • Chores
    • Updated several dependencies and development dependencies in the project for improved stability and compatibility, including Storybook-related packages and others like @types/node, chromatic, and lint-staged.

@renovate renovate bot requested a review from JoeKarow as a code owner August 1, 2024 00:44
@renovate renovate bot added automerge Enable Kodiak auto-merge dependencies Change in project dependencies. labels Aug 1, 2024
Copy link

vercel bot commented Aug 1, 2024

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

Name Status Preview Comments Updated (UTC)
transmascfutures ✅ Ready (Inspect) Visit Preview 💬 Add feedback Aug 8, 2024 3:15pm

Copy link

coderabbitai bot commented Aug 1, 2024

Walkthrough

The updates to the package.json file involve incrementing version numbers for several dependencies, particularly Storybook-related packages, from 8.2.6 to 8.2.8. These routine maintenance changes enhance stability and compatibility among libraries while preserving the overall functionality of the project.

Changes

File Change Summary
package.json Updated multiple dependencies including Storybook packages from 8.2.6 to 8.2.8.
- @relative-ci/agent: 4.2.9 to 4.2.10
- @types/node: 20.14.13 to 20.14.14
- chromatic: 11.6.0 to 11.7.0
- lint-staged: 15.2.7 to 15.2.8
- luxon: 3.4.4 to 3.5.0
- tsx: 4.16.3 to 4.16.5

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 1, 2024

#274 Bundle Size — 18.74MiB (0%).

1d11777(current) vs b8598cc dev#255(baseline)

Bundle metrics  Change 1 change
                 Current
#274
     Baseline
#255
No change  Initial JS 1007.92KiB 1007.92KiB
No change  Initial CSS 6.61KiB 6.61KiB
Change  Cache Invalidation 0.01% 2.32%
No change  Chunks 20 20
No change  Assets 80 80
No change  Modules 790 790
No change  Duplicate Modules 103 103
No change  Duplicate Code 5.66% 5.66%
No change  Packages 81 81
No change  Duplicate Packages 0 0
Bundle size by type  no changes
                 Current
#274
     Baseline
#255
No change  IMG 17.47MiB 17.47MiB
No change  JS 1.08MiB 1.08MiB
No change  Fonts 189.64KiB 189.64KiB
No change  CSS 6.61KiB 6.61KiB
No change  Other 4.07KiB 4.07KiB

Bundle analysis reportBranch renovate/all-minor-patchProject dashboard


Generated by RelativeCIDocumentationReport issue

Copy link

socket-security bot commented Aug 3, 2024

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

Package New capabilities Transitives Size Publisher

View full report↗︎

Copy link

@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 b8598cc and 845a7c8.

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

@renovate renovate bot force-pushed the renovate/all-minor-patch branch from 845a7c8 to 9ddbb6f Compare August 6, 2024 17:51
@renovate renovate bot changed the title chore(deps): update all non-major dependencies fix(deps): update all non-major dependencies Aug 6, 2024
@renovate renovate bot force-pushed the renovate/all-minor-patch branch from 9ddbb6f to 700d424 Compare August 7, 2024 02:09
Copy link

@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 845a7c8 and 700d424.

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

Copy link

@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 700d424 and bd28066.

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

Copy link

@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 bd28066 and 722110e.

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

Copy link

socket-security bot commented Aug 7, 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

@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 722110e and 8e52549.

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

@renovate renovate bot force-pushed the renovate/all-minor-patch branch from 8e52549 to 5473b8f Compare August 8, 2024 11:04
Copy link

@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 8e52549 and 5473b8f.

Files ignored due to path filters (1)
  • pnpm-lock.yaml is excluded by !**/pnpm-lock.yaml
Files selected for processing (1)
  • package.json (3 hunks)
Files skipped from review due to trivial changes (1)
  • 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 5473b8f to 1d11777 Compare August 8, 2024 15:13
Copy link

sonarcloud bot commented Aug 8, 2024

Copy link

@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 5473b8f and 1d11777.

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

@kodiakhq kodiakhq bot merged commit fc6bb55 into dev Aug 8, 2024
20 of 21 checks passed
@kodiakhq kodiakhq bot deleted the renovate/all-minor-patch branch August 8, 2024 17:47
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
automerge Enable Kodiak auto-merge dependencies Change in project dependencies.
Development

Successfully merging this pull request may close these issues.

1 participant