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): bump the minor-and-patch group with 9 updates #80

Merged
merged 1 commit into from
Dec 9, 2024

Conversation

dependabot[bot]
Copy link
Contributor

@dependabot dependabot bot commented on behalf of github Dec 9, 2024

Bumps the minor-and-patch group with 9 updates:

Package From To
prettier 3.4.1 3.4.2
@astrojs/tailwind 5.1.2 5.1.3
tailwindcss 3.4.15 3.4.16
typedoc 0.27.2 0.27.4
typedoc-plugin-markdown 4.3.1 4.3.2
@mui/material 6.1.9 6.1.10
@testing-library/react 16.0.1 16.1.0
eslint-plugin-react-hooks 5.0.0 5.1.0
vite 6.0.2 6.0.3

Updates prettier from 3.4.1 to 3.4.2

Release notes

Sourced from prettier's releases.

3.4.2

🔗 Changelog

Changelog

Sourced from prettier's changelog.

3.4.2

diff

Treat U+30A0 & U+30FB in Katakana Block as CJK (#16796 by @​tats-u)

Prettier doesn't treat U+30A0 & U+30FB as Japanese. U+30FB is commonly used in Japanese to represent the delimitation of first and last names of non-Japanese people or “and”. The following “C言語・C++・Go・Rust” means “C language & C++ & Go & Rust” in Japanese.

<!-- Input (--prose-wrap=never) -->
C言
語
・
C++
・
Go
・
Rust
<!-- Prettier 3.4.1 -->
C言語・ C++ ・ Go ・ Rust
<!-- Prettier 3.4.2 -->
C言語・C++・Go・Rust

U+30A0 can be used as the replacement of the - in non-Japanese names (e.g. “Saint-Saëns” (Charles Camille Saint-Saëns) can be represented as “サン゠サーンス” in Japanese), but substituted by ASCII hyphen (U+002D) or U+FF1D (full width hyphen) in many cases (e.g. “サン=サーンス” or “サン=サーンス”).

Fix comments print on class methods with decorators (#16891 by @​fisker)

// Input
class A {
  @decorator
  /** 
   * The method description
   *
  */
  async method(foo: Foo, bar: Bar) {
    console.log(foo);
  }
}
// Prettier 3.4.1
class A {
@​decorator
async /**
</tr></table>

... (truncated)

Commits

Updates @astrojs/tailwind from 5.1.2 to 5.1.3

Release notes

Sourced from @​astrojs/tailwind's releases.

@​astrojs/tailwind@​5.1.3

Patch Changes

Changelog

Sourced from @​astrojs/tailwind's changelog.

5.1.3

Patch Changes

6.0.0-alpha.0

Patch Changes

Commits

Updates tailwindcss from 3.4.15 to 3.4.16

Release notes

Sourced from tailwindcss's releases.

v3.4.16

Fixed

  • Ensure the TypeScript types for PluginsConfig allow undefined values (#14668)

Changed

  • Bumped lilconfig to v3.x (#15289)
Changelog

Sourced from tailwindcss's changelog.

[3.4.16] - 2024-12-03

Fixed

  • Ensure the TypeScript types for PluginsConfig allow undefined values (#14668)

Changed

  • Bumped lilconfig to v3.x (#15289)
Commits

Updates typedoc from 0.27.2 to 0.27.4

Release notes

Sourced from typedoc's releases.

v0.27.4

Features

  • API: Introduced new Converter.EVENT_CREATE_PROJECT event which fires when a project is created by the converter, #2800.

Bug Fixes

  • Switch from gzip to deflate for compressing assets to make output consistent across different operating systems, #2796.
  • @include and @includeCode now work for comments on the entry point for projects with a single entry point, #2800.
  • Cascaded modifier tags will no longer be copied into type literals, #2802.
  • @summary now works to describe functions within modules, #2803.
  • Corrected navigation showing module link as current when not on module page, #2805.

v0.27.3

Features

  • Added support for PNG favicons, #2790.
  • Improved support for hosting TypeDoc with strict Content Security Policy rules, #2794.

Bug Fixes

  • Add special handling for import types with type errors discarded with ts-expect-error, #2792.
  • Fixed low contrast in default colors for properties/accessors in light mode, #2795.
  • The highlightLanguages option now permits Shiki aliases to be specified rather than just the language ID, #2798.

Thanks!

Changelog

Sourced from typedoc's changelog.

v0.27.4 (2024-12-09)

Features

  • API: Introduced new Converter.EVENT_CREATE_PROJECT event which fires when a project is created by the converter, #2800.

Bug Fixes

  • Switch from gzip to deflate for compressing assets to make output consistent across different operating systems, #2796.
  • @include and @includeCode now work for comments on the entry point for projects with a single entry point, #2800.
  • Cascaded modifier tags will no longer be copied into type literals, #2802.
  • @summary now works to describe functions within modules, #2803.
  • Corrected navigation showing module link as current when not on module page, #2805.

v0.27.3 (2024-12-04)

Features

  • Added support for PNG favicons, #2790.
  • Improved support for hosting TypeDoc with strict Content Security Policy rules, #2794.

Bug Fixes

  • Add special handling for import types with type errors discarded with ts-expect-error, #2792.
  • Fixed low contrast in default colors for properties/accessors in light mode, #2795.
  • The highlightLanguages option now permits Shiki aliases to be specified rather than just the language ID, #2798.

Thanks!

Commits
  • 0879c5b Update changelog for release
  • 6f2a480 Bump version to 0.27.4
  • cf901f4 Fix current location check for index page
  • 8680728 Exclude site plugin from linting
  • 88b8f2b Add special case for rendering @summary for functions
  • b35cfd2 Remove unnecessary test
  • c3bc0da Reduce manually maintained duplication in generated site
  • 344d4bf Handle @include tags on entry point project
  • ed1ac7a Switch from gzip to deflate for compression
  • 9dcbd5d Fix handling of cascadedModifierTags
  • Additional commits viewable in compare view

Updates typedoc-plugin-markdown from 4.3.1 to 4.3.2

Release notes

Sourced from typedoc-plugin-markdown's releases.

[email protected]

Patch Changes

  • Enable {@link} resolution on type alias properties (#732).
  • Remove superfluous name attribute when "useHtmlAnchors" is true..
  • Escape characters inside @link tags.
  • Fixed spacing around inline object declarations.
  • Always expose type arguments of reference types as per default theme (#733).
Changelog

Sourced from typedoc-plugin-markdown's changelog.

4.3.2 (2024-12-08)

Patch Changes

  • Enable {@link} resolution on type alias properties (#732).
  • Remove superfluous name attribute when "useHtmlAnchors" is true..
  • Escape characters inside @link tags.
  • Fixed spacing around inline object declarations.
  • Always expose type arguments of reference types as per default theme (#733).
Commits
  • bfb1c60 Version Packages
  • 43df8b1 chore(docs): updated typedoc option paths
  • f39b42b fix(core): always expose type arguments of reference types as per default theme
  • 27caafc chore(docs): updated packages
  • ffaa2cd fix(core): enable @link resolution on type alias properties
  • 05197cc fix(core): fixed spacing around inline object declarations
  • 65ddaff fix(core): escape chars inside @link tags
  • 11b5000 chore(all): updated packages
  • b2db92c chore(docs): updated docs
  • 2619301 chore(docs): updated docs
  • Additional commits viewable in compare view

Updates @mui/material from 6.1.9 to 6.1.10

Release notes

Sourced from @​mui/material's releases.

v6.1.10

A big thanks to the 11 contributors who made this release possible.

@mui/[email protected]

@mui/[email protected]

Docs

Core

All contributors of this release in alphabetical order: @​albarv340, @​arishoham, @​DiegoAndai, @​joserodolfofreitas, @​MBilalShafi, @​mnajdova, @​oliviertassinari, @​sai6855, @​samuelsycamore, @​siriwatknp, @​ZeeshanTamboli

Changelog

Sourced from @​mui/material's changelog.

6.1.10

Dec 3, 2024

A big thanks to the 11 contributors who made this release possible.

@mui/[email protected]

@mui/[email protected]

Docs

Core

All contributors of this release in alphabetical order: @​albarv340, @​arishoham, @​DiegoAndai, @​joserodolfofreitas, @​MBilalShafi, @​mnajdova, @​oliviertassinari, @​sai6855, @​samuelsycamore, @​siriwatknp, @​ZeeshanTamboli

Commits
  • 5c5e9f6 [release] v6.1.10 (#44645)
  • 6c6cb7e [Select][TextField] Fix screen reader from saying &ZeroWidthSpace (#44631)
  • 9b49147 [Grid2] Fix theme scoping error (#44599)
  • 7bdfd2a [core] Remove getSlotOwnerState from useSlot util (#44403)
  • 1f3d69a [docs] Bump React Router to ^7.0.1 (#44531)
  • ac1f902 [core] Extract useRippleHandler outside of ButtonBase (#44591)
  • 452d971 [Grid2] Add container styles from styleOverrides (#44598)
  • d0a5989 [ThemeProvider] Optimize theme changes when enabling CSS theme variables (#...
  • 7c0b7e8 [material-ui] Skip tonalOffset from setting color channel (#44585)
  • 28ac35c [core-infra] Remove useless fragments (#44516)
  • Additional commits viewable in compare view

Updates @testing-library/react from 16.0.1 to 16.1.0

Release notes

Sourced from @​testing-library/react's releases.

v16.1.0

16.1.0 (2024-12-05)

Features

Commits

Updates eslint-plugin-react-hooks from 5.0.0 to 5.1.0

Commits

Updates vite from 6.0.2 to 6.0.3

Release notes

Sourced from vite's releases.

v6.0.3

Please refer to CHANGELOG.md for details.

Changelog

Sourced from vite's changelog.

6.0.3 (2024-12-05)

Commits
  • 7a0758c release: v6.0.3
  • a1dd396 fix: make handleInvoke interface compatible with invoke (#18876)
  • ea802f8 refactor: fix logic errors found by no-unnecessary-condition rule (#18891)
  • 690a36f fix: remove CSS import in CJS correctly in some cases (#18885)
  • d5fb653 fix: handle postcss load unhandled rejections (#18886)
  • 2b5926a fix(config): bundle files referenced with imports field (#18887)
  • 1b54e50 fix(html): allow unexpected question mark in tag name (#18852)
  • d59efd8 fix(css): rewrite url when image-set and url exist at the same time (#18868)
  • 20fdf21 fix(config): make stacktrace path correct when sourcemap is enabled (#18833)
  • 88e49aa fix(module-runner): decode uri for file url passed to import (#18837)
  • Additional commits viewable in compare view

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 minor-and-patch group with 9 updates:

| Package | From | To |
| --- | --- | --- |
| [prettier](https://github.com/prettier/prettier) | `3.4.1` | `3.4.2` |
| [@astrojs/tailwind](https://github.com/withastro/astro/tree/HEAD/packages/integrations/tailwind) | `5.1.2` | `5.1.3` |
| [tailwindcss](https://github.com/tailwindlabs/tailwindcss) | `3.4.15` | `3.4.16` |
| [typedoc](https://github.com/TypeStrong/TypeDoc) | `0.27.2` | `0.27.4` |
| [typedoc-plugin-markdown](https://github.com/typedoc2md/typedoc-plugin-markdown/tree/HEAD/packages/typedoc-plugin-markdown) | `4.3.1` | `4.3.2` |
| [@mui/material](https://github.com/mui/material-ui/tree/HEAD/packages/mui-material) | `6.1.9` | `6.1.10` |
| [@testing-library/react](https://github.com/testing-library/react-testing-library) | `16.0.1` | `16.1.0` |
| [eslint-plugin-react-hooks](https://github.com/facebook/react/tree/HEAD/packages/eslint-plugin-react-hooks) | `5.0.0` | `5.1.0` |
| [vite](https://github.com/vitejs/vite/tree/HEAD/packages/vite) | `6.0.2` | `6.0.3` |


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

Updates `@astrojs/tailwind` from 5.1.2 to 5.1.3
- [Release notes](https://github.com/withastro/astro/releases)
- [Changelog](https://github.com/withastro/astro/blob/main/packages/integrations/tailwind/CHANGELOG.md)
- [Commits](https://github.com/withastro/astro/commits/@astrojs/[email protected]/packages/integrations/tailwind)

Updates `tailwindcss` from 3.4.15 to 3.4.16
- [Release notes](https://github.com/tailwindlabs/tailwindcss/releases)
- [Changelog](https://github.com/tailwindlabs/tailwindcss/blob/v3.4.16/CHANGELOG.md)
- [Commits](tailwindlabs/tailwindcss@v3.4.15...v3.4.16)

Updates `typedoc` from 0.27.2 to 0.27.4
- [Release notes](https://github.com/TypeStrong/TypeDoc/releases)
- [Changelog](https://github.com/TypeStrong/typedoc/blob/master/CHANGELOG.md)
- [Commits](TypeStrong/typedoc@v0.27.2...v0.27.4)

Updates `typedoc-plugin-markdown` from 4.3.1 to 4.3.2
- [Release notes](https://github.com/typedoc2md/typedoc-plugin-markdown/releases)
- [Changelog](https://github.com/typedoc2md/typedoc-plugin-markdown/blob/main/packages/typedoc-plugin-markdown/CHANGELOG.md)
- [Commits](https://github.com/typedoc2md/typedoc-plugin-markdown/commits/[email protected]/packages/typedoc-plugin-markdown)

Updates `@mui/material` from 6.1.9 to 6.1.10
- [Release notes](https://github.com/mui/material-ui/releases)
- [Changelog](https://github.com/mui/material-ui/blob/master/CHANGELOG.md)
- [Commits](https://github.com/mui/material-ui/commits/v6.1.10/packages/mui-material)

Updates `@testing-library/react` from 16.0.1 to 16.1.0
- [Release notes](https://github.com/testing-library/react-testing-library/releases)
- [Changelog](https://github.com/testing-library/react-testing-library/blob/main/CHANGELOG.md)
- [Commits](testing-library/react-testing-library@v16.0.1...v16.1.0)

Updates `eslint-plugin-react-hooks` from 5.0.0 to 5.1.0
- [Release notes](https://github.com/facebook/react/releases)
- [Changelog](https://github.com/facebook/react/blob/main/packages/eslint-plugin-react-hooks/CHANGELOG.md)
- [Commits](https://github.com/facebook/react/commits/HEAD/packages/eslint-plugin-react-hooks)

Updates `vite` from 6.0.2 to 6.0.3
- [Release notes](https://github.com/vitejs/vite/releases)
- [Changelog](https://github.com/vitejs/vite/blob/main/packages/vite/CHANGELOG.md)
- [Commits](https://github.com/vitejs/vite/commits/v6.0.3/packages/vite)

---
updated-dependencies:
- dependency-name: prettier
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: minor-and-patch
- dependency-name: "@astrojs/tailwind"
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: minor-and-patch
- dependency-name: tailwindcss
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: minor-and-patch
- dependency-name: typedoc
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: minor-and-patch
- dependency-name: typedoc-plugin-markdown
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: minor-and-patch
- dependency-name: "@mui/material"
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: minor-and-patch
- dependency-name: "@testing-library/react"
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: minor-and-patch
- dependency-name: eslint-plugin-react-hooks
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: minor-and-patch
- dependency-name: vite
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: minor-and-patch
...

Signed-off-by: dependabot[bot] <[email protected]>
@dependabot dependabot bot added the dependencies Pull requests that update a dependency file label Dec 9, 2024
@lawvs lawvs merged commit 6635269 into main Dec 9, 2024
1 check passed
@lawvs lawvs deleted the dependabot/npm_and_yarn/minor-and-patch-23cff35763 branch December 9, 2024 16:12
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