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

Merged
merged 1 commit into from
Nov 13, 2024

Conversation

renovate[bot]
Copy link
Contributor

@renovate renovate bot commented Aug 12, 2024

This PR contains the following updates:

Package Change Age Adoption Passing Confidence
@mheob/prettier-config (source) ^3.2.0 -> ^3.3.2 age adoption passing confidence
@mheob/tsconfig (source) ^2.0.0 -> ^2.2.1 age adoption passing confidence
@types/node (source) ^20.11.16 -> ^20.17.6 age adoption passing confidence
@types/react (source) ^18.2.51 -> ^18.3.12 age adoption passing confidence
@types/react-dom (source) ^18.2.18 -> ^18.3.1 age adoption passing confidence
@vercel/analytics (source) ^1.1.2 -> ^1.3.2 age adoption passing confidence
@vitejs/plugin-react (source) ^4.2.1 -> ^4.3.3 age adoption passing confidence
eslint (source) ^8.56.0 -> ^8.57.1 age adoption passing confidence
prettier (source) ^3.2.4 -> ^3.3.3 age adoption passing confidence
react (source) ^18.2.0 -> ^18.3.1 age adoption passing confidence
react-dom (source) ^18.2.0 -> ^18.3.1 age adoption passing confidence
typescript (source) ^5.3.3 -> ^5.6.3 age adoption passing confidence
vite (source) ^5.0.12 -> ^5.4.10 age adoption passing confidence
zustand ^4.5.0 -> ^4.5.5 age adoption passing confidence

Release Notes

mheob/config (@​mheob/prettier-config)

v3.3.2

Compare Source

Patch Changes
vercel/analytics (@​vercel/analytics)

v1.3.2

Compare Source

What's Changed

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

vitejs/vite-plugin-react (@​vitejs/plugin-react)

v4.3.3

Compare Source

React Compiler runtimeModule option removed

React Compiler was updated to accept a target option and runtimeModule was removed. vite-plugin-react will still detect runtimeModule for backwards compatibility.

When using a custom runtimeModule or target !== '19', the plugin will not try to pre-optimize react/compiler-runtime dependency.

The react-compiler-runtime is now available on npm can be used instead of the local shim for people using the compiler with React < 19.

Here is the configuration to use the compiler with React 18 and correct source maps in development:

npm install babel-plugin-react-compiler react-compiler-runtime @&#8203;babel/plugin-transform-react-jsx-development
export default defineConfig(({ command }) => {
  const babelPlugins = [['babel-plugin-react-compiler', { target: '18' }]]
  if (command === 'serve') {
    babelPlugins.push(['@&#8203;babel/plugin-transform-react-jsx-development', {}])
  }

  return {
    plugins: [react({ babel: { plugins: babelPlugins } })],
  }
})

v4.3.2

Compare Source

Ignore directive sourcemap error #​369

eslint/eslint (eslint)

v8.57.1

Compare Source

prettier/prettier (prettier)

v3.3.3

Compare Source

diff

Add parentheses for nullish coalescing in ternary (#​16391 by @​cdignam-segment)

This change adds clarity to operator precedence.

// Input
foo ? bar ?? foo : baz;
foo ?? bar ? a : b;
a ? b : foo ?? bar;

// Prettier 3.3.2
foo ? bar ?? foo : baz;
foo ?? bar ? a : b;
a ? b : foo ?? bar;

// Prettier 3.3.3
foo ? (bar ?? foo) : baz;
(foo ?? bar) ? a : b;
a ? b : (foo ?? bar);
Add parentheses for decorator expressions (#​16458 by @​y-schneider)

Prevent parentheses around member expressions or tagged template literals from being removed to follow the stricter parsing rules of TypeScript 5.5.

// Input
@&#8203;(foo`tagged template`)
class X {}

// Prettier 3.3.2
@&#8203;foo`tagged template`
class X {}

// Prettier 3.3.3
@&#8203;(foo`tagged template`)
class X {}
Support @let declaration syntax (#​16474 by @​sosukesuzuki)

Adds support for Angular v18 @let declaration syntax.

Please see the following code example. The @let declaration allows you to define local variables within the template:

@&#8203;let name = 'Frodo';

<h1>Dashboard for {{name}}</h1>
Hello, {{name}}

For more details, please refer to the excellent blog post by the Angular Team: Introducing @​let in Angular.

We also appreciate the Angular Team for kindly answering our questions to implement this feature.

microsoft/TypeScript (typescript)

v5.6.3

Compare Source

v5.6.2

Compare Source

v5.5.4: TypeScript 5.5.4

Compare Source

For release notes, check out the release announcement.

For the complete list of fixed issues, check out the

Downloads are available on:

vitejs/vite (vite)

v5.4.10

Compare Source

Please refer to CHANGELOG.md for details.

v5.4.9

Compare Source

Please refer to CHANGELOG.md for details.

v5.4.8

Compare Source

Please refer to CHANGELOG.md for details.

v5.4.7

Compare Source

Please refer to CHANGELOG.md for details.

v5.4.6

Compare Source

Please refer to CHANGELOG.md for details.

v5.4.5

Compare Source

Please refer to CHANGELOG.md for details.

v5.4.4

Compare Source

Please refer to CHANGELOG.md for details.

v5.4.3

Compare Source

@renovate renovate bot requested a review from mheob as a code owner August 12, 2024 00:52
@renovate renovate bot added the dependencies Pull requests that update a dependency file label Aug 12, 2024
Copy link

vercel bot commented Aug 12, 2024

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

Name Status Preview Comments Updated (UTC)
ef-calc ✅ Ready (Inspect) Visit Preview 💬 Add feedback Nov 6, 2024 4:08am

Copy link

coderabbitai bot commented Aug 12, 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.

Walkthrough

The recent changes involve updating multiple dependencies and development dependencies in the package.json file, particularly focusing on key libraries like React, Zustand, and various type definitions. This maintenance effort includes version upgrades for numerous packages, ensuring that the project remains aligned with the latest releases and security updates.

Changes

Files Change Summary
package.json Updated versions of several dependencies, including @vercel/analytics, react, react-dom, and zustand.
Significant devDependencies updates include @mheob/prettier-config, @mheob/tsconfig, @types/node, eslint, typescript, vite, and others.

Poem

🐰 In the garden of code, we hop with delight,
Upgrading our friends, making everything right.
With React and Zustand, we’re nimble and spry,
Our project’s now ready to leap up high!
Dependencies shining, like stars in the night,
Together we flourish, in this coding flight! ✨


🪧 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>, please review it.
    • 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 gather interesting stats about this repository and render them as a table. Additionally, render a pie chart showing the language distribution in the codebase.
    • @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 using 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.

Other keywords and placeholders

  • Add @coderabbitai ignore anywhere in the PR description to prevent this PR from being reviewed.
  • Add @coderabbitai summary to generate the high-level summary at a specific location in the PR description.
  • Add @coderabbitai anywhere in the PR title to generate the title automatically.

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

netlify bot commented Aug 12, 2024

Deploy Preview for ef-calc ready!

Name Link
🔨 Latest commit 704b50f
🔍 Latest deploy log https://app.netlify.com/sites/ef-calc/deploys/672aebaabe58800008139311
😎 Deploy Preview https://deploy-preview-63--ef-calc.netlify.app
📱 Preview on mobile
Toggle QR Code...

QR Code

Use your smartphone camera to open QR code link.

To edit notification comments on pull requests, go to your Netlify site configuration.

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 4c953fb and ccafd1f.

Files ignored due to path filters (1)
  • pnpm-lock.yaml is excluded by !**/pnpm-lock.yaml
Files selected for processing (1)
  • package.json (1 hunks)
Additional comments not posted (14)
package.json (14)

19-19: LGTM for zustand update.

The update from ^4.5.0 to ^4.5.4 is a patch version bump, indicating bug fixes and minor improvements. No action needed.


29-29: LGTM for eslint update.

The update from ^8.56.0 to ^8.57.0 is a patch version bump, indicating bug fixes and minor improvements. No action needed.


16-16: Verify compatibility for react.

The update from ^18.2.0 to ^18.3.1 is a minor version bump. Check for any changes in rendering behavior or new APIs that might affect your application.

Verification successful

No issues found with React update.

The codebase uses React.StrictMode and createRoot, both of which are stable and should not be affected by the update to React ^18.3.1. The update is safe to proceed with.

Scripts executed

The following scripts were executed for the analysis:

Script:

#!/bin/bash
# Description: Check for breaking changes or new features in `react` that might affect the project.

# Test: Fetch release notes for `react` from version 18.2.0 to 18.3.1.
gh release view --repo facebook/react --json name,body --jq '.body' | grep -E '18\.2\.0|18\.3\.1'

Length of output: 97


Script:

#!/bin/bash
# Search for React imports and usage in the codebase to identify potentially affected areas.

# Find files importing React
rg --glob '!node_modules' "import React" -A 3

# Find usage of React features that might be affected by a version update
rg --glob '!node_modules' "React\." -A 3

Length of output: 353


26-26: Verify compatibility for @types/react.

The update from ^18.2.51 to ^18.3.3 is a minor version bump. Ensure that any changes in React type definitions are compatible with your project's type checking.

Verification successful

Minor update for @types/react appears safe, but verify if needed.

The search revealed minimal and standard usage of React types, such as React.StrictMode, which are unlikely to be affected by the update from ^18.2.51 to ^18.3.3. However, if you have specific concerns about type usage, consider manually verifying compatibility.

Scripts executed

The following scripts were executed for the analysis:

Script:

#!/bin/bash
# Description: Check for changes in `@types/react` that might affect type checking.

# Test: Fetch release notes for `@types/react` from version 18.2.51 to 18.3.3.
gh release view --repo DefinitelyTyped/DefinitelyTyped --json name,body --jq '.body' | grep -E '18\.2\.51|18\.3\.3'

Length of output: 115


Script:

#!/bin/bash
# Search for TypeScript files using React types to check for potential issues with the updated `@types/react`.

# Find all TypeScript files and search for React type imports and usage.
rg --files-with-matches --iglob '*.ts' --iglob '*.tsx' 'import.*react' -l | xargs rg 'React\.' -A 3

Length of output: 208


17-17: Verify compatibility for react-dom.

The update from ^18.2.0 to ^18.3.1 is a minor version bump. Check for any changes in DOM rendering or new APIs that might affect your application.


23-23: Verify compatibility for @mheob/prettier-config.

The update from ^3.2.0 to ^3.3.1 is a minor version bump. Ensure that any new formatting rules or changes are compatible with your project's code style.


30-30: Verify compatibility for prettier.

The update from ^3.2.4 to ^3.3.3 is a minor version bump. Ensure that any new formatting rules or changes are compatible with your project's code style.


15-15: Verify compatibility for @vercel/analytics.

The update from ^1.1.2 to ^1.3.1 is a minor version bump. Ensure that any new features or changes are compatible with your current implementation.

Verification successful

Update to @vercel/analytics is compatible.

The changes from version 1.1.2 to 1.3.1 include enhancements and bug fixes without any breaking changes. This update should be safe for your project.

Scripts executed

The following scripts were executed for the analysis:

Script:

#!/bin/bash
# Description: Check for breaking changes or new features in `@vercel/analytics` that might affect the project.

# Test: Fetch release notes for `@vercel/analytics` from version 1.1.2 to 1.3.1.
gh release view --repo vercel/analytics --json name,body --jq '.body' | grep -E '1\.1\.2|1\.3\.1'

Length of output: 175


Script:

#!/bin/bash
# Description: Fetch release notes for all versions of `@vercel/analytics` from version 1.1.2 to 1.3.1.

# Test: Fetch release notes for all versions between 1.1.2 and 1.3.1.
gh release list --repo vercel/analytics --limit 100 | grep -E '1\.1\.[2-9]|1\.2\.[0-9]+|1\.3\.[0-1]'

Length of output: 616


Script:

#!/bin/bash
# Description: Fetch detailed release notes for each version of `@vercel/analytics` from 1.1.2 to 1.3.1.

# Fetch release notes for each version.
for version in 1.1.3 1.1.4 1.2.0 1.2.1 1.2.2 1.3.0 1.3.1; do
  echo "Release notes for version $version:"
  gh release view $version --repo vercel/analytics --json body --jq '.body'
  echo "----------------------------------------"
done

Length of output: 3797


32-32: Verify compatibility for vite.

The update from ^5.0.12 to ^5.4.0 is a minor version bump. Ensure that any changes in Vite's features or configurations are compatible with your project's build or development process.


27-27: Verify compatibility for @types/react-dom.

The update from ^18.2.18 to ^18.3.0 is a minor version bump. Ensure that any changes in React DOM type definitions are compatible with your project's type checking.


24-24: Verify compatibility for @mheob/tsconfig.

The update from ^2.0.0 to ^2.1.0 is a minor version bump. Ensure that any changes in TypeScript configuration are compatible with your project's build process.


31-31: Verify compatibility for typescript.

The update from ^5.3.3 to ^5.5.4 is a minor version bump. Ensure that any changes in TypeScript features or type definitions are compatible with your project's type checking or build process.


28-28: Verify compatibility for @vitejs/plugin-react.

The update from ^4.2.1 to ^4.3.1 is a minor version bump. Ensure that any changes in Vite's React plugin are compatible with your project's build or development process.

Verification successful

Compatibility Confirmed for @vitejs/plugin-react Update

The update to version 4.3.1 includes a fix that enhances support for the React Compiler with React 18. This change allows the compiler to be used with React 18 and a custom runtimeModule, correcting a previous assumption that it was only usable with React 19. Ensure that your project aligns with these changes, especially if you are using a custom runtimeModule. No breaking changes were found that would impact typical usage.

  • Release Note: Fix support for React Compiler with React 18.
  • Action: Verify if your project uses a custom runtimeModule and update accordingly.
Scripts executed

The following scripts were executed for the analysis:

Script:

#!/bin/bash
# Description: Check for changes in `@vitejs/plugin-react` that might affect the build or development process.

# Test: Fetch release notes for `@vitejs/plugin-react` from version 4.2.1 to 4.3.1.
gh release view --repo vitejs/vite --json name,body --jq '.body' | grep -E '4\.2\.1|4\.3\.1'

Length of output: 92


Script:

#!/bin/bash
# Description: Identify the correct repository for `@vitejs/plugin-react` and fetch release notes for versions 4.2.1 to 4.3.1.

# Step 1: Search for the repository URL in package.json files.
fd package.json --exec jq -r '.dependencies["@vitejs/plugin-react"]' | grep -oP 'https://github\.com/\K[^"]+'

# Step 2: Fetch release notes for `@vitejs/plugin-react` from the identified repository.
gh release view --repo vitejs/vite-plugin-react --json name,body --jq '.body' | grep -E '4\.2\.1|4\.3\.1'

Length of output: 217


Script:

#!/bin/bash
# Description: Fetch the repository URL for `@vitejs/plugin-react` from the npm registry and attempt to retrieve the changelog.

# Step 1: Fetch the repository URL from the npm registry.
npm info @vitejs/plugin-react repository.url

# Step 2: Attempt to retrieve the changelog or release notes from the identified repository.
gh repo view vitejs/vite-plugin-react --json description,homepage --jq '.description, .homepage'

Length of output: 1342


Script:

#!/bin/bash
# Description: Attempt to find the correct repository for `@vitejs/plugin-react` and fetch release notes.

# Step 1: Use GitHub search to find the repository for `@vitejs/plugin-react`.
gh repo list vitejs --json nameWithOwner,description --limit 100 | grep 'plugin-react'

# Step 2: Fetch the latest release notes for the identified repository.
gh release view --repo vitejs/vite-plugin-react --json name,body --jq '.name, .body'

Length of output: 3081


25-25: Verify compatibility for @types/node.

The update from ^20.11.16 to ^20.14.14 is a minor version bump. Ensure that any changes in Node.js type definitions are compatible with your project's type checking.

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 ccafd1f and 3c94155.

Files ignored due to path filters (1)
  • pnpm-lock.yaml is excluded by !**/pnpm-lock.yaml
Files selected for processing (1)
  • package.json (1 hunks)
Files skipped from review as they are similar to previous 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 3c94155 and 58ac8a5.

Files ignored due to path filters (1)
  • pnpm-lock.yaml is excluded by !**/pnpm-lock.yaml
Files selected for processing (1)
  • package.json (1 hunks)
Files skipped from review as they are similar to previous 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 58ac8a5 and b5207a1.

Files ignored due to path filters (1)
  • pnpm-lock.yaml is excluded by !**/pnpm-lock.yaml
Files selected for processing (1)
  • package.json (1 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 b5207a1 and a5abd03.

Files ignored due to path filters (1)
  • pnpm-lock.yaml is excluded by !**/pnpm-lock.yaml
Files selected for processing (1)
  • package.json (1 hunks)
Files skipped from review as they are similar to previous 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 a5abd03 and f2c3c5f.

Files ignored due to path filters (1)
  • pnpm-lock.yaml is excluded by !**/pnpm-lock.yaml
Files selected for processing (1)
  • package.json (1 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 f2c3c5f and e034d03.

Files ignored due to path filters (1)
  • pnpm-lock.yaml is excluded by !**/pnpm-lock.yaml
Files selected for processing (1)
  • package.json (1 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 e034d03 and 8f61997.

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

@renovate renovate bot force-pushed the renovate/all-minor-patch branch from 8f61997 to 64233a4 Compare August 28, 2024 19:37
@renovate renovate bot force-pushed the renovate/all-minor-patch branch from b002c3b to 74cbaad Compare October 22, 2024 17:15
@renovate renovate bot force-pushed the renovate/all-minor-patch branch from 74cbaad to a086bdd Compare October 25, 2024 03:39
@renovate renovate bot force-pushed the renovate/all-minor-patch branch from a086bdd to 67845cc Compare October 26, 2024 03:40
@renovate renovate bot force-pushed the renovate/all-minor-patch branch from 67845cc to 7e55ad1 Compare October 26, 2024 07:24
@renovate renovate bot force-pushed the renovate/all-minor-patch branch from 7e55ad1 to 301c15d Compare October 26, 2024 15:03
@renovate renovate bot force-pushed the renovate/all-minor-patch branch from 301c15d to 8293474 Compare October 28, 2024 10:32
@renovate renovate bot force-pushed the renovate/all-minor-patch branch from 8293474 to 7a5d96b Compare October 28, 2024 13:59
@renovate renovate bot force-pushed the renovate/all-minor-patch branch from 7a5d96b to 6dbc301 Compare October 31, 2024 23:29
@renovate renovate bot force-pushed the renovate/all-minor-patch branch from 6dbc301 to d67b1c2 Compare November 1, 2024 18:50
@renovate renovate bot force-pushed the renovate/all-minor-patch branch from d67b1c2 to bd5eff6 Compare November 3, 2024 06:24
@renovate renovate bot force-pushed the renovate/all-minor-patch branch from bd5eff6 to 28ca6a3 Compare November 3, 2024 19:10
Copy link

sonarqubecloud bot commented Nov 6, 2024

@kodiakhq kodiakhq bot merged commit 62f2c6a into main Nov 13, 2024
12 checks passed
@kodiakhq kodiakhq bot deleted the renovate/all-minor-patch branch November 13, 2024 07:33
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
dependencies Pull requests that update a dependency file
Projects
None yet
Development

Successfully merging this pull request may close these issues.

1 participant