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

Bump the patch-minor-dependencies group with 18 updates #676

Conversation

dependabot[bot]
Copy link
Contributor

@dependabot dependabot bot commented on behalf of github Dec 11, 2023

Bumps the patch-minor-dependencies group with 18 updates:

Package From To
esbuild 0.19.8 0.19.9
prettier 3.1.0 3.1.1
turbo 1.11.0 1.11.1
@fontsource-variable/mulish 5.0.16 5.0.17
@storybook/addon-a11y 7.6.3 7.6.4
@storybook/addon-storysource 7.6.3 7.6.4
@storybook/addon-actions 7.6.3 7.6.4
@storybook/addon-essentials 7.6.3 7.6.4
@storybook/addon-links 7.6.3 7.6.4
@storybook/cli 7.6.3 7.6.4
@storybook/react 7.6.3 7.6.4
@storybook/react-webpack5 7.6.3 7.6.4
@types/react 18.2.42 18.2.43
chromatic 10.0.0 10.1.0
storybook 7.6.3 7.6.4
typescript 5.3.2 5.3.3
@fontsource/mulish 5.0.15 5.0.16
material-symbols 0.14.1 0.14.2

Updates esbuild from 0.19.8 to 0.19.9

Release notes

Sourced from esbuild's releases.

v0.19.9

  • Add support for transforming new CSS gradient syntax for older browsers

    The specification called CSS Images Module Level 4 introduces new CSS gradient syntax for customizing how the browser interpolates colors in between color stops. You can now control the color space that the interpolation happens in as well as (for "polar" color spaces) control whether hue angle interpolation happens clockwise or counterclockwise. You can read more about this in Mozilla's blog post about new CSS gradient features.

    With this release, esbuild will now automatically transform this syntax for older browsers in the target list. For example, here's a gradient that should appear as a rainbow in a browser that supports this new syntax:

    /* Original code */
    .rainbow-gradient {
      width: 100px;
      height: 100px;
      background: linear-gradient(in hsl longer hue, #7ff, #77f);
    }
    /* New output (with --target=chrome99) */
    .rainbow-gradient {
    width: 100px;
    height: 100px;
    background:
    linear-gradient(
    #77ffff,
    #77ffaa 12.5%,
    #77ff80 18.75%,
    #84ff77 21.88%,
    #99ff77 25%,
    #eeff77 37.5%,
    #fffb77 40.62%,
    #ffe577 43.75%,
    #ffbb77 50%,
    #ff9077 56.25%,
    #ff7b77 59.38%,
    #ff7788 62.5%,
    #ff77dd 75%,
    #ff77f2 78.12%,
    #f777ff 81.25%,
    #cc77ff 87.5%,
    #7777ff);
    }

    You can now use this syntax in your CSS source code and esbuild will automatically convert it to an equivalent gradient for older browsers. In addition, esbuild will now also transform "double position" and "transition hint" syntax for older browsers as appropriate:

    /* Original code */
    .stripes {
      width: 100px;
      height: 100px;
      background: linear-gradient(#e65 33%, #ff2 33% 67%, #99e 67%);
    }

... (truncated)

Changelog

Sourced from esbuild's changelog.

0.19.9

  • Add support for transforming new CSS gradient syntax for older browsers

    The specification called CSS Images Module Level 4 introduces new CSS gradient syntax for customizing how the browser interpolates colors in between color stops. You can now control the color space that the interpolation happens in as well as (for "polar" color spaces) control whether hue angle interpolation happens clockwise or counterclockwise. You can read more about this in Mozilla's blog post about new CSS gradient features.

    With this release, esbuild will now automatically transform this syntax for older browsers in the target list. For example, here's a gradient that should appear as a rainbow in a browser that supports this new syntax:

    /* Original code */
    .rainbow-gradient {
      width: 100px;
      height: 100px;
      background: linear-gradient(in hsl longer hue, #7ff, #77f);
    }
    /* New output (with --target=chrome99) */
    .rainbow-gradient {
    width: 100px;
    height: 100px;
    background:
    linear-gradient(
    #77ffff,
    #77ffaa 12.5%,
    #77ff80 18.75%,
    #84ff77 21.88%,
    #99ff77 25%,
    #eeff77 37.5%,
    #fffb77 40.62%,
    #ffe577 43.75%,
    #ffbb77 50%,
    #ff9077 56.25%,
    #ff7b77 59.38%,
    #ff7788 62.5%,
    #ff77dd 75%,
    #ff77f2 78.12%,
    #f777ff 81.25%,
    #cc77ff 87.5%,
    #7777ff);
    }

    You can now use this syntax in your CSS source code and esbuild will automatically convert it to an equivalent gradient for older browsers. In addition, esbuild will now also transform "double position" and "transition hint" syntax for older browsers as appropriate:

    /* Original code */
    .stripes {
      width: 100px;
      height: 100px;
      background: linear-gradient(#e65 33%, #ff2 33% 67%, #99e 67%);

... (truncated)

Commits
  • 9edc9d4 publish 0.19.9 to npm
  • 791619e release notes: link to gradient tests
  • 83b4171 css: implement lowering of gradient syntax
  • 4a3b265 css: fix calc() inlining whitespace bug
  • 90989ec remove a stray log statement
  • f260285 css gradients: handle color transition hints
  • e4c55af css gradients: lower colors, fix double positions
  • a389c52 css: add lab() + lch() + oklab() + oklch()
  • b837f21 css: avoid overwriting manual fallback colors
  • 824ede6 css: simplify color() duplication fallback logic
  • Additional commits viewable in compare view

Updates prettier from 3.1.0 to 3.1.1

Release notes

Sourced from prettier's releases.

3.1.1

🔗 Changelog

Changelog

Sourced from prettier's changelog.

3.1.1

diff

Fix config file search (#15363 by @​fisker)

Previously, we start search for config files from the filePath as a directory, if it happened to be a directory and contains config file, it will be used by mistake.

├─ .prettierrc
└─ test.js         (A directory)
  └─ .prettierrc
// Prettier 3.1.0
await prettier.resolveConfigFile(new URL("./test.js", import.meta.url));
// <CWD>/test.js/.prettierrc
// Prettier 3.1.1
await prettier.resolveConfigFile(new URL("./test.js", import.meta.url));
// <CWD>/.prettierrc

Skip explicitly passed symbolic links with --no-error-on-unmatched-pattern (#15533 by @​sanmai-NL)

Since Prettier v3, we stopped following symbolic links, however in some use cases, the symbolic link patterns can't be filtered out, and there is no way to prevent Prettier from throwing errors.

In Prettier 3.1.1, you can use --no-error-on-unmatched-pattern to simply skip symbolic links.

Consistently use tabs in ternaries when useTabs is true (#15662 by @​auvred)

// Input
aaaaaaaaaaaaaaa
	? bbbbbbbbbbbbbbbbbb
	: ccccccccccccccc
	  ? ddddddddddddddd
	  : eeeeeeeeeeeeeee
	    ? fffffffffffffff
	    : gggggggggggggggg;
// Prettier 3.1.0
aaaaaaaaaaaaaaa
? bbbbbbbbbbbbbbbbbb
: ccccccccccccccc
? ddddddddddddddd
: eeeeeeeeeeeeeee
? fffffffffffffff
</tr></table>

... (truncated)

Commits
  • b86701d Release 3.1.1
  • c97480c Use attributes instead of deprecated assertions (#15758)
  • 0d1ffb3 Consistently use tabs in ternaries when useTabs is true (#15662)
  • 5f7aedc fix example to fit the actual experimentalTernaries behaviour (#15747)
  • 1e30f66 Remove claim, untrue since over 5 years ago, that cursorOffset is incompatibl...
  • 39e4e7b Add cursorOffset to Playground (#15751)
  • 8e816ad Allow skipping symlink patterns, to avoid raising a fault (#15533)
  • 2ca5d75 Fix expect call in dts test (#15766)
  • 15c7428 chore(deps): update dependency flow-parser to v0.223.3 (#15760)
  • d3b3d4f chore(deps): update dependency hermes-parser to v0.18.0 (#15761)
  • Additional commits viewable in compare view

Updates turbo from 1.11.0 to 1.11.1

Release notes

Sourced from turbo's releases.

Turborepo v1.11.1

What's Changed

create-turbo

Examples

Changelog

Full Changelog: vercel/turborepo@v1.11.0...v1.11.1

Turborepo v1.11.1-canary.0

What's Changed

create-turbo

Examples

Changelog

Full Changelog: vercel/turborepo@v1.11.0...v1.11.1-canary.0

Commits

Updates @fontsource-variable/mulish from 5.0.16 to 5.0.17

Commits

Updates @storybook/addon-a11y from 7.6.3 to 7.6.4

Release notes

Sourced from @​storybook/addon-a11y's releases.

v7.6.4

7.6.4

Changelog

Sourced from @​storybook/addon-a11y's changelog.

7.6.4

Commits

Updates @storybook/addon-storysource from 7.6.3 to 7.6.4

Release notes

Sourced from @​storybook/addon-storysource's releases.

v7.6.4

7.6.4

Changelog

Sourced from @​storybook/addon-storysource's changelog.

7.6.4

Commits
  • 1ba5416 Bump version from "7.6.3" to "7.6.4" [skip ci]
  • d223145 Merge pull request #25098 from storybookjs/valentin/fix-csf-loader-for-angula...
  • See full diff in compare view

Updates @storybook/addon-actions from 7.6.3 to 7.6.4

Release notes

Sourced from @​storybook/addon-actions's releases.

v7.6.4

7.6.4

Changelog

Sourced from @​storybook/addon-actions's changelog.

7.6.4

Commits

Updates @storybook/addon-essentials from 7.6.3 to 7.6.4

Release notes

Sourced from @​storybook/addon-essentials's releases.

v7.6.4

7.6.4

Changelog

Sourced from @​storybook/addon-essentials's changelog.

7.6.4

Commits

Updates @storybook/addon-links from 7.6.3 to 7.6.4

Release notes

Sourced from @​storybook/addon-links's releases.

v7.6.4

7.6.4

Changelog

Sourced from @​storybook/addon-links's changelog.

7.6.4

Commits

Updates @storybook/cli from 7.6.3 to 7.6.4

Release notes

Sourced from @​storybook/cli's releases.

v7.6.4

7.6.4

Changelog

Sourced from @​storybook/cli's changelog.

7.6.4

Commits
  • 1ba5416 Bump version from "7.6.3" to "7.6.4" [skip ci]
  • 692cf67 Remove 8.0 sandbox removals from CI
  • See full diff in compare view

Updates @storybook/react from 7.6.3 to 7.6.4

Release notes

Sourced from @​storybook/react's releases.

v7.6.4

7.6.4

Changelog

Sourced from @​storybook/react's changelog.

7.6.4

Commits

Updates @storybook/react-webpack5 from 7.6.3 to 7.6.4

Release notes

Sourced from @​storybook/react-webpack5's releases.

v7.6.4

7.6.4

Changelog

Sourced from @​storybook/react-webpack5's changelog.

7.6.4

Commits

Updates @types/react from 18.2.42 to 18.2.43

Commits

Updates chromatic from 10.0.0 to 10.1.0

Release notes

Sourced from chromatic's releases.

v10.1.0

🚀 Enhancement

Authors: 2

Changelog

Sourced from chromatic's changelog.

v10.1.0 (Thu Dec 07 2023)

🚀 Enhancement

Authors: 2


Commits
  • 9c4ed84 Bump version to: 10.1.0 [skip ci]
  • 3713e6e Update CHANGELOG.md [skip ci]
  • 4d890d1 Merge pull request #866 from chromaui/tom/ap-3123-squashrebase-merge-detectio...
  • 026df68 remove erroneous comment
  • b9cf522 tweak tests
  • 84f11f8 allow for commits that no longer exist in the history
  • ac447d0 add new test
  • eb76c00 fix name
  • 194e9a7 add some tests
  • 7bc27a9 limit amount sent in API request
  • Additional commits viewable in compare view

Updates storybook from 7.6.3 to 7.6.4

Release notes

Sourced from storybook's releases.

v7.6.4

7.6.4

Changelog

Sourced from storybook's changelog.

7.6.4

Commits
  • 1ba5416 Bump version from "7.6.3" to "7.6.4" [skip ci]
  • 692cf67 Remove 8.0 sandbox removals from CI
  • See full diff in compare view

Updates typescript from 5.3.2 to 5.3.3

Release notes

Sourced from typescript's releases.

TypeScript 5.3.3

For release notes, check out the release announcement.

For the complete list of fixed issues, check out the

Downloads are available on:

Commits

Updates @fontsource/mulish from 5.0.15 to 5.0.16

Commits

Updates material-symbols from 0.14.1 to 0.14.2

Commits

Dependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually by commenting @dependabot rebase.


Dependabot commands and options

You can trigger Dependabot actions by commenting on this PR:

  • @dependabot rebase will rebase this PR
  • @dependabot recreate will recreate this PR, overwriting any edits that have been made to it
  • @dependabot merge will merge this PR after your CI passes on it
  • @dependabot squash and merge will squash and merge this PR after your CI passes on it
  • @dependabot cancel merge will cancel a previously requested merge and block automerging
  • @dependabot reopen will reopen this PR if it is closed
  • @dependabot close will close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually
  • @dependabot show <dependency name> ignore conditions will show all of the ignore conditions of the specified dependency
  • @dependabot ignore <dependency name> major version will close this group update PR and stop Dependabot creating any more for the specific dependency's major version (unless you unignore this specific dependency's major version or upgrade to it yourself)
  • @dependabot ignore <dependency name> minor version will close this group update PR and stop Dependabot creating any more for the specific dependency's minor version (unless you unignore this specific dependency's minor version or upgrade to it yourself)
  • @dependabot ignore <dependency name> will close this group update PR and stop Dependabot creating any more for the specific dependency (unless you unignore this specific dependency or upgrade to it yourself)
  • @dependabot unignore <dependency name> will remove all of the ignore conditions of the specified dependency
  • @dependabot unignore <dependency name> <ignore condition> will remove the ignore condition of the specified dependency and ignore conditions

Bumps the patch-minor-dependencies group with 18 updates:

| Package | From | To |
| --- | --- | --- |
| [esbuild](https://github.com/evanw/esbuild) | `0.19.8` | `0.19.9` |
| [prettier](https://github.com/prettier/prettier) | `3.1.0` | `3.1.1` |
| [turbo](https://github.com/vercel/turbo) | `1.11.0` | `1.11.1` |
| [@fontsource-variable/mulish](https://github.com/fontsource/font-files/tree/HEAD/fonts/variable/mulish) | `5.0.16` | `5.0.17` |
| [@storybook/addon-a11y](https://github.com/storybookjs/storybook/tree/HEAD/code/addons/a11y) | `7.6.3` | `7.6.4` |
| [@storybook/addon-storysource](https://github.com/storybookjs/storybook/tree/HEAD/code/addons/storysource) | `7.6.3` | `7.6.4` |
| [@storybook/addon-actions](https://github.com/storybookjs/storybook/tree/HEAD/code/addons/actions) | `7.6.3` | `7.6.4` |
| [@storybook/addon-essentials](https://github.com/storybookjs/storybook/tree/HEAD/code/addons/essentials) | `7.6.3` | `7.6.4` |
| [@storybook/addon-links](https://github.com/storybookjs/storybook/tree/HEAD/code/addons/links) | `7.6.3` | `7.6.4` |
| [@storybook/cli](https://github.com/storybookjs/storybook/tree/HEAD/code/lib/cli) | `7.6.3` | `7.6.4` |
| [@storybook/react](https://github.com/storybookjs/storybook/tree/HEAD/code/renderers/react) | `7.6.3` | `7.6.4` |
| [@storybook/react-webpack5](https://github.com/storybookjs/storybook/tree/HEAD/code/frameworks/react-webpack5) | `7.6.3` | `7.6.4` |
| [@types/react](https://github.com/DefinitelyTyped/DefinitelyTyped/tree/HEAD/types/react) | `18.2.42` | `18.2.43` |
| [chromatic](https://github.com/chromaui/chromatic-cli) | `10.0.0` | `10.1.0` |
| [storybook](https://github.com/storybookjs/storybook/tree/HEAD/code/lib/cli) | `7.6.3` | `7.6.4` |
| [typescript](https://github.com/Microsoft/TypeScript) | `5.3.2` | `5.3.3` |
| [@fontsource/mulish](https://github.com/fontsource/font-files/tree/HEAD/fonts/google/mulish) | `5.0.15` | `5.0.16` |
| [material-symbols](https://github.com/marella/material-symbols/tree/HEAD/material-symbols) | `0.14.1` | `0.14.2` |


Updates `esbuild` from 0.19.8 to 0.19.9
- [Release notes](https://github.com/evanw/esbuild/releases)
- [Changelog](https://github.com/evanw/esbuild/blob/main/CHANGELOG.md)
- [Commits](evanw/esbuild@v0.19.8...v0.19.9)

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

Updates `turbo` from 1.11.0 to 1.11.1
- [Release notes](https://github.com/vercel/turbo/releases)
- [Changelog](https://github.com/vercel/turbo/blob/main/release.md)
- [Commits](vercel/turborepo@v1.11.0...v1.11.1)

Updates `@fontsource-variable/mulish` from 5.0.16 to 5.0.17
- [Changelog](https://github.com/fontsource/font-files/blob/main/fonts/variable/mulish/CHANGELOG.md)
- [Commits](https://github.com/fontsource/font-files/commits/HEAD/fonts/variable/mulish)

Updates `@storybook/addon-a11y` from 7.6.3 to 7.6.4
- [Release notes](https://github.com/storybookjs/storybook/releases)
- [Changelog](https://github.com/storybookjs/storybook/blob/next/CHANGELOG.md)
- [Commits](https://github.com/storybookjs/storybook/commits/v7.6.4/code/addons/a11y)

Updates `@storybook/addon-storysource` from 7.6.3 to 7.6.4
- [Release notes](https://github.com/storybookjs/storybook/releases)
- [Changelog](https://github.com/storybookjs/storybook/blob/next/CHANGELOG.md)
- [Commits](https://github.com/storybookjs/storybook/commits/v7.6.4/code/addons/storysource)

Updates `@storybook/addon-actions` from 7.6.3 to 7.6.4
- [Release notes](https://github.com/storybookjs/storybook/releases)
- [Changelog](https://github.com/storybookjs/storybook/blob/next/CHANGELOG.md)
- [Commits](https://github.com/storybookjs/storybook/commits/v7.6.4/code/addons/actions)

Updates `@storybook/addon-essentials` from 7.6.3 to 7.6.4
- [Release notes](https://github.com/storybookjs/storybook/releases)
- [Changelog](https://github.com/storybookjs/storybook/blob/next/CHANGELOG.md)
- [Commits](https://github.com/storybookjs/storybook/commits/v7.6.4/code/addons/essentials)

Updates `@storybook/addon-links` from 7.6.3 to 7.6.4
- [Release notes](https://github.com/storybookjs/storybook/releases)
- [Changelog](https://github.com/storybookjs/storybook/blob/next/CHANGELOG.md)
- [Commits](https://github.com/storybookjs/storybook/commits/v7.6.4/code/addons/links)

Updates `@storybook/cli` from 7.6.3 to 7.6.4
- [Release notes](https://github.com/storybookjs/storybook/releases)
- [Changelog](https://github.com/storybookjs/storybook/blob/next/CHANGELOG.md)
- [Commits](https://github.com/storybookjs/storybook/commits/v7.6.4/code/lib/cli)

Updates `@storybook/react` from 7.6.3 to 7.6.4
- [Release notes](https://github.com/storybookjs/storybook/releases)
- [Changelog](https://github.com/storybookjs/storybook/blob/next/CHANGELOG.md)
- [Commits](https://github.com/storybookjs/storybook/commits/v7.6.4/code/renderers/react)

Updates `@storybook/react-webpack5` from 7.6.3 to 7.6.4
- [Release notes](https://github.com/storybookjs/storybook/releases)
- [Changelog](https://github.com/storybookjs/storybook/blob/next/CHANGELOG.md)
- [Commits](https://github.com/storybookjs/storybook/commits/v7.6.4/code/frameworks/react-webpack5)

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

Updates `chromatic` from 10.0.0 to 10.1.0
- [Release notes](https://github.com/chromaui/chromatic-cli/releases)
- [Changelog](https://github.com/chromaui/chromatic-cli/blob/main/CHANGELOG.md)
- [Commits](chromaui/chromatic-cli@v10.0.0...v10.1.0)

Updates `storybook` from 7.6.3 to 7.6.4
- [Release notes](https://github.com/storybookjs/storybook/releases)
- [Changelog](https://github.com/storybookjs/storybook/blob/next/CHANGELOG.md)
- [Commits](https://github.com/storybookjs/storybook/commits/v7.6.4/code/lib/cli)

Updates `typescript` from 5.3.2 to 5.3.3
- [Release notes](https://github.com/Microsoft/TypeScript/releases)
- [Commits](microsoft/TypeScript@v5.3.2...v5.3.3)

Updates `@fontsource/mulish` from 5.0.15 to 5.0.16
- [Changelog](https://github.com/fontsource/font-files/blob/main/fonts/google/mulish/CHANGELOG.md)
- [Commits](https://github.com/fontsource/font-files/commits/HEAD/fonts/google/mulish)

Updates `material-symbols` from 0.14.1 to 0.14.2
- [Release notes](https://github.com/marella/material-symbols/releases)
- [Commits](https://github.com/marella/material-symbols/commits/v0.14.2/material-symbols)

---
updated-dependencies:
- dependency-name: esbuild
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: patch-minor-dependencies
- dependency-name: prettier
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: patch-minor-dependencies
- dependency-name: turbo
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: patch-minor-dependencies
- dependency-name: "@fontsource-variable/mulish"
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: patch-minor-dependencies
- dependency-name: "@storybook/addon-a11y"
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: patch-minor-dependencies
- dependency-name: "@storybook/addon-storysource"
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: patch-minor-dependencies
- dependency-name: "@storybook/addon-actions"
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: patch-minor-dependencies
- dependency-name: "@storybook/addon-essentials"
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: patch-minor-dependencies
- dependency-name: "@storybook/addon-links"
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: patch-minor-dependencies
- dependency-name: "@storybook/cli"
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: patch-minor-dependencies
- dependency-name: "@storybook/react"
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: patch-minor-dependencies
- dependency-name: "@storybook/react-webpack5"
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: patch-minor-dependencies
- dependency-name: "@types/react"
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: patch-minor-dependencies
- dependency-name: chromatic
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: patch-minor-dependencies
- dependency-name: storybook
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: patch-minor-dependencies
- dependency-name: typescript
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: patch-minor-dependencies
- dependency-name: "@fontsource/mulish"
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: patch-minor-dependencies
- dependency-name: material-symbols
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: patch-minor-dependencies
...

Signed-off-by: dependabot[bot] <support@github.com>
@dependabot dependabot bot added the dependencies Pull requests that update a dependency file label Dec 11, 2023
Copy link

changeset-bot bot commented Dec 11, 2023

🦋 Changeset detected

Latest commit: dcf2cac

The changes in this PR will be included in the next version bump.

This PR includes changesets to release 1 package
Name Type
@kvib/react Patch

Not sure what this means? Click here to learn what changesets are.

Click here if you're a maintainer who wants to add another changeset to this PR

Copy link
Contributor

github-actions bot commented Dec 15, 2023

PR Preview Action v1.4.4
Preview removed because the pull request was closed.
2023-12-15 14:45 UTC

@adrianflatner adrianflatner merged commit 156780f into master Dec 15, 2023
7 checks passed
@adrianflatner adrianflatner deleted the dependabot/npm_and_yarn/patch-minor-dependencies-1a0f654895 branch December 15, 2023 14:43
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