Skip to content
This repository was archived by the owner on Nov 1, 2024. It is now read-only.

Bump the npm group with 21 updates #297

Closed
wants to merge 1 commit into from

Conversation

dependabot[bot]
Copy link
Contributor

@dependabot dependabot bot commented on behalf of github Mar 25, 2024

Bumps the npm group with 21 updates:

Package From To
@apollo/client 3.9.6 3.9.9
@mui/lab 5.0.0-alpha.167 5.0.0-alpha.169
@mui/material 5.15.12 5.15.14
@mui/x-tree-view 6.17.0 7.0.0
@navikt/aksel 6.1.1 6.3.3
@navikt/ds-css 6.1.1 6.3.3
@navikt/ds-react 6.1.1 6.3.3
@navikt/ds-tailwind 6.1.1 6.3.3
@next/bundle-analyzer 14.1.3 14.1.4
@uiw/react-md-editor 4.0.3 4.0.4
date-fns 3.4.0 3.6.0
next 14.1.3 14.1.4
react-hook-form 7.51.0 7.51.1
@types/lodash 4.14.202 4.17.0
@types/react 18.2.64 18.2.70
@typescript-eslint/eslint-plugin 7.1.1 7.3.1
@typescript-eslint/parser 7.1.1 7.3.1
autoprefixer 10.4.18 10.4.19
eslint-config-next 14.1.3 14.1.4
postcss 8.4.35 8.4.38
typescript 5.4.2 5.4.3

Updates @apollo/client from 3.9.6 to 3.9.9

Release notes

Sourced from @​apollo/client's releases.

v3.9.9

Patch Changes

  • #11696 466ef82 Thanks @​PiR1! - Immediately dispose of the queryRef if useBackgroundQuery unmounts before the auto dispose timeout kicks in.

v3.9.8

Patch Changes

  • #11706 8619bc7 Thanks @​jerelmiller! - Fix issue in all suspense hooks where returning an empty array after calling fetchMore would rerender the component with an empty list.

  • #11694 835d5f3 Thanks @​phryneas! - Expose setErrorMessageHandler from @apollo/client/dev entrypoint.

  • #11689 cb8ffe5 Thanks @​jerelmiller! - Fix issue where passing a new from option to useFragment would first render with the previous value before rerendering with the correct value.

  • #11713 642092c Thanks @​jerelmiller! - Fix issue where setting a default watchQuery option in the ApolloClient constructor could break startTransition when used with suspense hooks.

v3.9.7

Patch Changes

Changelog

Sourced from @​apollo/client's changelog.

3.9.9

Patch Changes

  • #11696 466ef82 Thanks @​PiR1! - Immediately dispose of the queryRef if useBackgroundQuery unmounts before the auto dispose timeout kicks in.

3.9.8

Patch Changes

  • #11706 8619bc7 Thanks @​jerelmiller! - Fix issue in all suspense hooks where returning an empty array after calling fetchMore would rerender the component with an empty list.

  • #11694 835d5f3 Thanks @​phryneas! - Expose setErrorMessageHandler from @apollo/client/dev entrypoint.

  • #11689 cb8ffe5 Thanks @​jerelmiller! - Fix issue where passing a new from option to useFragment would first render with the previous value before rerendering with the correct value.

  • #11713 642092c Thanks @​jerelmiller! - Fix issue where setting a default watchQuery option in the ApolloClient constructor could break startTransition when used with suspense hooks.

3.9.7

Patch Changes

Commits
  • 6393537 Version Packages (#11717)
  • cccb1b7 chore: update prerelease.yml (#11721)
  • 71969bc chore: remove unneeded repositories and owner config (#11720)
  • 466ef82 fix useBackgroundQuery: dispose ref after unmount and not used (#11696)
  • 8e5c66b Use bot token in prerelease workflows (#11716)
  • a0d114e Version Packages (#11695)
  • 642092c Fix issue where setting defaultOptions would sometimes break `startTransiti...
  • 8619bc7 Fix issue where an empty array returned from fetchMore would rerender with ...
  • 591c2b6 chore: skip prerelease versioning step if head commit contains version packag...
  • 835d5f3 expose setErrorMessageHandler (#11694)
  • Additional commits viewable in compare view

Updates @mui/lab from 5.0.0-alpha.167 to 5.0.0-alpha.169

Commits

Updates @mui/material from 5.15.12 to 5.15.14

Release notes

Sourced from @​mui/material's releases.

v5.15.14

Mar 19, 2024

A big thanks to the 15 contributors who made this release possible. This release was mostly about 🐛 bug fixes and 📚 documentation improvements.

@mui/[email protected]

@pigment-css/[email protected]

pigment-css/[email protected]

Docs

Core

... (truncated)

Changelog

Sourced from @​mui/material's changelog.

v5.15.14

Mar 18, 2024

A big thanks to the 15 contributors who made this release possible. This release was mostly about 🐛 bug fixes and 📚 documentation improvements.

@mui/[email protected]

@pigment-css/[email protected]

pigment-css/[email protected]

Docs

Core

... (truncated)

Commits

Updates @mui/x-tree-view from 6.17.0 to 7.0.0

Release notes

Sourced from @​mui/x-tree-view's releases.

v7.0.0

We're excited to announce the first v7 stable release! 🎉🚀

This is now the officially supported major version, where we'll keep rolling out new features, bug fixes, and improvements. Migration guides are available with a complete list of the breaking changes:

We'd like to offer a big thanks to the 12 contributors who made this release possible. Here are some highlights ✨:

Data Grid

Breaking changes

  • The density is a controlled prop now, if you were previously passing the density prop to the Data Grid, you will need to do one of the following:

    1. Move it to the initialState.density to initialize it.
     <DataGrid
    -  density="compact"
    +  initialState={{ density: "compact" }}
     />
    1. Move it to the state and use onDensityChange callback to update the density prop accordingly for it to work as expected.
    + const [density, setDensity] = React.useState<GridDensity>('compact');
     <DataGrid
    -  density="compact"
    +  density={density}
    +  onDensityChange={(newDensity) => setDensity(newDensity)}
     />
  • The selector gridDensityValueSelector was removed, use the gridDensitySelector instead.

  • The props rowBuffer and columnBuffer were renamed to rowBufferPx and columnBufferPx. Their value is now a pixel value rather than a number of items. Their default value is now 150.

... (truncated)

Changelog

Sourced from @​mui/x-tree-view's changelog.

v7.0.0

Mar 22, 2024

We're excited to announce the first v7 stable release! 🎉🚀

This is now the officially supported major version, where we'll keep rolling out new features, bug fixes, and improvements. Migration guides are available with a complete list of the breaking changes:

We'd like to offer a big thanks to the 12 contributors who made this release possible. Here are some highlights ✨:

Data Grid

Breaking changes

  • The density is a controlled prop now, if you were previously passing the density prop to the Data Grid, you will need to do one of the following:

    1. Move it to the initialState.density to initialize it.
     <DataGrid
    -  density="compact"
    +  initialState={{ density: "compact" }}
     />
    1. Move it to the state and use onDensityChange callback to update the density prop accordingly for it to work as expected.
    + const [density, setDensity] = React.useState<GridDensity>('compact');
     <DataGrid
    -  density="compact"
    +  density={density}
    +  onDensityChange={(newDensity) => setDensity(newDensity)}
     />
  • The selector gridDensityValueSelector was removed, use the gridDensitySelector instead.

... (truncated)

Commits
  • 2e5fbb3 v7.0.0 (#12523)
  • 2ec11b7 [core] Bump @mui/material peer dependency for all packages (#12516)
  • aea5ef7 [docs] Update links to v7 docs (#12500)
  • 22c774e Bump core (#12499)
  • eeb9603 [TreeView] Set focus on the focused Tree Item instead of the Tree View (#12226)
  • b438784 [TreeView] Update JSDoc of the ContentComponent prop to avoid using the wor...
  • a518d0a [TreeView] Rename nodeId to itemId (#12418)
  • e5e95f3 v7.0.0-beta.7 (#12445)
  • 684fca7 [DataGridPro] Render pinned and non-pinned column headers in one row (#12376)
  • 3d604b0 [TreeView] Clean the usage of the term "item" and "node" in API introduced du...
  • Additional commits viewable in compare view
Maintainer changes

This version was pushed to npm by noraleonte, a new releaser for @​mui/x-tree-view since your current version.


Updates @navikt/aksel from 6.1.1 to 6.3.3

Release notes

Sourced from @​navikt/aksel's releases.

Aksel @​6.3.0

@​navikt/ds-react

  • Allow Combobox options as objects to support separate display text and value (#2716)

Ny komponent FileUpload 🎉

https://aksel.nav.no/komponenter/core/fileupload

Håndterer opplasting av filer, Dropzone og fil-visning (#2504)

Changelog

Sourced from @​navikt/aksel's changelog.

6.3.3

Patch Changes

  • Updated dependencies []:
    • @​navikt/ds-css@​6.3.3

6.3.2

Patch Changes

  • Updated dependencies []:
    • @​navikt/ds-css@​6.3.2

6.3.1

Patch Changes

  • Updated dependencies []:
    • @​navikt/ds-css@​6.3.1

6.3.0

Patch Changes

6.2.0

Patch Changes

  • Updated dependencies []:
    • @​navikt/ds-css@​6.2.0
Commits

Updates @navikt/ds-css from 6.1.1 to 6.3.3

Changelog

Sourced from @​navikt/ds-css's changelog.

Changelog

6.3

@​navikt/ds-css

  • FileUpload: Ny komponent FileUpload for å håndtere opplasting av filer, Dropzone og fil-visning (#2504)

@​navikt/ds-react

  • FileUpload.Dropzone: Fiks feil med duplisert id (#2805)

  • useDatePicker: isInvalid-key i onValidate var hadde flipper boolean i noen tilfeller (#2809)

  • FileUpload: Fiks feil ved import av json (#2803)
  • FileUpload: Disabled dropzone stopper opplasting (#2798)
  • Allow Combobox options as objects to support separate display text and value (#2716)

  • FileUpload: Ny komponent FileUpload for å håndtere opplasting av filer, Dropzone og fil-visning (#2504)

6.2

@​navikt/ds-react

  • Select: Fjern 'multiple' fra SelectProps (#2782)

@​navikt/aksel-icons

  • Ikoner: Nytt ikon archive (#2772)

  • Ikoner: Nytt ikon opensource (#2787)

6.1

@​navikt/ds-css

  • Link: Fjern hover-farge (#2767)

  • Modal: Får nå fokus når åpnes i Safari (#2688)

@​navikt/ds-react

  • Modal: Fikser uønsket lukking ved klikk-og-dra mellom backdrop og modal (f.eks. ved markering av tekst) dersom closeOnBackdropClick er true. (#2752)

  • Modal: Endre title på lukkeknapp til bare 'Lukk' (#2688)

... (truncated)

Commits

Updates @navikt/ds-react from 6.1.1 to 6.3.3

Changelog

Sourced from @​navikt/ds-react's changelog.

Changelog

6.3

@​navikt/ds-css

  • FileUpload: Ny komponent FileUpload for å håndtere opplasting av filer, Dropzone og fil-visning (#2504)

@​navikt/ds-react

  • FileUpload.Dropzone: Fiks feil med duplisert id (#2805)

  • useDatePicker: isInvalid-key i onValidate var hadde flipper boolean i noen tilfeller (#2809)

  • FileUpload: Fiks feil ved import av json (#2803)
  • FileUpload: Disabled dropzone stopper opplasting (#2798)
  • Allow Combobox options as objects to support separate display text and value (#2716)

  • FileUpload: Ny komponent FileUpload for å håndtere opplasting av filer, Dropzone og fil-visning (#2504)

6.2

@​navikt/ds-react

  • Select: Fjern 'multiple' fra SelectProps (#2782)

@​navikt/aksel-icons

  • Ikoner: Nytt ikon archive (#2772)

  • Ikoner: Nytt ikon opensource (#2787)

6.1

@​navikt/ds-css

  • Link: Fjern hover-farge (#2767)

  • Modal: Får nå fokus når åpnes i Safari (#2688)

@​navikt/ds-react

  • Modal: Fikser uønsket lukking ved klikk-og-dra mellom backdrop og modal (f.eks. ved markering av tekst) dersom closeOnBackdropClick er true. (#2752)

  • Modal: Endre title på lukkeknapp til bare 'Lukk' (#2688)

... (truncated)

Commits

Updates @navikt/ds-tailwind from 6.1.1 to 6.3.3

Changelog

Sourced from @​navikt/ds-tailwind's changelog.

6.3.3

6.3.2

6.3.1

6.3.0

6.2.0

Commits

Updates @next/bundle-analyzer from 14.1.3 to 14.1.4

Release notes

Sourced from @​next/bundle-analyzer's releases.

v14.1.4

[!NOTE]
This release is backporting bug fixes. It does not include all pending features/changes on canary.

Core Changes

Bumps the npm group with 21 updates:

| Package | From | To |
| --- | --- | --- |
| [@apollo/client](https://github.com/apollographql/apollo-client) | `3.9.6` | `3.9.9` |
| [@mui/lab](https://github.com/mui/material-ui/tree/HEAD/packages/mui-lab) | `5.0.0-alpha.167` | `5.0.0-alpha.169` |
| [@mui/material](https://github.com/mui/material-ui/tree/HEAD/packages/mui-material) | `5.15.12` | `5.15.14` |
| [@mui/x-tree-view](https://github.com/mui/mui-x/tree/HEAD/packages/x-tree-view) | `6.17.0` | `7.0.0` |
| [@navikt/aksel](https://github.com/navikt/aksel/tree/HEAD/@navikt/aksel) | `6.1.1` | `6.3.3` |
| [@navikt/ds-css](https://github.com/navikt/aksel) | `6.1.1` | `6.3.3` |
| [@navikt/ds-react](https://github.com/navikt/aksel) | `6.1.1` | `6.3.3` |
| [@navikt/ds-tailwind](https://github.com/navikt/aksel/tree/HEAD/@navikt/core/tailwind) | `6.1.1` | `6.3.3` |
| [@next/bundle-analyzer](https://github.com/vercel/next.js/tree/HEAD/packages/next-bundle-analyzer) | `14.1.3` | `14.1.4` |
| [@uiw/react-md-editor](https://github.com/uiwjs/react-md-editor) | `4.0.3` | `4.0.4` |
| [date-fns](https://github.com/date-fns/date-fns) | `3.4.0` | `3.6.0` |
| [next](https://github.com/vercel/next.js) | `14.1.3` | `14.1.4` |
| [react-hook-form](https://github.com/react-hook-form/react-hook-form) | `7.51.0` | `7.51.1` |
| [@types/lodash](https://github.com/DefinitelyTyped/DefinitelyTyped/tree/HEAD/types/lodash) | `4.14.202` | `4.17.0` |
| [@types/react](https://github.com/DefinitelyTyped/DefinitelyTyped/tree/HEAD/types/react) | `18.2.64` | `18.2.70` |
| [@typescript-eslint/eslint-plugin](https://github.com/typescript-eslint/typescript-eslint/tree/HEAD/packages/eslint-plugin) | `7.1.1` | `7.3.1` |
| [@typescript-eslint/parser](https://github.com/typescript-eslint/typescript-eslint/tree/HEAD/packages/parser) | `7.1.1` | `7.3.1` |
| [autoprefixer](https://github.com/postcss/autoprefixer) | `10.4.18` | `10.4.19` |
| [eslint-config-next](https://github.com/vercel/next.js/tree/HEAD/packages/eslint-config-next) | `14.1.3` | `14.1.4` |
| [postcss](https://github.com/postcss/postcss) | `8.4.35` | `8.4.38` |
| [typescript](https://github.com/Microsoft/TypeScript) | `5.4.2` | `5.4.3` |


Updates `@apollo/client` from 3.9.6 to 3.9.9
- [Release notes](https://github.com/apollographql/apollo-client/releases)
- [Changelog](https://github.com/apollographql/apollo-client/blob/main/CHANGELOG.md)
- [Commits](apollographql/apollo-client@v3.9.6...v3.9.9)

Updates `@mui/lab` from 5.0.0-alpha.167 to 5.0.0-alpha.169
- [Release notes](https://github.com/mui/material-ui/releases)
- [Changelog](https://github.com/mui/material-ui/blob/next/CHANGELOG.md)
- [Commits](https://github.com/mui/material-ui/commits/HEAD/packages/mui-lab)

Updates `@mui/material` from 5.15.12 to 5.15.14
- [Release notes](https://github.com/mui/material-ui/releases)
- [Changelog](https://github.com/mui/material-ui/blob/next/CHANGELOG.md)
- [Commits](https://github.com/mui/material-ui/commits/v5.15.14/packages/mui-material)

Updates `@mui/x-tree-view` from 6.17.0 to 7.0.0
- [Release notes](https://github.com/mui/mui-x/releases)
- [Changelog](https://github.com/mui/mui-x/blob/master/CHANGELOG.md)
- [Commits](https://github.com/mui/mui-x/commits/v7.0.0/packages/x-tree-view)

Updates `@navikt/aksel` from 6.1.1 to 6.3.3
- [Release notes](https://github.com/navikt/aksel/releases)
- [Changelog](https://github.com/navikt/aksel/blob/main/@navikt/aksel/CHANGELOG.md)
- [Commits](https://github.com/navikt/aksel/commits/@navikt/[email protected]/@navikt/aksel)

Updates `@navikt/ds-css` from 6.1.1 to 6.3.3
- [Release notes](https://github.com/navikt/aksel/releases)
- [Changelog](https://github.com/navikt/aksel/blob/main/CHANGELOG.md)
- [Commits](https://github.com/navikt/aksel/compare/@navikt/[email protected]...@navikt/[email protected])

Updates `@navikt/ds-react` from 6.1.1 to 6.3.3
- [Release notes](https://github.com/navikt/aksel/releases)
- [Changelog](https://github.com/navikt/aksel/blob/main/CHANGELOG.md)
- [Commits](https://github.com/navikt/aksel/compare/@navikt/[email protected]...@navikt/[email protected])

Updates `@navikt/ds-tailwind` from 6.1.1 to 6.3.3
- [Release notes](https://github.com/navikt/aksel/releases)
- [Changelog](https://github.com/navikt/aksel/blob/main/@navikt/core/tailwind/CHANGELOG.md)
- [Commits](https://github.com/navikt/aksel/commits/@navikt/[email protected]/@navikt/core/tailwind)

Updates `@next/bundle-analyzer` from 14.1.3 to 14.1.4
- [Release notes](https://github.com/vercel/next.js/releases)
- [Changelog](https://github.com/vercel/next.js/blob/canary/release.js)
- [Commits](https://github.com/vercel/next.js/commits/v14.1.4/packages/next-bundle-analyzer)

Updates `@uiw/react-md-editor` from 4.0.3 to 4.0.4
- [Release notes](https://github.com/uiwjs/react-md-editor/releases)
- [Commits](uiwjs/react-md-editor@v4.0.3...v4.0.4)

Updates `date-fns` from 3.4.0 to 3.6.0
- [Release notes](https://github.com/date-fns/date-fns/releases)
- [Changelog](https://github.com/date-fns/date-fns/blob/main/CHANGELOG.md)
- [Commits](date-fns/date-fns@v3.4.0...v3.6.0)

Updates `next` from 14.1.3 to 14.1.4
- [Release notes](https://github.com/vercel/next.js/releases)
- [Changelog](https://github.com/vercel/next.js/blob/canary/release.js)
- [Commits](vercel/next.js@v14.1.3...v14.1.4)

Updates `react-hook-form` from 7.51.0 to 7.51.1
- [Release notes](https://github.com/react-hook-form/react-hook-form/releases)
- [Changelog](https://github.com/react-hook-form/react-hook-form/blob/master/CHANGELOG.md)
- [Commits](react-hook-form/react-hook-form@v7.51.0...v7.51.1)

Updates `@types/lodash` from 4.14.202 to 4.17.0
- [Release notes](https://github.com/DefinitelyTyped/DefinitelyTyped/releases)
- [Commits](https://github.com/DefinitelyTyped/DefinitelyTyped/commits/HEAD/types/lodash)

Updates `@types/react` from 18.2.64 to 18.2.70
- [Release notes](https://github.com/DefinitelyTyped/DefinitelyTyped/releases)
- [Commits](https://github.com/DefinitelyTyped/DefinitelyTyped/commits/HEAD/types/react)

Updates `@typescript-eslint/eslint-plugin` from 7.1.1 to 7.3.1
- [Release notes](https://github.com/typescript-eslint/typescript-eslint/releases)
- [Changelog](https://github.com/typescript-eslint/typescript-eslint/blob/main/packages/eslint-plugin/CHANGELOG.md)
- [Commits](https://github.com/typescript-eslint/typescript-eslint/commits/v7.3.1/packages/eslint-plugin)

Updates `@typescript-eslint/parser` from 7.1.1 to 7.3.1
- [Release notes](https://github.com/typescript-eslint/typescript-eslint/releases)
- [Changelog](https://github.com/typescript-eslint/typescript-eslint/blob/main/packages/parser/CHANGELOG.md)
- [Commits](https://github.com/typescript-eslint/typescript-eslint/commits/v7.3.1/packages/parser)

Updates `autoprefixer` from 10.4.18 to 10.4.19
- [Release notes](https://github.com/postcss/autoprefixer/releases)
- [Changelog](https://github.com/postcss/autoprefixer/blob/main/CHANGELOG.md)
- [Commits](postcss/autoprefixer@10.4.18...10.4.19)

Updates `eslint-config-next` from 14.1.3 to 14.1.4
- [Release notes](https://github.com/vercel/next.js/releases)
- [Changelog](https://github.com/vercel/next.js/blob/canary/release.js)
- [Commits](https://github.com/vercel/next.js/commits/v14.1.4/packages/eslint-config-next)

Updates `postcss` from 8.4.35 to 8.4.38
- [Release notes](https://github.com/postcss/postcss/releases)
- [Changelog](https://github.com/postcss/postcss/blob/main/CHANGELOG.md)
- [Commits](postcss/postcss@8.4.35...8.4.38)

Updates `typescript` from 5.4.2 to 5.4.3
- [Release notes](https://github.com/Microsoft/TypeScript/releases)
- [Changelog](https://github.com/microsoft/TypeScript/blob/main/azure-pipelines.release.yml)
- [Commits](microsoft/TypeScript@v5.4.2...v5.4.3)

---
updated-dependencies:
- dependency-name: "@apollo/client"
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: npm
- dependency-name: "@mui/lab"
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: npm
- dependency-name: "@mui/material"
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: npm
- dependency-name: "@mui/x-tree-view"
  dependency-type: direct:production
  update-type: version-update:semver-major
  dependency-group: npm
- dependency-name: "@navikt/aksel"
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: npm
- dependency-name: "@navikt/ds-css"
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: npm
- dependency-name: "@navikt/ds-react"
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: npm
- dependency-name: "@navikt/ds-tailwind"
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: npm
- dependency-name: "@next/bundle-analyzer"
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: npm
- dependency-name: "@uiw/react-md-editor"
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: npm
- dependency-name: date-fns
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: npm
- dependency-name: next
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: npm
- dependency-name: react-hook-form
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: npm
- dependency-name: "@types/lodash"
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: npm
- dependency-name: "@types/react"
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: npm
- dependency-name: "@typescript-eslint/eslint-plugin"
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: npm
- dependency-name: "@typescript-eslint/parser"
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: npm
- dependency-name: autoprefixer
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: npm
- dependency-name: eslint-config-next
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: npm
- dependency-name: postcss
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: npm
- dependency-name: typescript
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: npm
...

Signed-off-by: dependabot[bot] <[email protected]>
@dependabot dependabot bot added dependencies Pull requests that update a dependency file javascript Pull requests that update Javascript code labels Mar 25, 2024
Copy link
Contributor Author

dependabot bot commented on behalf of github Apr 1, 2024

Looks like these dependencies are updatable in another way, so this is no longer needed.

@dependabot dependabot bot closed this Apr 1, 2024
@dependabot dependabot bot deleted the dependabot/npm_and_yarn/npm-4c8635d676 branch April 1, 2024 13:33
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.

0 participants