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 devdependencies-non-major #63

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

Conversation

renovate[bot]
Copy link
Contributor

@renovate renovate bot commented Oct 21, 2024

This PR contains the following updates:

Package Change Age Adoption Passing Confidence
@playwright/test (source) 1.47.2 -> 1.49.0 age adoption passing confidence
@types/node (source) 20.16.10 -> 20.17.9 age adoption passing confidence
@types/react (source) 18.3.11 -> 18.3.12 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.4 age adoption passing confidence
daisyui (source) 4.12.12 -> 4.12.14 age adoption passing confidence
eslint-plugin-react-refresh 0.4.12 -> 0.4.16 age adoption passing confidence
postcss (source) 8.4.47 -> 8.4.49 age adoption passing confidence
prettier (source) 3.3.3 -> 3.4.1 age adoption passing confidence
prettier-plugin-tailwindcss 0.6.8 -> 0.6.9 age adoption passing confidence
tailwindcss (source) 3.4.13 -> 3.4.15 age adoption passing confidence
typescript (source) 5.6.2 -> 5.7.2 age adoption passing confidence
vite (source) 5.4.8 -> 5.4.11 age adoption passing confidence

Release Notes

microsoft/playwright (@​playwright/test)

v1.49.0

Compare Source

v1.48.2

Compare Source

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

v1.48.0

Compare Source

vitejs/vite-plugin-react (@​vitejs/plugin-react)

v4.3.4

Compare Source

Add Vite 6 to peerDependencies range

Vite 6 is highly backward compatible, not much to add!

Force Babel to output spec compliant import attributes #​386

The default was an old spec (with type: "json"). We now enforce spec compliant (with { type: "json" })

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 } })],
  }
})
saadeghi/daisyui (daisyui)

v4.12.14

Compare Source

Bug Fixes

v4.12.13

Compare Source

Bug Fixes
ArnaudBarre/eslint-plugin-react-refresh (eslint-plugin-react-refresh)

v0.4.16

Compare Source

Fix CJS/ESM interop issue. Sorry everyone for the trouble.

v0.4.15

Compare Source

Add support for custom HOCs (#​60)

By default, the rule only knows that memo & forwardRef function calls with return a React component. With this option, you can also allow extra function names like Mobx observer to make this code valid:

const Foo = () => <></>;
export default observer(Foo);
{
  "react-refresh/only-export-components": [
    "error",
    { "customHOCs": ["observer"] }
  ]
}

Thanks @​HorusGoul!

Add recommended config and simple types (#​67)

You can now add the recommended config to your ESLint config like this:

import reactRefresh from "eslint-plugin-react-refresh";

export default [
  /* Main config */
  reactRefresh.configs.recommended, // Or reactRefresh.configs.vite for Vite users
];

To follow ESLint recommandations, the rule is added with the error severity.

Some simple types ensure that people typecheking their config won't need @ts-expect-error anymore.

Bump ESLint peer dependency to 8.40

This was actually done by mistake in the previous release when moving from a deprecated API to a new one.

Given that ESLint 8 is officialy end-of-life and the only report (#​56) didn't get likes, I'm going forward and documenting the expected minimum version from ESLin in the package JSON so that people can get warning from their package manager.

v0.4.14

Compare Source

v0.4.13

Compare Source

postcss/postcss (postcss)

v8.4.49

Compare Source

v8.4.48

Compare Source

  • Fixed position calculation in error/warnings methods (by @​romainmenke).
prettier/prettier (prettier)

v3.4.1

Compare Source

diff

Remove unnecessary parentheses around assignment in v-on (#​16887 by @​fisker)
<!-- Input -->
<template>
  <button @&#8203;click="foo += 2">Click</button>
</template>

<!-- Prettier 3.4.0 -->
<template>
  <button @&#8203;click="(foo += 2)">Click</button>
</template>

<!-- Prettier 3.4.1 -->
<template>
  <button @&#8203;click="foo += 2">Click</button>
</template>

v3.4.0

Compare Source

diff

🔗 Release Notes

tailwindlabs/prettier-plugin-tailwindcss (prettier-plugin-tailwindcss)

v0.6.9

Compare Source

  • Introduce tailwindStylesheet option to replace tailwindEntryPoint (#​330)
tailwindlabs/tailwindcss (tailwindcss)

v3.4.15

Compare Source

  • Bump versions for security vulnerabilities (#​14697)
  • Ensure the TypeScript types for the boxShadow theme configuration allows arrays (#​14856)
  • Set fallback for opacity variables to ensure setting colors with the selection:* variant works in Chrome 131 (#​15003)

v3.4.14

Compare Source

Fixed
  • Don't set display: none on elements that use hidden="until-found" (#​14625)
microsoft/TypeScript (typescript)

v5.7.2

Compare Source

v5.6.3

Compare Source

vitejs/vite (vite)

v5.4.11

Compare Source

Please refer to CHANGELOG.md for details.

v5.4.10

Compare Source

Please refer to CHANGELOG.md for details.

v5.4.9

Compare Source

Please refer to CHANGELOG.md for details.


Configuration

📅 Schedule: Branch creation - "every 2 weeks on Monday before 7am" in timezone Europe/Berlin, 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 requested a review from raphael-arce as a code owner October 21, 2024 01:12
Copy link

vercel bot commented Oct 21, 2024

The latest updates on your projects. Learn more about Vercel for Git ↗︎

Name Status Preview Comments Updated (UTC)
anmelde-check ✅ Ready (Inspect) Visit Preview 💬 Add feedback Dec 2, 2024 2:09pm

@renovate renovate bot force-pushed the renovate/devdependencies-non-major branch from 53cffe4 to c352f1c Compare October 22, 2024 04:27
@renovate renovate bot force-pushed the renovate/devdependencies-non-major branch from c352f1c to 02c6371 Compare October 23, 2024 03:50
@renovate renovate bot force-pushed the renovate/devdependencies-non-major branch from 02c6371 to 9ecfbdf Compare October 23, 2024 08:33
@renovate renovate bot force-pushed the renovate/devdependencies-non-major branch from 9ecfbdf to 7b1a210 Compare October 23, 2024 14:25
@renovate renovate bot force-pushed the renovate/devdependencies-non-major branch from 7b1a210 to 89c19d6 Compare October 24, 2024 19:58
@renovate renovate bot force-pushed the renovate/devdependencies-non-major branch from 89c19d6 to 1fa3bb5 Compare October 25, 2024 15:29
@renovate renovate bot force-pushed the renovate/devdependencies-non-major branch from 1fa3bb5 to 5d53247 Compare October 25, 2024 21:07
@renovate renovate bot force-pushed the renovate/devdependencies-non-major branch from 5d53247 to 5b2e3e4 Compare October 28, 2024 19:57
@renovate renovate bot force-pushed the renovate/devdependencies-non-major branch from 5b2e3e4 to 0c426d2 Compare October 28, 2024 21:10
@renovate renovate bot force-pushed the renovate/devdependencies-non-major branch from 0c426d2 to 5984fd0 Compare October 29, 2024 18:01
@renovate renovate bot force-pushed the renovate/devdependencies-non-major branch from 5984fd0 to aab35a4 Compare October 31, 2024 07:25
@renovate renovate bot force-pushed the renovate/devdependencies-non-major branch from aab35a4 to ed80100 Compare October 31, 2024 19:03
@renovate renovate bot force-pushed the renovate/devdependencies-non-major branch from ed80100 to cc08efc Compare November 3, 2024 07:10
@renovate renovate bot force-pushed the renovate/devdependencies-non-major branch from cc08efc to 9d87ec8 Compare November 10, 2024 22:17
@renovate renovate bot force-pushed the renovate/devdependencies-non-major branch from 9d87ec8 to 6b77ee1 Compare November 11, 2024 09:53
@renovate renovate bot force-pushed the renovate/devdependencies-non-major branch from 6b77ee1 to bca9c44 Compare November 11, 2024 22:52
@renovate renovate bot force-pushed the renovate/devdependencies-non-major branch from bca9c44 to 7328e50 Compare November 14, 2024 19:35
@renovate renovate bot force-pushed the renovate/devdependencies-non-major branch from 7328e50 to 1b4de6a Compare November 18, 2024 21:49
@renovate renovate bot force-pushed the renovate/devdependencies-non-major branch from 1b4de6a to 2a3434d Compare November 19, 2024 17:18
@renovate renovate bot force-pushed the renovate/devdependencies-non-major branch from 2a3434d to 841cb6c Compare November 22, 2024 19:21
@renovate renovate bot force-pushed the renovate/devdependencies-non-major branch from 841cb6c to f4b9b11 Compare November 23, 2024 07:25
@renovate renovate bot force-pushed the renovate/devdependencies-non-major branch from f4b9b11 to 4d25f1e Compare November 25, 2024 22:16
@renovate renovate bot force-pushed the renovate/devdependencies-non-major branch from 4d25f1e to d8aaa20 Compare November 26, 2024 06:34
@renovate renovate bot force-pushed the renovate/devdependencies-non-major branch from d8aaa20 to 8af892e Compare November 26, 2024 13:41
@renovate renovate bot force-pushed the renovate/devdependencies-non-major branch from 8af892e to fe1b44c Compare November 28, 2024 08:20
@renovate renovate bot force-pushed the renovate/devdependencies-non-major branch from fe1b44c to 0ec55b2 Compare December 2, 2024 10:15
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

0 participants