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 patch #480

Open
wants to merge 1 commit into
base: main
Choose a base branch
from
Open

chore(deps): update patch #480

wants to merge 1 commit into from

Conversation

renovate[bot]
Copy link
Contributor

@renovate renovate bot commented Oct 13, 2024

This PR contains the following updates:

Package Change Age Adoption Passing Confidence
@biomejs/biome (source) 1.9.3 -> 1.9.4 age adoption passing confidence
@playwright/test (source) 1.48.0 -> 1.48.1 age adoption passing confidence
@storybook/addon-a11y (source) 8.3.5 -> 8.3.6 age adoption passing confidence
@storybook/addon-essentials (source) 8.3.5 -> 8.3.6 age adoption passing confidence
@storybook/addon-interactions (source) 8.3.5 -> 8.3.6 age adoption passing confidence
@storybook/addon-links (source) 8.3.5 -> 8.3.6 age adoption passing confidence
@storybook/addon-onboarding (source) 8.3.5 -> 8.3.6 age adoption passing confidence
@storybook/addon-storysource (source) 8.3.5 -> 8.3.6 age adoption passing confidence
@storybook/addon-themes (source) 8.3.5 -> 8.3.6 age adoption passing confidence
@storybook/blocks (source) 8.3.5 -> 8.3.6 age adoption passing confidence
@storybook/nextjs (source) 8.3.5 -> 8.3.6 age adoption passing confidence
@storybook/react (source) 8.3.5 -> 8.3.6 age adoption passing confidence
@storybook/test (source) 8.3.5 -> 8.3.6 age adoption passing confidence
@types/node (source) 20.16.11 -> 20.16.14 age adoption passing confidence
@types/react-dom (source) 18.3.0 -> 18.3.1 age adoption passing confidence
@vitejs/plugin-react (source) 4.3.2 -> 4.3.3 age adoption passing confidence
@vitest/coverage-v8 (source) 2.1.2 -> 2.1.3 age adoption passing confidence
eslint-config-next (source) 14.2.14 -> 14.2.16 age adoption passing confidence
eslint-plugin-tailwindcss 3.17.4 -> 3.17.5 age adoption passing confidence
next (source) 14.2.14 -> 14.2.16 age adoption passing confidence
next-auth (source) 5.0.0-beta.22 -> 5.0.0-beta.25 age adoption passing confidence
npm-run-all2 6.2.3 -> 6.2.6 age adoption passing confidence
react-hook-form (source) 7.53.0 -> 7.53.1 age adoption passing confidence
rehype-highlight 7.0.0 -> 7.0.1 age adoption passing confidence
storybook (source) 8.3.5 -> 8.3.6 age adoption passing confidence
tailwind-merge 2.5.3 -> 2.5.4 age adoption passing confidence
tailwindcss (source) 3.4.13 -> 3.4.14 age adoption passing confidence
typescript (source) 5.6.2 -> 5.6.3 age adoption passing confidence
vaul (source) 0.9.1 -> 0.9.9 age adoption passing confidence
vitest (source) 2.1.2 -> 2.1.3 age adoption passing confidence

Release Notes

biomejs/biome (@​biomejs/biome)

v1.9.4

Compare Source

Analyzer
Bug fixes
CLI
Enhancements
  • The --summary reporter now reports parsing diagnostics too. Contributed by @​ematipico

  • Improved performance of GritQL queries by roughly 25-30%. Contributed by @​arendjr

Configuration
Bug fixes
  • Fix an issue where the JSON schema marked lint rules options as mandatory. Contributed by @​ematipico
Editors
Formatter
Bug fixes
  • Fix #​4121. Respect line width when printing multiline strings. Contributed by @​ah-yu
JavaScript APIs
Linter
New features
Bug Fixes
  • Biome no longer crashes when it encounters a string that contain a multibyte character (#​4181).

    This fixes a regression introduced in Biome 1.9.3
    The regression affected the following linter rules:

    • nursery/useSortedClasses
    • nursery/useTrimStartEnd
    • style/useTemplate
    • suspicious/noMisleadingCharacterClass

    Contributed by @​Conaclos

  • Fix #​4190, where the rule noMissingVarFunction wrongly reported a variable as missing when used inside a var() function that was a newline. Contributed by @​ematipico

  • Fix #​4041. Now the rule useSortedClasses won't be triggered if className is composed only by inlined variables. Contributed by @​ematipico

  • useImportType and useExportType now report useless inline type qualifiers (#​4178).

    The following fix is now proposed:

    - import type { type A, B } from "";
    + import type { A, B } from "";
    
    - export type { type C, D };
    + export type { C, D };

    Contributed by @​Conaclos

  • useExportType now reports ungrouped export from.

    The following fix is now proposed:

    - export { type A, type B } from "";
    + export type { A, B } from "";

    Contributed by @​Conaclos

  • noVoidTypeReturn now accepts void expressions in return position (#​4173).

    The following code is now accepted:

    function f(): void {
      return void 0;
    }

    Contributed by @​Conaclos

  • noUselessFragments now correctly handles fragments containing HTML escapes (e.g.  ) inside expression escapes { ... } (#​4059).

    The following code is no longer reported:

    function Component() {
      return (
        <div key={index}>{line || <>&nbsp;</>}</div>
      )
    }

    Contributed by @​fireairforce

  • noUnusedFunctionParameters and noUnusedVariables no longer reports a parameter as unused when another parameter has a constructor type with the same parameter name (#​4227).

    In the following code, the name parameter is no longer reported as unused.

    export class Foo {
      bar(name: string, _class: new (name: string) => any) {
        return name
      }
    }

    Contributed by @​Conaclos

  • noUndeclaredDependencies now accepts dependency names with dots. Contributed by @​Conaclos

  • useFilenamingConvention now correctly handles renamed exports (#​4254).

    The rule allows the filename to be named as one of the exports of the module.
    For instance, the file containing the following export can be named Button.

    class Button {}
    export { Button }

    The rule now correctly handles the renaming of an export.
    For example, the file containing the following export can only be named Button.
    Previously the rule expected the file to be named A.

    class A {}
    export { A as Button }

    Contributed by @​Conaclos

  • useConsistentMemberAccessibility now ignore private class members such as #property (#​4276). Contributed by @​Conaclos

  • noUnknownFunction correctly handles calc-size function (#​4212).

    The following code calc-size is no longer reported as unknown:

    .a { height: calc-size(0px); }

    Contributed by @​fireairforce

  • useNamingConvention now allows configuring conventions for readonly index signatures.

Contributed by @​sepruko

  • noDuplicateCustomProperties now correctly handles custom properties and ignores non-custom properties.
    Previously, the rule incorrectly reported duplicates for all properties, including non-custom ones. Contributed by @​togami2864
Parser
Bug Fixes
  • The CSS parser now accepts more emoji in identifiers (#​3627).

    Browsers accept more emoji than the standard allows.
    Biome now accepts these additional emojis.

    The following code is now correctly parsed:

    p {
      ---color: red;
      color: var(--✨-color);
    }

    Contributed by @​Conaclos

  • Add support for parsing typescript's resolution-mode in Import Types(#​2115)

    export type Fs = typeof import('fs', { with: { 'resolution-mode': 'import' } });
    export type TypeFromRequire =
      import("pkg", { with: { "resolution-mode": "require" } }).TypeFromRequire;
    export type TypeFromImport =
      import("pkg", { with: { "resolution-mode": "import" } }).TypeFromImport;

    Contributed by @​fireairforce

microsoft/playwright (@​playwright/test)

v1.48.1

Compare Source

Highlights

https://github.com/microsoft/playwright/issues/33023 - [Bug]: command line flag --headed has no effect in ui modehttps://github.com/microsoft/playwright/issues/331077 - [REGRESSION]: page.waitForRequest does not get resolved since 1.48.https://github.com/microsoft/playwright/issues/3308585 - [Bug]: WebSocket route does not handle full URLs in Playwrighttps://github.com/microsoft/playwright/issues/33052052 - [Regression]: Inspector not showing recorded sthttps://github.com/microsoft/playwright/issues/331323132 - [Bug]: Wrong Ubuntu release name in Dockerfile.nhttps://github.com/microsoft/playwright/pull/3299632996 - [BUG] Trace attachments have small unusable height

Browser Versions

  • Chromium 130.0.6723.19
  • Mozilla Firefox 130.0
  • WebKit 18.0

This version was also tested against the following stable channels:

  • Google Chrome 129
  • Microsoft Edge 129
storybookjs/storybook (@​storybook/addon-a11y)

v8.3.6

Compare Source

storybookjs/storybook (@​storybook/addon-onboarding)

v8.3.6

Compare Source

8.3.6

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 } })],
  }
})
vitest-dev/vitest (@​vitest/coverage-v8)

v2.1.3

Compare Source

   🐞 Bug Fixes
   🏎 Performance
    View changes on GitHub
vercel/next.js (eslint-config-next)

v14.2.16

Compare Source

v14.2.15

Compare Source

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

Core Changes
  • support breadcrumb style catch-all parallel routes #​65063
  • Provide non-dynamic segments to catch-all parallel routes #​65233
  • Fix client reference access causing metadata missing #​70732
  • feat(next/image): add support for decoding prop #​70298
  • feat(next/image): add images.localPatterns config #​70529
  • fix(next/image): handle undefined images.localPatterns config in images-manifest.json
  • fix: Do not omit alt on getImgProps return type, ImgProps #​70608
  • [i18n] Routing fix #​70761
Credits

Huge thanks to @​ztanner, @​agadzik, @​huozhi, @​styfle, @​icyJoseph and @​wyattjoh for helping!

francoismassart/eslint-plugin-tailwindcss (eslint-plugin-tailwindcss)

v3.17.5

Compare Source

vercel/next.js (next)

v14.2.16

Compare Source

v14.2.15

Compare Source

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

Core Changes
  • support breadcrumb style catch-all parallel routes #​65063
  • Provide non-dynamic segments to catch-all parallel routes #​65233
  • Fix client reference access causing metadata missing #​70732
  • feat(next/image): add support for decoding prop #​70298
  • feat(next/image): add images.localPatterns config #​70529
  • fix(next/image): handle undefined images.localPatterns config in images-manifest.json
  • fix: Do not omit alt on getImgProps return type, ImgProps #​70608
  • [i18n] Routing fix #​70761
Credits

Huge thanks to @​ztanner, @​agadzik, @​huozhi, @​styfle, @​icyJoseph and @​wyattjoh for helping!

nextauthjs/next-auth (next-auth)

v5.0.0-beta.24

Compare Source

What's Changed

New Contributors

Full Changelog: https://github.com/nextauthjs/next-auth/compare/next-auth@5.0.0-beta.23...next-auth@5.0.0-beta.24

v5.0.0-beta.23

Compare Source

bcomnes/npm-run-all2 (npm-run-all2)

v6.2.6

Compare Source

v6.2.5

Compare Source

Merged
  • Prevent a throw when looking up undefined results #158
Commits
  • Breaking change: Bump node engines ^18.17.0 || >=20.5.0 49b95f0
  • Merge pull request #​156 from bcomnes/rm-rf-rimraf c661ffc
  • Remove rimraf c77e085

v6.2.4

Compare Source

Merged
  • Switch to JS-based which command #154
Fixed
  • Switch to JS-based which command #153
react-hook-form/react-hook-form (react-hook-form)

v7.53.1: Version 7.53.1

Compare Source

🔧 chore: upgrade eslint to v9 (#​12150)
🐞 fix: #​12294 ensure Invalid Date is evaluated correctly (#​12295)
🐞 fix #​12316 setValue should work for arrays of primitives to handle checkboxes (#​12316) (#​12317)
🐞 fix #​12097 Use dirty fields along with mount names for form reset with keepDirtyValues (#​12211)
🫀 fix #​12237 disabled state trigger formState dirty/dirtyFields to update (#​12239)
📝 improve flatten function with object type check (#​12306)
🐞 fix #​12291 field array remove cause undefined with FormData (#​12305)
🖐️ improve: resolve type of set function (#​12145)
📖 fix: code example input field placeholder name (#​12296)
📖 docs: fix typo in code example (#​12271)

thanks to @​rasikhq @​abnud11 @​crypt0box @​developer-bandi @​matmannion @​hasancruk & @​vismay7

rehypejs/rehype-highlight (rehype-highlight)

v7.0.1

Compare Source

Fix
  • 8fbc0eb Fix to prefer no-highlight class over language-* class
Types
Docs
  • a2d4dc3 Add HTML, CSS sections to readme
  • 67eeb3a Add example, links to rehype-highlight-code-lines
  • 3c2d9e0 Add references to rehype-starry-night in docs

Full Changelog: rehypejs/rehype-highlight@7.0.0...7.0.1

dcastil/tailwind-merge (tailwind-merge)

Configuration

📅 Schedule: Branch creation - "before 11am on monday" in timezone Asia/Tokyo, Automerge - At any time (no schedule defined).

🚦 Automerge: Disabled by config. Please merge this manually once you are satisfied.

Rebasing: Whenever PR becomes conflicted, or you tick the rebase/retry checkbox.

👻 Immortal: This PR will be recreated if closed unmerged. Get config help if that's undesired.


  • If you want to rebase/retry this PR, check this box

This PR was generated by Mend Renovate. View the repository job log.

@renovate renovate bot added the dependencies Dependencies label Oct 13, 2024
@renovate renovate bot requested a review from s-hirano-ist October 13, 2024 19:43
Copy link

github-actions bot commented Oct 13, 2024

Coverage Report

Status Category Percentage Covered / Total
🔵 Lines 16.07% 708 / 4405
🔵 Statements 16.07% 708 / 4405
🔵 Functions 12.85% 18 / 140
🔵 Branches 32.33% 54 / 167
File CoverageNo changed files found.
Generated in workflow #685 for commit 8356244 by the Vitest Coverage Report Action

@renovate renovate bot force-pushed the renovate/patch branch 14 times, most recently from cb46bf9 to 7590638 Compare October 20, 2024 22:26
@renovate renovate bot force-pushed the renovate/patch branch 4 times, most recently from cfa321c to 4d4721a Compare October 22, 2024 15:01
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
dependencies Dependencies
Projects
None yet
Development

Successfully merging this pull request may close these issues.

0 participants