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) (minor) #12

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

Conversation

renovate[bot]
Copy link
Contributor

@renovate renovate bot commented Feb 14, 2024

This PR contains the following updates:

Package Change Age Adoption Passing Confidence
@cypress/code-coverage 3.12.39 -> 3.13.4 age adoption passing confidence
@vitejs/plugin-react (source) 4.2.1 -> 4.3.2 age adoption passing confidence
axios (source) 1.6.8 -> 1.7.7 age adoption passing confidence
cypress (source) 13.8.1 -> 13.15.0 age adoption passing confidence
eslint-plugin-import 2.29.1 -> 2.31.0 age adoption passing confidence
eslint-plugin-jsx-a11y 6.8.0 -> 6.10.0 age adoption passing confidence
eslint-plugin-prettier 5.1.3 -> 5.2.1 age adoption passing confidence
eslint-plugin-react 7.34.2 -> 7.37.1 age adoption passing confidence
prettier (source) 3.2.5 -> 3.3.3 age adoption passing confidence
vite (source) 5.2.13 -> 5.4.9 age adoption passing confidence
vite-plugin-checker 0.6.4 -> 0.8.0 age adoption passing confidence

Release Notes

cypress-io/code-coverage (@​cypress/code-coverage)

v3.13.4

Compare Source

Bug Fixes
  • improve performance combining coverage on large codebases (#​753) (bf696bb)

v3.13.3

Compare Source

Bug Fixes

v3.13.2

Compare Source

Bug Fixes

v3.13.1

Compare Source

Bug Fixes

v3.13.0

Compare Source

Features
  • support multiple servers from which to gather code coverage (#​880) (207b027)

v3.12.49

Compare Source

Bug Fixes

v3.12.48

Compare Source

Bug Fixes

v3.12.47

Compare Source

Bug Fixes

v3.12.46

Compare Source

Bug Fixes

v3.12.45

Compare Source

Bug Fixes

v3.12.44

Compare Source

Bug Fixes

v3.12.43

Compare Source

Bug Fixes

v3.12.42

Compare Source

Bug Fixes

v3.12.41

Compare Source

Bug Fixes

v3.12.40

Compare Source

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

v4.3.2

Compare Source

Ignore directive sourcemap error #​369

v4.3.1

Compare Source

Fix support for React Compiler with React 18

The previous version made this assumption that the compiler was only usable with React 19, but it's possible to use it with React 18 and a custom runtimeModule: https://gist.github.com/poteto/37c076bf112a07ba39d0e5f0645fec43

When using a custom runtimeModule, the plugin will not try to pre-optimize react/compiler-runtime dependency.

Reminder: Vite expect code outside of node_modules to be ESM, so you will need to update the gist with import React from 'react'.

v4.3.0

Compare Source

Fix support for React compiler

Don't set retainLines: true when the React compiler is used. This creates whitespace issues and the compiler is modifying the JSX too much to get correct line numbers after that. If you want to use the React compiler and get back correct line numbers for tools like vite-plugin-react-click-to-component to work, you should update your config to something like:

export default defineConfig(({ command }) => {
  const babelPlugins = [['babel-plugin-react-compiler', {}]]
  if (command === 'serve') {
    babelPlugins.push(['@​babel/plugin-transform-react-jsx-development', {}])
  }

  return {
    plugins: [react({ babel: { plugins: babelPlugins } })],
  }
})
Support HMR for class components

This is a long overdue and should fix some issues people had with HMR when migrating from CRA.

axios/axios (axios)

v1.7.7

Compare Source

Bug Fixes
  • fetch: fix stream handling in Safari by fallback to using a stream reader instead of an async iterator; (#​6584) (d198085)
  • http: fixed support for IPv6 literal strings in url (#​5731) (364993f)
Contributors to this release

v1.7.6

Compare Source

Bug Fixes
Contributors to this release

v1.7.5

Compare Source

Bug Fixes
  • adapter: fix undefined reference to hasBrowserEnv (#​6572) (7004707)
  • core: add the missed implementation of AxiosError#status property; (#​6573) (6700a8a)
  • core: fix ReferenceError: navigator is not defined for custom environments; (#​6567) (fed1a4b)
  • fetch: fix credentials handling in Cloudflare workers (#​6533) (550d885)
Contributors to this release

v1.7.4

Compare Source

Bug Fixes
Contributors to this release

v1.7.3

Compare Source

Bug Fixes
Contributors to this release

v1.7.2

Compare Source

Bug Fixes
Contributors to this release

v1.7.1

Compare Source

Bug Fixes
  • fetch: fixed ReferenceError issue when TextEncoder is not available in the environment; (#​6410) (733f15f)
Contributors to this release

v1.7.0

Compare Source

Features
Bug Fixes
Contributors to this release
cypress-io/cypress (cypress)

v13.15.0

Compare Source

Changelog: https://docs.cypress.io/guides/references/changelog#13-15-0

v13.14.2

Compare Source

Changelog: https://docs.cypress.io/guides/references/changelog#13-14-2

v13.14.1

Compare Source

v13.14.0

Compare Source

Changelog: https://docs.cypress.io/guides/references/changelog#13-14-0

v13.13.3

Compare Source

Changelog: https://docs.cypress.io/guides/references/changelog#13-13-3

v13.13.2

Compare Source

Changelog: https://docs.cypress.io/guides/references/changelog#13-13-2

v13.13.1

Compare Source

Changelog: https://docs.cypress.io/guides/references/changelog#13-13-1

v13.13.0

Compare Source

Changelog: https://docs.cypress.io/guides/references/changelog#13-13-0

v13.12.0

Compare Source

Changelog: https://docs.cypress.io/guides/references/changelog#13-12-0

v13.11.0

Compare Source

Changelog: https://docs.cypress.io/guides/references/changelog#13-11-0

v13.10.0

Compare Source

Changelog: https://docs.cypress.io/guides/references/changelog#13-10-0

v13.9.0

Compare Source

Changelog: https://docs.cypress.io/guides/references/changelog#13-9-0

import-js/eslint-plugin-import (eslint-plugin-import)

v2.31.0

Compare Source

Added
Fixed
Changed

v2.30.0

Compare Source

Added
Fixed
Changed
  • [Docs] no-extraneous-dependencies: Make glob pattern description more explicit ([#​2944], thanks [@​mulztob])
  • [no-unused-modules]: add console message to help debug [#​2866]
  • [Refactor] ExportMap: make procedures static instead of monkeypatching exportmap ([#​2982], thanks [@​soryy708])
  • [Refactor] ExportMap: separate ExportMap instance from its builder logic ([#​2985], thanks [@​soryy708])
  • [Docs] order: Add a quick note on how unbound imports and --fix ([#​2640], thanks [@​minervabot])
  • [Tests] appveyor -> GHA (run tests on Windows in both pwsh and WSL + Ubuntu) ([#​2987], thanks [@​joeyguerra])
  • [actions] migrate OSX tests to GHA ([ljharb#37], thanks [@​aks-])
  • [Refactor] exportMapBuilder: avoid hoisting ([#​2989], thanks [@​soryy708])
  • [Refactor] ExportMap: extract "builder" logic to separate files ([#​2991], thanks [@​soryy708])
  • [Docs] [order]: update the description of the pathGroupsExcludedImportTypes option ([#​3036], thanks [@​liby])
  • [readme] Clarify how to install the plugin ([#​2993], thanks [@​jwbth])
jsx-eslint/eslint-plugin-jsx-a11y (eslint-plugin-jsx-a11y)

v6.10.0

Compare Source

Fixed
  • [New] label-has-associated-control: add additional error message #1005
  • [Fix] label-has-associated-control: ignore undetermined label text #966
Commits
  • [Tests] switch from jest to tape a284cbf
  • [New] add eslint 9 support deac4fd
  • [New] add attributes setting a1ee7f8
  • [New] allow polymorphic linting to be restricted 6cd1a70
  • [Tests] remove duplicate tests 74d5dec
  • [Dev Deps] update @babel/cli, @babel/core, @babel/eslint-parser, @babel/plugin-transform-flow-strip-types 6eca235
  • [readme] remove deprecated travis ci badge; add github actions badge 0be7ea9
  • [Tests] use npm audit instead of aud 05a5e49
  • [Deps] update axobject-query 912e98c
  • [Deps] unpin axobject-query 75147aa
  • [Deps] update axe-core 27ff7cb
  • [readme] fix jsxA11y import name ce846e0
  • [readme] fix typo in shareable config section in readme cca288b

v6.9.0

Compare Source

Fixed
  • [Fix] img-redundant-alt: fixed multibyte character support #969
  • [meta] fix changelog links #960
Commits
  • [New] add support for Flat Config 6b5f096
  • Revert "[Fix] isNonInteractiveElement: Upgrade aria-query to 5.3.0 and axobject-query to 3.2.1" 75d5dd7
  • [Robustness] use safe-regex-test 4c7e781
  • [actions] update actions/checkout 51a1ca7
  • [Dev Deps] update @babel/cli, @babel/core, @babel/eslint-parser, @babel/plugin-transform-flow-strip-types, @babel/register, eslint-doc-generator, object.entries 1271ac1
  • [Dev Deps] update @babel/cli, @babel/core, @babel/register, aud, eslint-plugin-import, npmignore, object.assign 540cb7a
  • [Deps] update @babel/runtime, array-includes, es-iterator-helpers, hasown, object.fromentries, safe-regex-test 5d14408
  • [Deps] pin aria-query and axobject-query, add ls-engines test to CI 32fd82c
  • [Dev Deps] update @babel/core, @babel/eslint-parser, @babel/plugin-transform-flow-strip-types, eslint-doc-generator d1b4114
  • [Fix] ensure summary remains non-interactive 6a048da
  • [Deps] remove @babel/runtime 0a98ad8
  • [New] no-noninteractive-element-to-interactive-role: allow menuitemradio and menuitemcheckbox on <li> c0733f9
  • [Deps] update @babel/runtime, safe-regex-test 0d5321a
  • [actions] pin codecov to v3.1.5 961817f
  • [Deps] unpin axe-core b3559cf
  • [Deps] move object.entries to dev deps 1be7b70
  • [Deps] update @babel/runtime 2a48abb
  • [Deps] update @babel/runtime 1adec35
prettier/eslint-plugin-prettier (eslint-plugin-prettier)

v5.2.1

Compare Source

Patch Changes
jsx-eslint/eslint-plugin-react (eslint-plugin-react)

v7.37.1

Compare Source

Fixed
Changed

v7.37.0

Compare Source

Added
Changed

v7.36.1

Compare Source

Fixed

v7.36.0

Compare Source

Added
Fixed
  • [function-component-definition], [boolean-prop-naming], [jsx-first-prop-new-line], [jsx-props-no-multi-spaces], propTypes: use type args (#​3629 @​HenryBrown0)
  • JSX pragma: fail gracefully (#​3632 @​ljharb)
  • [jsx-props-no-spreading]: add explicitSpread option to schema (#​3799 @​ljharb)
Changed

v7.35.2

Compare Source

Fixed
  • [jsx-curly-brace-presence]: avoid autofixing attributes with double quotes to a double quoted attribute ([#​3814][] @​ljharb)

undefined
[#​1000]: https://github.com/jsx-eslint/eslint-plugin-react/pull/1000%0A[#​1002]: https://github.com/jsx-eslint/eslint-plugin-react/issues/1002%0A[#​1005]: https://github.com/jsx-eslint/eslint-plugin-react/pull/1005%0A[#​100]: https://github.com/jsx-eslint/eslint-plugin-react/issues/100%0A[#​1010]: https://github.com/jsx-eslint/eslint-plugin-react/pull/1010%0A[#​1013]: https://github.com/jsx-eslint/eslint-plugin-react/pull/1013%0A[#​1022]: https://github.com/jsx-eslint/eslint-plugin-react/issues/1022%0A[#​1029]: https://github.com/jsx-eslint/eslint-plugin-react/issues/1029%0A[#​102]: https://github.com/jsx-eslint/eslint-plugin-react/issues/102%0A[#​1034]: https://github.com/jsx-eslint/eslint-plugin-react/issues/1034%0A[#​1038]: https://github.com/jsx-eslint/eslint-plugin-react/pull/1038%0A[#​1041]: https://github.com/jsx-eslint/eslint-plugin-react/pull/1041%0A[#​1043]: https://github.com/jsx-eslint/eslint-plugin-react/issues/1043%0A[#​1046]: https://github.com/jsx-eslint/eslint-plugin-react/issues/1046%0A[#​1047]: https://github.com/jsx-eslint/eslint-plugin-react/issues/1047%0A[#​1050]: https://github.com/jsx-eslint/eslint-plugin-react/pull/1050%0A[#​1053]: https://github.com/jsx-eslint/eslint-plugin-react/issues/1053%0A[[#​1057](https://redirect.github.com/jsx-eslint/eslint-plugin-react/issue


Configuration

📅 Schedule: Branch creation - At any time (no schedule defined), Automerge - "after 10pm every weekday,before 5am every weekday,every weekend" (UTC).

🚦 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 Pull requests that update a dependency file label Feb 14, 2024
@renovate renovate bot force-pushed the renovate/devdependencies-(non-major) branch 2 times, most recently from 3190ba1 to 8e1df86 Compare February 17, 2024 22:35
@renovate renovate bot force-pushed the renovate/devdependencies-(non-major) branch from 8e1df86 to f7c0c41 Compare February 27, 2024 01:51
@renovate renovate bot force-pushed the renovate/devdependencies-(non-major) branch 4 times, most recently from a54c6a7 to aa078f6 Compare March 20, 2024 17:13
@renovate renovate bot force-pushed the renovate/devdependencies-(non-major) branch 6 times, most recently from 582a403 to f816896 Compare March 28, 2024 18:42
@renovate renovate bot force-pushed the renovate/devdependencies-(non-major) branch 3 times, most recently from 3774ea0 to 4af1d35 Compare April 3, 2024 17:25
@renovate renovate bot force-pushed the renovate/devdependencies-(non-major) branch 2 times, most recently from 6af1080 to 476b3e7 Compare April 16, 2024 09:34
@renovate renovate bot force-pushed the renovate/devdependencies-(non-major) branch 3 times, most recently from eb19857 to 21e69f9 Compare April 23, 2024 21:46
@renovate renovate bot force-pushed the renovate/devdependencies-(non-major) branch 2 times, most recently from af67e4b to c3fdb40 Compare May 8, 2024 15:33
@renovate renovate bot force-pushed the renovate/devdependencies-(non-major) branch 3 times, most recently from 3503a8b to d5036d4 Compare May 28, 2024 14:43
@renovate renovate bot force-pushed the renovate/devdependencies-(non-major) branch 3 times, most recently from 4445258 to f00d79d Compare June 5, 2024 09:19
@renovate renovate bot force-pushed the renovate/devdependencies-(non-major) branch 2 times, most recently from cb35e4a to 9f52b50 Compare August 13, 2024 23:24
@renovate renovate bot force-pushed the renovate/devdependencies-(non-major) branch 3 times, most recently from d571122 to ae4bdfd Compare August 20, 2024 16:14
@renovate renovate bot force-pushed the renovate/devdependencies-(non-major) branch 3 times, most recently from 4109a95 to 2d8b978 Compare August 29, 2024 19:36
@renovate renovate bot force-pushed the renovate/devdependencies-(non-major) branch 5 times, most recently from dfb7b3a to 92a1f7b Compare September 5, 2024 19:47
@renovate renovate bot force-pushed the renovate/devdependencies-(non-major) branch 5 times, most recently from 5b2fb40 to 4fd24be Compare September 17, 2024 12:49
@renovate renovate bot force-pushed the renovate/devdependencies-(non-major) branch 5 times, most recently from 4e8d7fe to fa6059c Compare September 27, 2024 03:34
@renovate renovate bot force-pushed the renovate/devdependencies-(non-major) branch 5 times, most recently from 5b7896f to 2a7eee5 Compare October 3, 2024 12:40
@renovate renovate bot force-pushed the renovate/devdependencies-(non-major) branch from 2a7eee5 to cc239fc Compare October 14, 2024 19:51
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.

0 participants