Skip to content

chore(deps): update devdependencies (non-major) (patch)#262

Open
renovate[bot] wants to merge 1 commit intomainfrom
renovate/patch-devdependencies-(non-major)
Open

chore(deps): update devdependencies (non-major) (patch)#262
renovate[bot] wants to merge 1 commit intomainfrom
renovate/patch-devdependencies-(non-major)

Conversation

@renovate
Copy link
Contributor

@renovate renovate bot commented Oct 11, 2024

ℹ️ Note

This PR body was truncated due to platform limits.

This PR contains the following updates:

Package Change Age Confidence
@cypress/code-coverage 3.13.23.13.12 age confidence
@eslint/compat (source) 1.2.01.2.9 age confidence
@vitejs/plugin-react (source) 4.3.14.3.4 age confidence
axios (source) 1.7.71.7.9 age confidence
cypress (source) 13.15.013.15.2 age confidence
eslint-config-prettier 9.1.09.1.2 age confidence
eslint-plugin-jsx-a11y 6.10.06.10.2 age confidence
eslint-plugin-prettier 5.2.15.2.6 age confidence
husky 9.1.69.1.7 age confidence
nock 13.5.513.5.6 age confidence
vite (source) 5.4.85.4.21 age confidence

Release Notes

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

v3.13.12

Compare Source

Bug Fixes

v3.13.11

Compare Source

Bug Fixes

v3.13.10

Compare Source

Bug Fixes

v3.13.9

Compare Source

Bug Fixes

v3.13.8

Compare Source

Bug Fixes

v3.13.7

Compare Source

Bug Fixes

v3.13.6

Compare Source

Bug Fixes

v3.13.5

Compare Source

Bug Fixes
  • fix: Batch coverage data sent to combineCoverage to prevent timeouts #​877

v3.13.4

Compare Source

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

v3.13.3

Compare Source

Bug Fixes
eslint/rewrite (@​eslint/compat)

v1.2.9

Compare Source

Bug Fixes

v1.2.8

Compare Source

Dependencies
  • The following workspace dependencies were updated

v1.2.7

Compare Source

Dependencies
  • The following workspace dependencies were updated

v1.2.6

Compare Source

Bug Fixes
Dependencies
  • The following workspace dependencies were updated

v1.2.5

Compare Source

Dependencies
  • The following workspace dependencies were updated

v1.2.4

Compare Source

Bug Fixes
Dependencies
  • The following workspace dependencies were updated

v1.2.3

Compare Source

Bug Fixes
Dependencies
  • The following workspace dependencies were updated

v1.2.2

Compare Source

Dependencies
  • The following workspace dependencies were updated

v1.2.1

Compare Source

Dependencies
  • The following workspace dependencies were updated
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 } })],
  }
})

v4.3.2

Compare Source

Ignore directive sourcemap error #​369

axios/axios (axios)

v1.7.9

Compare Source

Bug Fixes
Features
Reverts
BREAKING CHANGES
  • code relying on the above will now combine the URLs instead of prefer request URL

  • feat: add config option for allowing absolute URLs

  • fix: add default value for allowAbsoluteUrls in buildFullPath

  • fix: typo in flow control when setting allowAbsoluteUrls

Contributors to this release

1.7.9 (2024-12-04)

Reverts
Contributors to this release

1.7.8 (2024-11-25)

Bug Fixes
Contributors to this release

1.7.7 (2024-08-31)

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

1.7.6 (2024-08-30)

Bug Fixes
Contributors to this release

1.7.5 (2024-08-23)

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

1.7.4 (2024-08-13)

Bug Fixes
Contributors to this release

1.7.3 (2024-08-01)

Bug Fixes
Contributors to this release

1.7.2 (2024-05-21)

Bug Fixes
Contributors to this release

1.7.1 (2024-05-20)

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

v1.7.8

Compare Source

Bug Fixes
Features
Reverts
BREAKING CHANGES
  • code relying on the above will now combine the URLs instead of prefer request URL

  • feat: add config option for allowing absolute URLs

  • fix: add default value for allowAbsoluteUrls in buildFullPath

  • fix: typo in flow control when setting allowAbsoluteUrls

Contributors to this release

1.7.9 (2024-12-04)

Reverts
Contributors to this release

1.7.8 (2024-11-25)

Bug Fixes
Contributors to this release

1.7.7 (2024-08-31)

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

1.7.6 (2024-08-30)

Bug Fixes
Contributors to this release

1.7.5 (2024-08-23)

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

1.7.4 (2024-08-13)

Bug Fixes
Contributors to this release

1.7.3 (2024-08-01)

Bug Fixes
Contributors to this release

1.7.2 (2024-05-21)

Bug Fixes
Contributors to this release

1.7.1 (2024-05-20)

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

v13.15.2

Compare Source

Changelog: <h


Configuration

📅 Schedule: Branch creation - On day 1 of the month ( * * 1 * * ) (UTC), Automerge - At 12:00 AM through 04:59 AM and 10:00 PM through 11:59 PM, Monday through Friday ( * 0-4,22-23 * * 1-5 ), Only on Sunday and Saturday ( * * * * 0,6 ) (UTC).

🚦 Automerge: Enabled.

Rebasing: Whenever PR is behind base branch, 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 Oct 11, 2024
@renovate renovate bot force-pushed the renovate/patch-devdependencies-(non-major) branch 5 times, most recently from 466b107 to bb094b8 Compare October 21, 2024 06:03
@renovate renovate bot force-pushed the renovate/patch-devdependencies-(non-major) branch 5 times, most recently from f70b549 to 273582c Compare October 29, 2024 16:45
@renovate renovate bot force-pushed the renovate/patch-devdependencies-(non-major) branch 4 times, most recently from a369a3e to 304031b Compare November 11, 2024 11:11
@renovate renovate bot force-pushed the renovate/patch-devdependencies-(non-major) branch 2 times, most recently from cacef9c to 4383b8c Compare November 18, 2024 19:27
@renovate renovate bot force-pushed the renovate/patch-devdependencies-(non-major) branch 4 times, most recently from a5517e7 to 945af84 Compare December 2, 2024 11:52
@renovate renovate bot force-pushed the renovate/patch-devdependencies-(non-major) branch 3 times, most recently from 41492a6 to 993d7e6 Compare December 9, 2024 19:27
@renovate renovate bot force-pushed the renovate/patch-devdependencies-(non-major) branch 2 times, most recently from 5341a46 to 28ee5aa Compare January 10, 2025 20:29
@renovate renovate bot force-pushed the renovate/patch-devdependencies-(non-major) branch 4 times, most recently from e90a538 to 7ea3d4a Compare January 20, 2025 22:30
@renovate renovate bot force-pushed the renovate/patch-devdependencies-(non-major) branch 2 times, most recently from dfb83c9 to 798c45f Compare April 10, 2025 08:52
@renovate renovate bot force-pushed the renovate/patch-devdependencies-(non-major) branch 2 times, most recently from 3f5b010 to 39eaf2c Compare April 30, 2025 10:07
@renovate renovate bot force-pushed the renovate/patch-devdependencies-(non-major) branch from 39eaf2c to 8110307 Compare May 1, 2025 17:21
@renovate renovate bot force-pushed the renovate/patch-devdependencies-(non-major) branch from 8110307 to 9accf89 Compare May 19, 2025 15:21
@renovate renovate bot force-pushed the renovate/patch-devdependencies-(non-major) branch 2 times, most recently from bd4c488 to 0cd9d6f Compare June 4, 2025 08:59
@renovate renovate bot force-pushed the renovate/patch-devdependencies-(non-major) branch from 0cd9d6f to f16aafc Compare June 22, 2025 11:13
@renovate renovate bot force-pushed the renovate/patch-devdependencies-(non-major) branch from f16aafc to 841895f Compare July 2, 2025 20:33
@renovate renovate bot force-pushed the renovate/patch-devdependencies-(non-major) branch from 841895f to 7553352 Compare July 18, 2025 20:49
@renovate renovate bot force-pushed the renovate/patch-devdependencies-(non-major) branch 2 times, most recently from 503de7a to 9ae8d5d Compare August 13, 2025 13:32
@renovate renovate bot force-pushed the renovate/patch-devdependencies-(non-major) branch from 9ae8d5d to 05d2eb4 Compare August 19, 2025 19:55
@renovate renovate bot force-pushed the renovate/patch-devdependencies-(non-major) branch from 05d2eb4 to baf02f8 Compare August 31, 2025 12:06
@renovate renovate bot force-pushed the renovate/patch-devdependencies-(non-major) branch from baf02f8 to 7ffd24a Compare September 8, 2025 07:13
@renovate renovate bot force-pushed the renovate/patch-devdependencies-(non-major) branch from 7ffd24a to 74d26c1 Compare September 25, 2025 17:58
@renovate renovate bot force-pushed the renovate/patch-devdependencies-(non-major) branch 2 times, most recently from c31de34 to 2f5eb35 Compare October 21, 2025 19:47
@renovate renovate bot force-pushed the renovate/patch-devdependencies-(non-major) branch from 2f5eb35 to 25d0b7f Compare November 10, 2025 22:33
@renovate renovate bot force-pushed the renovate/patch-devdependencies-(non-major) branch from 25d0b7f to 7f7c223 Compare November 18, 2025 23:39
@renovate renovate bot force-pushed the renovate/patch-devdependencies-(non-major) branch from 7f7c223 to d33c1ed Compare December 3, 2025 15:03
@renovate renovate bot force-pushed the renovate/patch-devdependencies-(non-major) branch from d33c1ed to 884912a Compare December 31, 2025 18:36
@renovate renovate bot force-pushed the renovate/patch-devdependencies-(non-major) branch from 884912a to fd293c8 Compare January 8, 2026 21:00
@renovate renovate bot force-pushed the renovate/patch-devdependencies-(non-major) branch 2 times, most recently from b9dd6e9 to cfb9827 Compare January 23, 2026 20:53
@renovate renovate bot force-pushed the renovate/patch-devdependencies-(non-major) branch from cfb9827 to ef8dc19 Compare February 2, 2026 15:42
@renovate renovate bot force-pushed the renovate/patch-devdependencies-(non-major) branch from ef8dc19 to 1a176b4 Compare February 12, 2026 13:15
@renovate renovate bot force-pushed the renovate/patch-devdependencies-(non-major) branch from 1a176b4 to 45fa104 Compare February 17, 2026 17: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