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 #429

Merged
merged 1 commit into from
Jun 6, 2024

Conversation

renovate[bot]
Copy link
Contributor

@renovate renovate bot commented May 27, 2024

Mend Renovate

This PR contains the following updates:

Package Type Update Change OpenSSF
@prisma/adapter-neon (source) dependencies minor 5.14.0 -> 5.15.0 OpenSSF Scorecard
@prisma/client (source) dependencies minor 5.14.0 -> 5.15.0 OpenSSF Scorecard
@relative-ci/agent (source) devDependencies patch 4.2.7 -> 4.2.8 OpenSSF Scorecard
@storybook/addon-a11y (source) devDependencies patch 8.1.3 -> 8.1.6 OpenSSF Scorecard
@storybook/addon-essentials (source) devDependencies patch 8.1.3 -> 8.1.6 OpenSSF Scorecard
@storybook/addon-interactions (source) devDependencies patch 8.1.3 -> 8.1.6 OpenSSF Scorecard
@storybook/addon-links (source) devDependencies patch 8.1.3 -> 8.1.6 OpenSSF Scorecard
@storybook/addon-viewport (source) devDependencies patch 8.1.3 -> 8.1.6 OpenSSF Scorecard
@storybook/blocks (source) devDependencies patch 8.1.3 -> 8.1.6 OpenSSF Scorecard
@storybook/nextjs (source) devDependencies patch 8.1.3 -> 8.1.6 OpenSSF Scorecard
@storybook/react (source) devDependencies patch 8.1.3 -> 8.1.6 OpenSSF Scorecard
@storybook/test (source) dependencies patch 8.1.3 -> 8.1.6 OpenSSF Scorecard
@types/node (source) devDependencies minor 20.12.12 -> 20.14.2 OpenSSF Scorecard
@types/react (source) devDependencies patch 18.3.2 -> 18.3.3 OpenSSF Scorecard
@typescript-eslint/eslint-plugin (source) devDependencies minor 7.10.0 -> 7.12.0 OpenSSF Scorecard
@typescript-eslint/parser (source) devDependencies minor 7.10.0 -> 7.12.0 OpenSSF Scorecard
@vercel/analytics (source) dependencies patch 1.3.0 -> 1.3.1 OpenSSF Scorecard
@vercel/speed-insights (source) dependencies patch 1.0.10 -> 1.0.11 OpenSSF Scorecard
chromatic (source) devDependencies minor 11.4.0 -> 11.5.3 OpenSSF Scorecard
eslint-plugin-react devDependencies patch 7.34.1 -> 7.34.2 OpenSSF Scorecard
eslint-plugin-turbo (source) devDependencies patch 1.13.3 -> 1.13.4 OpenSSF Scorecard
knip (source) devDependencies minor 5.16.0 -> 5.17.4 OpenSSF Scorecard
lint-staged devDependencies patch 15.2.4 -> 15.2.5 OpenSSF Scorecard
nextjs-routes dependencies minor 2.1.0 -> 2.2.0 OpenSSF Scorecard
node (source) minor 20.13.1 -> 20.14.0 OpenSSF Scorecard
pnpm (source) packageManager minor 9.1.2 -> 9.2.0 OpenSSF Scorecard
prettier (source) devDependencies minor 3.2.5 -> 3.3.1 OpenSSF Scorecard
prisma (source) devDependencies minor 5.14.0 -> 5.15.0 OpenSSF Scorecard
storybook (source) devDependencies patch 8.1.3 -> 8.1.6 OpenSSF Scorecard
tsx devDependencies minor 4.11.0 -> 4.12.0 OpenSSF Scorecard
turbo (source) devDependencies patch 1.13.3 -> 1.13.4 OpenSSF Scorecard
type-fest devDependencies minor 4.18.2 -> 4.19.0 OpenSSF Scorecard

Release Notes

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

v5.15.0

Compare Source

Today, we are excited to share the 5.15.0 stable release 🎉

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

Highlights

Multi-File Prisma Schema support

Prisma ORM 5.15.0 features support for multi-file Prisma Schema in Preview.

This closes a long standing issue and does so in a clean and easy to migrate way.

To get started:

  1. Enable the prismaSchemaFolder Preview feature by including it in the previewFeatures field of your generator.
    datasource db {
      provider = "postgresql"
      url      = env("DATABASE_URL")
    }
    
    generator client {
      provider        = "prisma-client-js"
      previewFeatures = ["prismaSchemaFolder"]
    }
    
  2. Create a schema subdirectory under your prisma directory.
  3. Move your schema.prisma into this directory.

You are now set up with a multi-file Prisma Schema! Add as many or as few .prisma files to the new prisma/schema directory.

When running commands where a Prisma Schema file is expected to be provided, you can now define a Prisma Schema directory. This includes Prisma CLI commands that use the --schema option as well as defining schema via package.json

Our tooling has also been updated to handle multiple Prisma Schema files. This includes our Visual Studio Code extension and tools like database introspection, which will deposit new models in a introspected.prisma file. Existing models will be updated in the file they are found.

To learn more, please refer to our official documentation and announcement blog post. If you try out prismaSchemaFolder, please let us know!

Interesting Bug Fixes
Fix for PostgreSQL prepared statement caching for raw queries

This release fixes a nasty bug with the caching of prepared statements in raw Prisma Client queries that affected PostgreSQL when you ran the same SQL statement with differently typed paramters. This should not fail any more.

Fix for SQL Server introspection of (deprecated) CREATE DEFAULT

Our Introspection logic crashed on encountering certain multi-line CREATE DEFAULT, a deprecated way to define defaults in SQL Server. As many SQL Server users are working with established databases, this happened frequently enough that we now explicitly ignore these defaults instead of crashing.

Fix for Cloudflare D1’s lower parameter limit

Cloudflare’s D1 has a lower parameter limit than local SQLite, which caused bigger queries to fail. We adapted that limit to the D1 default for @prisma/adapter-d1, which will avoid such failures.

Fix for Cloudflare D1’s different PRAGMA support

Our generated migration SQL for SQLite did not always work for Cloudflare D1, because of differences in the supported pragmas. We adapted the SQL to work in both local SQLite and Cloudflare D1.

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

Huge thanks to @​pranayat, @​yubrot, and @​skyzh for helping!

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

v4.2.8

Compare Source

What's Changed

Full Changelog: relative-ci/agent@v4.2.7...v4.2.8

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

v8.1.6

Compare Source

v8.1.5

Compare Source

v8.1.4

Compare Source

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

v7.12.0

Compare Source

🚀 Features
  • eslint-plugin: [no-useless-template-literals] rename to no-useless-template-expression (deprecate no-useless-template-literals)

  • rule-tester: check for parsing errors in suggestion fixes

  • rule-tester: port checkDuplicateTestCases from ESLint

  • eslint-plugin: [no-floating-promises] add option 'allowForKnownSafePromises'

🩹 Fixes
  • no-useless-template-expression -> no-unnecessary-template-expression

  • eslint-plugin: [no-unnecessary-type-assertion] combine template literal check with const variable check

  • eslint-plugin: [dot-notation] fix false positive when accessing private/protected property with optional chaining

  • eslint-plugin: [explicit-member-accessibility] refine report locations

  • eslint-plugin: [no-unnecessary-type-assertion] declares are always defined, so always check declares

  • eslint-plugin: [prefer-literal-enum-member] allow using member it self on allowBitwiseExpressions

  • eslint-plugin: [return-await] clean up in-try-catch detection and make autofixes safe

  • eslint-plugin: [member-ordering] also TSMethodSignature can be get/set

❤️ Thank You
  • Abraham Guo
  • Han Yeong-woo
  • Joshua Chen
  • Kim Sang Du
  • Kirk Waiblinger
  • YeonJuan

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

v7.11.0

Compare Source

🚀 Features
  • eslint-plugin: deprecate prefer-ts-expect-error in favor of ban-ts-comment
🩹 Fixes
  • eslint-plugin: [consistent-type-assertions] prevent syntax errors on arrow functions
❤️ Thank You
  • Abraham Guo
  • auvred
  • Dom Armstrong
  • Kirk Waiblinger

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

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

v7.12.0

Compare Source

🩹 Fixes
  • types: correct typing ParserOptions
❤️ Thank You
  • Abraham Guo
  • Han Yeong-woo
  • Joshua Chen
  • Kim Sang Du
  • Kirk Waiblinger
  • YeonJuan

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

v7.11.0

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.

vercel/analytics (@​vercel/analytics)

v1.3.1

Compare Source

What's Changed

Full Changelog: vercel/analytics@1.3.0...1.3.1

vercel/speed-insights (@​vercel/speed-insights)

v1.0.11

Compare Source

What's Changed

Full Changelog: vercel/speed-insights@1.0.10...1.0.11

chromaui/chromatic-cli (chromatic)

v11.5.3

Compare Source

🐛 Bug Fix
Authors: 1

v11.5.2

Compare Source

🐛 Bug Fix
Authors: 1

v11.5.1

Compare Source

🐛 Bug Fix
Authors: 2

v11.5.0

Compare Source

🚀 Enhancement
🐛 Bug Fix
Authors: 2

v11.4.1

Compare Source

🐛 Bug Fix
Authors: 1

jsx-eslint/eslint-plugin-react (eslint-plugin-react)

v7.34.2

Compare Source

Fixed
Changed
vercel/turbo (eslint-plugin-turbo)

v1.13.4: Turborepo v1.13.4

Compare Source

What's Changed

Docs
turbo-ignore
@​turbo/repository
Examples
Changelog

New Contributors

Full Changelog: vercel/turbo@v1.13.3...v1.13.4

webpro-nl/knip (knip)

v5.17.4

Compare Source

v5.17.3

Compare Source

  • Add ‘kill’ and ‘ssh’ as globally available binaries (#​660) (5e576a2)
  • Remove version selector (9ad1d46)
  • Timerify (de)serialize functions (0e04f1e)
  • Update docs (935a706)

v5.17.2

Compare Source

v5.17.1

Compare Source

v5.17.0

Compare Source

  • Fix --watch after refactors (db2a261)
  • Improve getHasStrictlyNsReferences and traverse into re-exports (9d75e0d)
  • Restore imports in Footer.astro (c836517)
okonet/lint-staged (lint-staged)

v15.2.5

Compare Source

Patch Changes
  • #​1424 31a1f95 Thanks @​iiroj! - Allow approximately equivalent versions of direct dependencies by using the "~" character in the version ranges. This means a more recent patch version of a dependency is allowed if available.

  • #​1423 91abea0 Thanks @​iiroj! - Improve error logging when failing to read or parse a configuration file

  • #​1424 ee43f15 Thanks @​iiroj! - Upgrade micromatch@4.0.7

tatethurston/nextjs-routes (nextjs-routes)

v2.2.0

Compare Source

  • Add trailingSlash option to route. See #​168
  • Fix the generated optional catch all route type. See #​183
  • Sort the generated route types lexicographically.
nodejs/node (node)

v20.14.0

Compare Source

pnpm/pnpm (pnpm)

v9.2.0

Compare Source

v9.1.4

Compare Source

v9.1.3

Compare Source

prettier/prettier (prettier)

v3.3.1

Compare Source

diff

Preserve empty lines in front matter (#​16347 by @​fisker)
<!-- Input -->
---
foo:
  - bar1

  - bar2

  - bar3
---
Markdown

<!-- Prettier 3.3.0 -->

---
foo:
  - bar1
  - bar2
  - bar3
---

Markdown

<!-- Prettier 3.3.1 -->
---
foo:
  - bar1

  - bar2

  - bar3
---

Markdown
Preserve explicit language in front matter (#​16348 by @​fisker)
<!-- Input -->
---yaml
title: Hello
slug: home
---

<!-- Prettier 3.3.0 -->
---
title: Hello
slug: home
---

<!-- Prettier 3.3.1 -->
---yaml
title: Hello
slug: home
---
Avoid line breaks in import attributes (#​16349 by @​fisker)
// Input
import something from "./some-very-very-very-very-very-very-very-very-long-path.json" with { type: "json" };

// Prettier 3.3.0
import something from "./some-very-very-very-very-very-very-very-very-long-path.json" with { type:
  "json" };

// Prettier 3.3.1
import something from "./some-very-very-very-very-very-very-very-very-long-path.json" with { type: "json" };

v3.3.0

Compare Source

diff

🔗 Release Notes

privatenumber/tsx (tsx)

v4.12.0

Compare Source

v4.11.2

Compare Source

v4.11.1

Compare Source

vercel/turbo (turbo)

v1.13.4

Compare Source

sindresorhus/type-fest (type-fest)

v4.19.0

Compare Source

v4.18.3

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

Copy link

vercel bot commented May 27, 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 Jun 6, 2024 10:52am

@renovate renovate bot requested a review from JoeKarow as a code owner May 27, 2024 01:24
@renovate renovate bot added automerge Enable Kodiak auto-merge dependencies Change in project dependencies. labels May 27, 2024
Copy link

deepsource-io bot commented May 27, 2024

Here's the code health analysis summary for commits cf1d0fe..88a9a03. View details on DeepSource ↗.

Analysis Summary

AnalyzerStatusSummaryLink
DeepSource Secrets LogoSecrets✅ SuccessView Check ↗
DeepSource JavaScript LogoJavaScript✅ SuccessView Check ↗

💡 If you’re a repository administrator, you can configure the quality gates from the settings.

Copy link

relativeci bot commented May 27, 2024

#124 Bundle Size — 18.74MiB (+0.38%).

88a9a03(current) vs c38056d dev#79(baseline)

Bundle metrics  Change 4 changes Regression 1 regression
                 Current
#124
     Baseline
#79
Regression  Initial JS 1008.21KiB(+0.04%) 1007.8KiB
No change  Initial CSS 6.61KiB 6.61KiB
No change  Cache Invalidation 2.36% 2.36%
No change  Chunks 20 20
Change  Assets 80(+1.27%) 79
Change  Modules 790(+0.13%) 789
No change  Duplicate Modules 103 103
Change  Duplicate Code 5.61%(-0.18%) 5.62%
No change  Packages 81 81
No change  Duplicate Packages 0 0
Bundle size by type  Change 3 changes Regression 3 regressions
                 Current
#124
     Baseline
#79
Regression  IMG 17.47MiB (+0.41%) 17.4MiB
Regression  JS 1.08MiB (+0.04%) 1.08MiB
No change  Fonts 189.64KiB 189.64KiB
No change  CSS 6.61KiB 6.61KiB
Regression  Other 4.07KiB (+0.12%) 4.06KiB

Bundle analysis reportBranch renovate/all-minor-patchProject dashboard

Copy link

coderabbitai bot commented May 27, 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 May 27, 2024

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

Package New capabilities Transitives Size Publisher
npm/@prisma/adapter-neon@5.15.0 None 0 0 B
npm/@prisma/client@5.15.0 None 0 0 B
npm/@storybook/addon-a11y@8.1.6 None 0 0 B
npm/@storybook/addon-essentials@8.1.6 None 0 0 B
npm/@storybook/addon-interactions@8.1.6 None 0 0 B
npm/@storybook/addon-links@8.1.6 None 0 0 B
npm/@storybook/addon-viewport@8.1.6 None 0 0 B
npm/@storybook/blocks@8.1.6 None 0 0 B
npm/@storybook/nextjs@8.1.6 None 0 0 B
npm/@storybook/react@8.1.6 None 0 0 B
npm/@storybook/test@8.1.6 None 0 0 B
npm/@types/node@20.14.2 None 0 0 B
npm/@typescript-eslint/eslint-plugin@7.12.0 None 0 0 B
npm/@typescript-eslint/parser@7.12.0 None 0 0 B
npm/chromatic@11.5.1 None 0 0 B
npm/eslint-plugin-react@7.34.2 filesystem Transitive: environment, eval +86 5.68 MB ljharb
npm/eslint-plugin-turbo@1.13.4 environment, eval, filesystem, shell +1 490 kB turbobot
npm/knip@5.17.4 Transitive: environment, filesystem, shell +45 3.48 MB
npm/lint-staged@15.2.5 Transitive: environment, filesystem, shell +20 922 kB okonet
npm/nextjs-routes@2.2.0 None 0 0 B
npm/prettier@3.3.1 None 0 0 B
npm/prisma@5.15.0 None 0 0 B
npm/storybook@8.1.6 None 0 0 B
npm/tsx@4.12.0 None 0 0 B
npm/turbo@1.13.4 None +1 30.6 kB turbobot
npm/type-fest@4.19.0 None 0 366 kB sindresorhus

🚮 Removed packages: npm/chromatic@11.4.0, npm/eslint-plugin-react@7.34.1, npm/eslint-plugin-turbo@1.13.3, npm/knip@5.16.0, npm/lint-staged@15.2.4, npm/nextjs-routes@2.1.0, npm/prettier@3.2.5, npm/prisma@5.14.0, npm/storybook@8.1.3, npm/tsx@4.11.0, npm/turbo@1.13.3, npm/type-fest@4.18.2

View full report↗︎

Copy link

socket-security bot commented May 27, 2024

🚨 Potential security issues detected. Learn more about Socket for GitHub ↗︎

To accept the risk, merge this PR and you will not be notified again.

Alert Package NoteSource
Install scripts npm/core-js@3.37.1
  • Install script: postinstall
  • Source: node -e "try{require('./postinstall')}catch(e){}"
Install scripts npm/@vercel/speed-insights@1.0.11
  • Install script: postinstall
  • Source: node scripts/postinstall.mjs
  • orphan: npm/@vercel/speed-insights@1.0.11
Install scripts npm/@vercel/speed-insights@1.0.10
  • Install script: postinstall
  • Source: node scripts/postinstall.mjs
Install scripts npm/esbuild@0.20.2
Install scripts npm/core-js@3.37.0
  • Install script: postinstall
  • Source: node -e "try{require('./postinstall')}catch(e){}"
Install scripts npm/@prisma/client@5.14.0
  • Install script: postinstall
  • Source: node scripts/postinstall.js
Install scripts npm/@prisma/engines@5.14.0
  • Install script: postinstall
  • Source: node scripts/postinstall.js
Install scripts npm/prisma@5.14.0
  • Install script: preinstall
  • Source: node scripts/preinstall-entry.js

View full report↗︎

Next steps

What is an install script?

Install scripts are run when the package is installed. The majority of malware in npm is hidden in install scripts.

Packages should not be running non-essential scripts during install and there are often solutions to problems people solve with install scripts that can be run at publish time instead.

Take a deeper look at the dependency

Take a moment to review the security alert above. Review the linked package source code to understand the potential risk. Ensure the package is not malicious before proceeding. If you're unsure how to proceed, reach out to your security team or ask the Socket team for help at support [AT] socket [DOT] dev.

Remove the package

If you happen to install a dependency that Socket reports as Known Malware you should immediately remove it and select a different dependency. For other alert types, you may may wish to investigate alternative packages or consider if there are other ways to mitigate the specific risk posed by the dependency.

Mark a package as acceptable risk

To ignore an alert, reply with a comment starting with @SocketSecurity ignore followed by a space separated list of ecosystem/package-name@version specifiers. e.g. @SocketSecurity ignore npm/foo@1.0.0 or ignore all packages with @SocketSecurity ignore-all

  • @SocketSecurity ignore npm/core-js@3.37.1
  • @SocketSecurity ignore npm/@vercel/speed-insights@1.0.11
  • @SocketSecurity ignore npm/@vercel/speed-insights@1.0.10
  • @SocketSecurity ignore npm/esbuild@0.20.2
  • @SocketSecurity ignore npm/core-js@3.37.0
  • @SocketSecurity ignore npm/@prisma/client@5.14.0
  • @SocketSecurity ignore npm/@prisma/engines@5.14.0
  • @SocketSecurity ignore npm/prisma@5.14.0

@renovate renovate bot force-pushed the renovate/all-minor-patch branch from 42ad48c to 0c9cc48 Compare June 2, 2024 21:53
@renovate renovate bot force-pushed the renovate/all-minor-patch branch from 0c9cc48 to a41e9de Compare June 3, 2024 05:08
@renovate renovate bot force-pushed the renovate/all-minor-patch branch from a41e9de to 7e8e515 Compare June 3, 2024 11:18
@renovate renovate bot force-pushed the renovate/all-minor-patch branch from 7e8e515 to 9213754 Compare June 3, 2024 19:44
@renovate renovate bot force-pushed the renovate/all-minor-patch branch from 9213754 to c52dd61 Compare June 4, 2024 00:12
@renovate renovate bot force-pushed the renovate/all-minor-patch branch from c52dd61 to 363f8b6 Compare June 4, 2024 13:25
@renovate renovate bot changed the title chore(deps): update all non-major dependencies fix(deps): update all non-major dependencies Jun 4, 2024
@renovate renovate bot force-pushed the renovate/all-minor-patch branch from 363f8b6 to 5316634 Compare June 4, 2024 19:59
@renovate renovate bot force-pushed the renovate/all-minor-patch branch from 5316634 to 026b03c Compare June 5, 2024 11:31
@renovate renovate bot force-pushed the renovate/all-minor-patch branch from 026b03c to 000d6e2 Compare June 5, 2024 14:04
@renovate renovate bot force-pushed the renovate/all-minor-patch branch from 000d6e2 to a2dd53d Compare June 6, 2024 01:26
@renovate renovate bot force-pushed the renovate/all-minor-patch branch from a2dd53d to 364e484 Compare June 6, 2024 06:19
Signed-off-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
@renovate renovate bot force-pushed the renovate/all-minor-patch branch from 364e484 to 88a9a03 Compare June 6, 2024 10:49
Copy link

sonarcloud bot commented Jun 6, 2024

Quality Gate Passed Quality Gate passed

Issues
0 New issues
0 Accepted issues

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

See analysis details on SonarCloud

@kodiakhq kodiakhq bot merged commit cee3ada into dev Jun 6, 2024
19 of 20 checks passed
@kodiakhq kodiakhq bot deleted the renovate/all-minor-patch branch June 6, 2024 16:12
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.

None yet

1 participant