Skip to content
This repository was archived by the owner on Aug 28, 2026. It is now read-only.

build(deps): bump the npm-patch-minor group with 22 updates - #768

Merged
EmaSuriano merged 1 commit into
masterfrom
dependabot/npm_and_yarn/npm-patch-minor-e1589628b0
Aug 28, 2026
Merged

build(deps): bump the npm-patch-minor group with 22 updates#768
EmaSuriano merged 1 commit into
masterfrom
dependabot/npm_and_yarn/npm-patch-minor-e1589628b0

Conversation

@dependabot

@dependabot dependabot Bot commented on behalf of github Aug 28, 2026

Copy link
Copy Markdown
Contributor

Bumps the npm-patch-minor group with 22 updates:

Package From To
babel-plugin-styled-components 2.0.7 2.3.0
date-fns 2.29.3 2.30.0
dotenv 16.0.3 16.6.1
gatsby 3.14.6 3.15.0
gatsby-plugin-manifest 3.14.0 3.15.0
gatsby-plugin-react-helmet 4.14.0 4.15.0
gatsby-plugin-sharp 3.14.3 3.15.0
gatsby-plugin-styled-components 4.14.0 4.15.0
gatsby-plugin-typescript 3.14.0 3.15.0
gatsby-source-filesystem 3.14.0 3.15.0
gatsby-source-google-spreadsheets 3.0.8 3.0.9
gatsby-transformer-sharp 3.14.0 3.15.0
grommet 2.28.0 2.56.1
grommet-icons 4.8.0 4.14.0
styled-components 5.3.6 5.3.11
@types/styled-components 5.1.26 5.1.36
@types/react-helmet 6.1.6 6.1.11
eslint-config-prettier 8.5.0 8.10.2
eslint-plugin-prettier 4.2.1 4.2.5
eslint-plugin-react 7.31.11 7.37.5
prettier 2.8.0 2.8.8
typescript 4.9.3 4.9.5

Updates babel-plugin-styled-components from 2.0.7 to 2.3.0

Release notes

Sourced from babel-plugin-styled-components's releases.

v2.3.0

Minor Changes

  • 0c5f21d: Add a cssPropImportPath option to control which package the css-prop transform auto-imports styled from when the file has no existing styled import. Defaults to 'styled-components' (existing behavior). React Native targets can set it to 'styled-components/native' so the auto-injected import resolves to the right runtime.
  • 0c5f21d: Detect styled declarations that go through a local alias of the import, including the TypeScript theme-typing pattern const styled = baseStyled as ThemedStyledInterface<MyTheme>. After type-stripping Babel sees a plain const styled = baseStyled, and the detector now follows single-identifier alias chains so styled.div resolves back to the original import.

Patch Changes

  • 0c5f21d: Fix invalid output when a css={{ ... }} object key matches a local binding name (e.g. ({ position }) => <div css={{ position: 'absolute' }} />). The reducer no longer mis-treats non-computed property names as scope references, so plain keys stay literal while only computed [expr] keys are extracted as prop interpolations.
  • 0c5f21d: Recognize TypeScript's __importDefault interop helper alongside Babel's _interopRequireDefault. Files compiled through tsc / ts-jest (which emit var sc_1 = __importDefault(require('styled-components'))) now flow into the same detection path as Babel-compiled output, so styled declarations downstream pick up displayName and componentId as expected.

v2.2.0

Minor Changes

  • a40e3f7: Refresh the toolchain and fix a handful of css-prop transform bugs that had crept in under recent Babel versions.
    • When a file already imports styled and also uses one or more css={…} props, every styled component now keeps its display name and stable component id. Previously the cache that tracks the local default import could be overwritten on each css-prop usage, which silently dropped the display name and id for the surrounding styled.div declarations.
    • css={{ [foo]: bar }} with a non-primitive value no longer fails Babel's validator. Computed keys are preserved through the css-prop object rewrite.
    • Friendlier error messages when the css-prop transform encounters a JSX name shape it can't infer, instead of a confusing internal ReferenceError.
    • Long-running watch processes (Next dev, webpack-dev-server, jest watch) no longer leak import-detection state between files.
    • Removed the runtime lodash dependency. The plugin now ships with @babel/core as a declared peer.
    • Dev tooling moved to pnpm and changesets. Plugin behavior is unchanged.

v2.1.4

Full Changelog: styled-components/babel-plugin-styled-components@v2.1.3...v2.1.4

v2.1.3

What's Changed

New Contributors

Full Changelog: styled-components/babel-plugin-styled-components@v2.1.1...v2.1.3

v2.1.1

What's Changed

New Contributors

... (truncated)

Changelog

Sourced from babel-plugin-styled-components's changelog.

2.3.0

Minor Changes

  • 0c5f21d: Add a cssPropImportPath option to control which package the css-prop transform auto-imports styled from when the file has no existing styled import. Defaults to 'styled-components' (existing behavior). React Native targets can set it to 'styled-components/native' so the auto-injected import resolves to the right runtime.
  • 0c5f21d: Detect styled declarations that go through a local alias of the import, including the TypeScript theme-typing pattern const styled = baseStyled as ThemedStyledInterface<MyTheme>. After type-stripping Babel sees a plain const styled = baseStyled, and the detector now follows single-identifier alias chains so styled.div resolves back to the original import.

Patch Changes

  • 0c5f21d: Fix invalid output when a css={{ ... }} object key matches a local binding name (e.g. ({ position }) => <div css={{ position: 'absolute' }} />). The reducer no longer mis-treats non-computed property names as scope references, so plain keys stay literal while only computed [expr] keys are extracted as prop interpolations.
  • 0c5f21d: Recognize TypeScript's __importDefault interop helper alongside Babel's _interopRequireDefault. Files compiled through tsc / ts-jest (which emit var sc_1 = __importDefault(require('styled-components'))) now flow into the same detection path as Babel-compiled output, so styled declarations downstream pick up displayName and componentId as expected.

2.2.0

Minor Changes

  • a40e3f7: Refresh the toolchain and fix a handful of css-prop transform bugs that had crept in under recent Babel versions.
    • When a file already imports styled and also uses one or more css={…} props, every styled component now keeps its display name and stable component id. Previously the cache that tracks the local default import could be overwritten on each css-prop usage, which silently dropped the display name and id for the surrounding styled.div declarations.
    • css={{ [foo]: bar }} with a non-primitive value no longer fails Babel's validator. Computed keys are preserved through the css-prop object rewrite.
    • Friendlier error messages when the css-prop transform encounters a JSX name shape it can't infer, instead of a confusing internal ReferenceError.
    • Long-running watch processes (Next dev, webpack-dev-server, jest watch) no longer leak import-detection state between files.
    • Removed the runtime lodash dependency. The plugin now ships with @babel/core as a declared peer.
    • Dev tooling moved to pnpm and changesets. Plugin behavior is unchanged.
Commits
  • ab3aaf5 Version Packages (#422)
  • 0c5f21d fix: css-prop key shadowing, ts-jest detection, import aliasing (#421)
  • d0add03 Version Packages (#419)
  • a40e3f7 chore: modernize dependencies and fix css prop import detection (#418)
  • 4e2eb38 chore: bump version [skip ci]
  • 50b83af chore: upgrade dependencies
  • 2376fc2 chore: migrate to @​babel/plugin-syntax-jsx
  • 384aeec Bump ansi-regex from 5.0.0 to 5.0.1 (#391)
  • 911fc09 chore: update babel deps and jest
  • b8d2954 When testing import paths, only use string literals. (#389)
  • Additional commits viewable in compare view
Maintainer changes

This version was pushed to npm by GitHub Actions, a new releaser for babel-plugin-styled-components since your current version.


Updates date-fns from 2.29.3 to 2.30.0
Updates dotenv from 16.0.3 to 16.6.1

Changelog

Sourced from dotenv's changelog.

16.6.1 (2025-06-27)

Changed

  • Default quiet to true – hiding the runtime log message (#874)
  • NOTICE: 17.0.0 will be released with quiet defaulting to false. Use config({ quiet: true }) to suppress.
  • And check out the new dotenvx. As coding workflows evolve and agents increasingly handle secrets, encrypted .env files offer a much safer way to deploy both agents and code together with secure secrets. Simply switch require('dotenv').config() for require('@dotenvx/dotenvx').config().

16.6.0 (2025-06-26)

Added

  • Default log helpful message [dotenv@16.6.0] injecting env (1) from .env (#870)
  • Use { quiet: true } to suppress
  • Aligns dotenv more closely with dotenvx.

16.5.0 (2025-04-07)

Added

  • 🎉 Added new sponsor Graphite - the AI developer productivity platform helping teams on GitHub ship higher quality software, faster.

[!TIP] Become a sponsor

The dotenvx README is viewed thousands of times DAILY on GitHub and NPM. Sponsoring dotenv is a great way to get in front of developers and give back to the developer community at the same time.

Changed

  • Remove _log method. Use _debug #862

16.4.7 (2024-12-03)

Changed

  • Ignore .tap folder when publishing. (oops, sorry about that everyone. - @​motdotla) #848

16.4.6 (2024-12-02)

Changed

  • Clean up stale dev dependencies #847
  • Various README updates clarifying usage and alternative solutions using dotenvx

16.4.5 (2024-02-19)

Changed

  • 🐞 Fix recent regression when using path option. return to historical behavior: do not attempt to auto find .env if path set. (regression was introduced in 16.4.3) #814

... (truncated)

Commits

Updates gatsby from 3.14.6 to 3.15.0

Commits

Updates gatsby-plugin-manifest from 3.14.0 to 3.15.0

Changelog

Sourced from gatsby-plugin-manifest's changelog.

Changelog: gatsby-plugin-manifest

All notable changes to this project will be documented in this file. See Conventional Commits for commit guidelines.

5.16.0 (2026-01-26)

🧾 Release notes

Bug Fixes

Other Changes

  • Revert "chore(release): Publish next pre-minor" (3539ec8)

5.15.0 (2025-08-27)

🧾 Release notes

Note: Version bump only for package gatsby-plugin-manifest

5.14.0 (2024-11-06)

🧾 Release notes

Note: Version bump only for package gatsby-plugin-manifest

5.13.1 (2024-01-23)

Note: Version bump only for package gatsby-plugin-manifest

5.13.0 (2023-12-18)

🧾 Release notes

Chores

5.12.3 (2023-10-26)

Note: Version bump only for package gatsby-plugin-manifest

5.12.2 (2023-10-20)

Note: Version bump only for package gatsby-plugin-manifest

5.12.1 (2023-10-09)

... (truncated)

Commits

Updates gatsby-plugin-react-helmet from 4.14.0 to 4.15.0

Release notes

Sourced from gatsby-plugin-react-helmet's releases.

v4.15

Welcome to gatsby@4.15.0 release (May 2022 #2)

Key highlights of this release:

Also check out notable bugfixes.

Bleeding Edge: Want to try new features as soon as possible? Install gatsby@next and let us know if you have any issues.

Previous release notes

[Full changelog][full-changelog]

Changelog

Sourced from gatsby-plugin-react-helmet's changelog.

Changelog: gatsby-plugin-react-helmet

All notable changes to this project will be documented in this file. See Conventional Commits for commit guidelines.

6.16.0 (2026-01-26)

🧾 Release notes

Bug Fixes

Other Changes

  • Revert "chore(release): Publish next pre-minor" (3539ec8)

6.15.0 (2025-08-27)

🧾 Release notes

Note: Version bump only for package gatsby-plugin-react-helmet

6.14.0 (2024-11-06)

🧾 Release notes

Note: Version bump only for package gatsby-plugin-react-helmet

6.13.1 (2024-01-23)

Note: Version bump only for package gatsby-plugin-react-helmet

6.13.0 (2023-12-18)

🧾 Release notes

Note: Version bump only for package gatsby-plugin-react-helmet

6.12.0 (2023-08-24)

🧾 Release notes

Note: Version bump only for package gatsby-plugin-react-helmet

6.11.0 (2023-06-15)

🧾 Release notes

Note: Version bump only for package gatsby-plugin-react-helmet

... (truncated)

Commits

Updates gatsby-plugin-sharp from 3.14.3 to 3.15.0

Changelog

Sourced from gatsby-plugin-sharp's changelog.

Changelog: gatsby-plugin-sharp

All notable changes to this project will be documented in this file. See Conventional Commits for commit guidelines.

5.16.0 (2026-01-26)

🧾 Release notes

Bug Fixes

Other Changes

  • Revert "chore(release): Publish next pre-minor" (3539ec8)

5.15.0 (2025-08-27)

🧾 Release notes

Note: Version bump only for package gatsby-plugin-sharp

5.14.0 (2024-11-06)

🧾 Release notes

Bug Fixes

  • update dependency fs-extra to ^11.2.0 #38727 (cb33fe5)
  • update dependency async to ^3.2.5 for gatsby-plugin-sharp #38721 (a30811a)

5.13.1 (2024-01-23)

Note: Version bump only for package gatsby-plugin-sharp

5.13.0 (2023-12-18)

🧾 Release notes

Chores

5.12.3 (2023-10-26)

Note: Version bump only for package gatsby-plugin-sharp

5.12.2 (2023-10-20)

... (truncated)

Commits

Updates gatsby-plugin-styled-components from 4.14.0 to 4.15.0

Release notes

Sourced from gatsby-plugin-styled-components's releases.

v4.15

Welcome to gatsby@4.15.0 release (May 2022 #2)

Key highlights of this release:

Also check out notable bugfixes.

Bleeding Edge: Want to try new features as soon as possible? Install gatsby@next and let us know if you have any issues.

Previous release notes

[Full changelog][full-changelog]

Changelog

Sourced from gatsby-plugin-styled-components's changelog.

Changelog: gatsby-plugin-styled-components

All notable changes to this project will be documented in this file. See Conventional Commits for commit guidelines.

6.16.0 (2026-01-26)

🧾 Release notes

Features

Bug Fixes

Other Changes

  • Revert "chore(release): Publish next pre-minor" (3539ec8)

6.15.0 (2025-08-27)

🧾 Release notes

Note: Version bump only for package gatsby-plugin-styled-components

6.14.0 (2024-11-06)

🧾 Release notes

Note: Version bump only for package gatsby-plugin-styled-components

6.13.1 (2024-01-23)

Note: Version bump only for package gatsby-plugin-styled-components

6.13.0 (2023-12-18)

🧾 Release notes

Note: Version bump only for package gatsby-plugin-styled-components

6.12.0 (2023-08-24)

🧾 Release notes

Note: Version bump only for package gatsby-plugin-styled-components

6.11.0 (2023-06-15)

... (truncated)

Commits

Updates gatsby-plugin-typescript from 3.14.0 to 3.15.0

Changelog

Sourced from gatsby-plugin-typescript's changelog.

Changelog: gatsby-plugin-typescript

All notable changes to this project will be documented in this file. See Conventional Commits for commit guidelines.

5.16.0 (2026-01-26)

🧾 Release notes

Bug Fixes

Other Changes

  • Revert "chore(release): Publish next pre-minor" (3539ec8)

5.15.0 (2025-08-27)

🧾 Release notes

Note: Version bump only for package gatsby-plugin-typescript

5.14.0 (2024-11-06)

🧾 Release notes

Note: Version bump only for package gatsby-plugin-typescript

5.13.1 (2024-01-23)

Note: Version bump only for package gatsby-plugin-typescript

5.13.0 (2023-12-18)

🧾 Release notes

Note: Version bump only for package gatsby-plugin-typescript

5.12.1 (2023-10-26)

Note: Version bump only for package gatsby-plugin-typescript

5.12.0 (2023-08-24)

🧾 Release notes

Note: Version bump only for package gatsby-plugin-typescript

5.11.0 (2023-06-15)

... (truncated)

Commits

Updates gatsby-source-filesystem from 3.14.0 to 3.15.0

Changelog

Sourced from gatsby-source-filesystem's changelog.

Changelog: gatsby-source-filesystem

All notable changes to this project will be documented in this file. See Conventional Commits for commit guidelines.

5.16.0 (2026-01-26)

🧾 Release notes

Bug Fixes

Other Changes

  • Revert "chore(release): Publish next pre-minor" (3539ec8)

5.15.0 (2025-08-27)

🧾 Release notes

Bug Fixes

5.14.0 (2024-11-06)

🧾 Release notes

Bug Fixes

5.13.1 (2024-01-23)

Note: Version bump only for package gatsby-source-filesystem

5.13.0 (2023-12-18)

🧾 Release notes

Note: Version bump only for package gatsby-source-filesystem

5.12.1 (2023-10-26)

Note: Version bump only for package gatsby-source-filesystem

5.12.0 (2023-08-24)

🧾 Release notes

... (truncated)

Commits

Updates gatsby-source-google-spreadsheets from 3.0.8 to 3.0.9

Updates gatsby-transformer-sharp from 3.14.0 to 3.15.0

Changelog

Sourced from gatsby-transformer-sharp's changelog.

Changelog: gatsby-transformer-sharp

All notable changes to this project will be documented in this file. See Conventional Commits for commit guidelines.

5.16.0 (2026-01-26)

🧾 Release notes

Bug Fixes

Other Changes

  • Revert "chore(release): Publish next pre-minor" (3539ec8)

5.15.0 (2025-08-27)

🧾 Release notes

Note: Version bump only for package gatsby-transformer-sharp

5.14.0 (2024-11-06)

🧾 Release notes

Bug Fixes

5.13.1 (2024-01-23)

Note: Version bump only for package gatsby-transformer-sharp

5.13.0 (2023-12-18)

🧾 Release notes

Chores

5.12.3 (2023-10-26)

Note: Version bump only for package gatsby-transformer-sharp

5.12.2 (2023-10-20)

Note: Version bump only for package gatsby-transformer-sharp

... (truncated)

Commits

Updates grommet from 2.28.0 to 2.56.1

Release notes

Sourced from grommet's releases.

v2.56.1

Release notes:

General:

  • Fixed Cards rendering issue when no children prop is passed. (grommet/grommet#8005)
  • Fixed an issue with global.input.readOnly.background leaking onto non-input children of FormField. (grommet/grommet#7997)
  • Enhanced FormField so that screen readers automatically read error text when the invalid field is focused. (grommet/grommet#7931)

Beta - APIs are subject to change:

v2.56.0

General:

  • Added options.button.childrenPlain to Grommet options prop to allow for control whether children automatically force plain styling on Button. (#7993)
  • Enhanced Tabs accessibility keyboard support. (#7967)
  • Fixed an issue in Tabs by removing state variables from useLayoutEffect dependencies to prevent infinite loops. (#7912)

Beta - APIs are subject to change:

  • Added a new Stepper component. (#7963)
  • Added a new TimeInput component. (#7976)

v2.55.0

General:

  • Added children prop for fully custom Tag content and expanded the name and value props to allow a node to be passed. (#7952)
  • Enhanced Cards to have onOrder prop enabling drag-and-drop and keyboard (arrow key) reordering. Added sizeKey prop to allow individual cards to span multiple grid columns and/or rows. (#7959)
  • Fixed pad, margin, and other edge-size props generating incorrect responsive CSS overrides when a theme token is not defined for a given breakpoint. (#6969)
  • Fixed Calendar reference prop being ignored when used in controlled mode (reference + onReference). Also added activeDate as a second argument to onSelect to simplify dual-calendar range implementations. (#7915)
  • Fixed DataFilter filter controls not rendering for numeric properties that have only one unique value. (#7853)
  • Fixed Drop placement when a component is near the viewport edge. (#7954)
  • Fixed FileInput clearing a previously selected file when the user opens and then cancels the browser file picker dialog. (#7958)
  • Fixed resize handler crash in Grommet component when document.body is null, falling back to window.innerWidth. (#7923)
  • Fixed TextInput width prop being ignored when readOnly or readOnlyCopy is enabled. (#7919)

DateInput:

  • Fixed clearing typed values that fall outside calendarProps.bounds. The input now keeps the value, sets aria-invalid, and shows a validation error message when inside a Form. (#7957)
  • Fixed Calendar overflowing outside its constrained Drop container. (#7961)

TypeScript:

  • Added index signature to breakpointEdgeSize and global.edgeSize type declarations to support custom string size values. (#7953)

... (truncated)

Commits
Maintainer changes

This version was pushed to npm by jcfilben, a new releaser for grommet since your current version.


Updates grommet-icons from 4.8.0 to 4.14.0

Release notes

Sourced from grommet-icons's releases.

v4.14.0

  • Added GenAI and GenAIFill (#356)

v4.13.0

  • Added support for React 19. (#353, #354)

v4.12.4

  • Fixed an issue introduced in 4.12.2 to ensure window is defined before attempting to access it. (grommet/grommet-icons#349)

v4.12.3

v4.12.2

v4.12.1

v4.12.0

General:

  • Fixed bug to allow non-px size, such as rem and em, to work. (#325)

Added new icons (#322):

  • AdobeCreativeCloud
  • Apple Music
  • ApplePodcasts
  • GooglePay
  • Kubernetes
  • Meta
  • SamsungPay
  • Threads
  • Twitch
  • Venmo
  • WeChat
  • WhatsApp
  • X

Updated logo icons to latest (#323):

  • Edge
  • Facebook
  • GooglePlay
  • Medium
  • SoundCloud
  • StackOverflow

v4.11.0

  • Added HelpBook icon. (#315, #317)
  • Fixed issue where certain icons were getting incorrectly filled. (#310, #317)

v4.10.0

... (truncated)

Commits

---
updated-dependencies:
- dependency-name: babel-plugin-styled-components
  dependency-version: 2.3.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: npm-patch-minor
- dependency-name: date-fns
  dependency-version: 2.30.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: npm-patch-minor
- dependency-name: dotenv
  dependency-version: 16.6.1
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: npm-patch-minor
- dependency-name: gatsby
  dependency-version: 3.15.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: npm-patch-minor
- dependency-name: gatsby-plugin-manifest
  dependency-version: 3.15.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: npm-patch-minor
- dependency-name: gatsby-plugin-react-helmet
  dependency-version: 4.15.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: npm-patch-minor
- dependency-name: gatsby-plugin-sharp
  dependency-version: 3.15.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: npm-patch-minor
- dependency-name: gatsby-plugin-styled-components
  dependency-version: 4.15.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: npm-patch-minor
- dependency-name: gatsby-plugin-typescript
  dependency-version: 3.15.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: npm-patch-minor
- dependency-name: gatsby-source-filesystem
  dependency-version: 3.15.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: npm-patch-minor
- dependency-name: gatsby-source-google-spreadsheets
  dependency-version: 3.0.9
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: npm-patch-minor
- dependency-name: gatsby-transformer-sharp
  dependency-version: 3.15.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: npm-patch-minor
- dependency-name: grommet
  dependency-version: 2.56.1
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: npm-patch-minor
- dependency-name: grommet-icons
  dependency-version: 4.14.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: npm-patch-minor
- dependency-name: styled-components
  dependency-version: 5.3.11
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: npm-patch-minor
- dependency-name: "@types/styled-components"
  dependency-version: 5.1.36
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: npm-patch-minor
- dependency-name: "@types/react-helmet"
  dependency-version: 6.1.11
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: npm-patch-minor
- dependency-name: "@types/styled-components"
  dependency-version: 5.1.36
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: npm-patch-minor
- dependency-name: eslint-config-prettier
  dependency-version: 8.10.2
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: npm-patch-minor
- dependency-name: eslint-plugin-prettier
  dependency-version: 4.2.5
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: npm-patch-minor
- dependency-name: eslint-plugin-react
  dependency-version: 7.37.5
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: npm-patch-minor
- dependency-name: prettier
  dependency-version: 2.8.8
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: npm-patch-minor
- dependency-name: typescript
  dependency-version: 4.9.5
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: npm-patch-minor
...

Signed-off-by: dependabot[bot] <support@github.com>
Sign up for free to subscribe to this conversation on GitHub. Already have an account? Sign in.

Labels

dependencies Pull requests that update a dependency file javascript Pull requests that update javascript code

Projects

None yet

Development

Successfully merging this pull request may close these issues.

1 participant