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

fix(deps): update all non-major dependencies #17321

Merged
merged 1 commit into from
May 27, 2024
Merged

Conversation

renovate[bot]
Copy link
Contributor

@renovate renovate bot commented May 27, 2024

Mend Renovate

This PR contains the following updates:

Package Change Age Adoption Passing Confidence Type Update
@babel/core (source) ^7.24.5 -> ^7.24.6 age adoption passing confidence dependencies patch
@babel/parser (source) ^7.24.5 -> ^7.24.6 age adoption passing confidence devDependencies patch
@babel/preset-env (source) ^7.24.5 -> ^7.24.6 age adoption passing confidence dependencies patch
@babel/runtime (source) ^7.24.5 -> ^7.24.6 age adoption passing confidence dependencies patch
@babel/types (source) ^7.24.5 -> ^7.24.6 age adoption passing confidence devDependencies patch
@builder.io/qwik (source) ^1.5.4 -> ^1.5.5 age adoption passing confidence dependencies patch
@rollup/plugin-commonjs (source) ^25.0.7 -> ^25.0.8 age adoption passing confidence devDependencies patch
@types/react (source) ^18.3.2 -> ^18.3.3 age adoption passing confidence devDependencies patch
@typescript-eslint/eslint-plugin (source) ^7.9.0 -> ^7.10.0 age adoption passing confidence devDependencies minor
@typescript-eslint/parser (source) ^7.9.0 -> ^7.10.0 age adoption passing confidence devDependencies minor
@vitejs/plugin-react (source) ^4.2.1 -> ^4.3.0 age adoption passing confidence devDependencies minor
axios (source) ^1.7.0 -> ^1.7.2 age adoption passing confidence dependencies patch
eslint-plugin-regexp ^2.5.0 -> ^2.6.0 age adoption passing confidence devDependencies minor
lightningcss ^1.25.0 -> ^1.25.1 age adoption passing confidence devDependencies patch
lint-staged ^15.2.2 -> ^15.2.5 age adoption passing confidence devDependencies patch
micromatch ^4.0.5 -> ^4.0.7 age adoption passing confidence devDependencies patch
playwright-chromium (source) ^1.44.0 -> ^1.44.1 age adoption passing confidence devDependencies patch
pug (source) ^3.0.2 -> ^3.0.3 age adoption passing confidence devDependencies patch
tj-actions/changed-files v44.4.0 -> v44.5.1 age adoption passing confidence action minor
tsx ^4.10.5 -> ^4.11.0 age adoption passing confidence devDependencies minor
vitepress (source) 1.2.0 -> 1.2.2 age adoption passing confidence devDependencies patch

Release Notes

babel/babel (@​babel/core)

v7.24.6

Compare Source

🐛 Bug Fix
  • babel-helper-create-class-features-plugin, babel-plugin-transform-class-properties
  • babel-core, babel-generator, babel-plugin-transform-modules-commonjs
  • babel-helper-create-class-features-plugin, babel-plugin-proposal-decorators
  • babel-helpers, babel-plugin-proposal-decorators, babel-runtime-corejs3
  • babel-parser, babel-plugin-transform-typescript
🏠 Internal
  • babel-core, babel-helpers, babel-plugin-transform-runtime, babel-preset-env, babel-runtime-corejs2, babel-runtime-corejs3, babel-runtime
  • babel-helpers
  • babel-cli, babel-helpers, babel-plugin-external-helpers, babel-plugin-proposal-decorators, babel-plugin-transform-class-properties, babel-plugin-transform-modules-commonjs, babel-plugin-transform-modules-systemjs, babel-plugin-transform-runtime, babel-preset-env, babel-runtime-corejs2, babel-runtime-corejs3, babel-runtime
  • babel-parser, babel-traverse
  • Other
babel/babel (@​babel/parser)

v7.24.6

Compare Source

v7.24.6 (2024-05-24)

Thanks @​amjed-98, @​blakewilson, @​coelhucas, and @​SukkaW for your first PRs!

🐛 Bug Fix
  • babel-helper-create-class-features-plugin, babel-plugin-transform-class-properties
  • babel-core, babel-generator, babel-plugin-transform-modules-commonjs
  • babel-helper-create-class-features-plugin, babel-plugin-proposal-decorators
  • babel-helpers, babel-plugin-proposal-decorators, babel-runtime-corejs3
  • babel-parser, babel-plugin-transform-typescript
🏠 Internal
  • babel-core, babel-helpers, babel-plugin-transform-runtime, babel-preset-env, babel-runtime-corejs2, babel-runtime-corejs3, babel-runtime
  • babel-helpers
  • babel-cli, babel-helpers, babel-plugin-external-helpers, babel-plugin-proposal-decorators, babel-plugin-transform-class-properties, babel-plugin-transform-modules-commonjs, babel-plugin-transform-modules-systemjs, babel-plugin-transform-runtime, babel-preset-env, babel-runtime-corejs2, babel-runtime-corejs3, babel-runtime
  • babel-parser, babel-traverse
  • Other
Committers: 9
QwikDev/qwik (@​builder.io/qwik)

v1.5.5

Compare Source

What's Changed
New Contributors

Full Changelog: QwikDev/qwik@v1.5.4...v1.5.5

rollup/plugins (@​rollup/plugin-commonjs)

v25.0.8

2024-05-22

Bugfixes
  • fix: preserve the class body property keys even if they are special keywords (#​1688)
typescript-eslint/typescript-eslint (@​typescript-eslint/eslint-plugin)

v7.10.0

Compare Source

🚀 Features
  • eslint-plugin: [sort-type-constituents] support case sensitive sorting
🩹 Fixes
  • eslint-plugin: [prefer-regexp-exec] fix heuristic to check whether regex may contain global flag
❤️ Thank You
  • auvred
  • Emanuel Hoogeveen
  • jsfm01
  • Kirk Waiblinger

You can read about our versioning strategy and releases on our website.

typescript-eslint/typescript-eslint (@​typescript-eslint/parser)

v7.10.0

Compare Source

This was a version bump only for parser to align it with other projects, there were no code changes.

You can read about our versioning strategy and releases on our website.

vitejs/vite-plugin-react (@​vitejs/plugin-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.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
ota-meshi/eslint-plugin-regexp (eslint-plugin-regexp)

v2.6.0

Compare Source

Minor Changes
  • Improved compatibility of type information with typescript-eslint in config. (#​740)
parcel-bundler/lightningcss (lightningcss)

v1.25.1

Compare Source

Fixes a property ordering bug when using the all shorthand.

okonet/lint-staged (lint-staged)

v15.2.5

Compare Source

Patch Changes

v15.2.4

Compare Source

Patch Changes
  • 4f4537a Thanks @​iiroj! - Fix release issue with previous version; update dependencies
micromatch/micromatch (micromatch)

v4.0.7

Compare Source

v4.0.6

Compare Source

microsoft/playwright (playwright-chromium)

v1.44.1

Compare Source

Highlights

https://github.com/microsoft/playwright/issues/30779 - [REGRESSION]: When using video: 'on' with VSCode extension the browser got closed
https://github.com/microsoft/playwright/issues/30755 - [REGRESSION]: Electron launch with spaces inside executablePath didn't workhttps://github.com/microsoft/playwright/issues/307700 - [REGRESSION]: Mask elements outside of viewport when creating fullscreen screenshots didn't worhttps://github.com/microsoft/playwright/issues/3085858 - [REGRESSION]: ipv6 got shown instead of localhost in show-trace/show-report

Browser Versions

  • Chromium 125.0.6422.14
  • Mozilla Firefox 125.0.1
  • WebKit 17.4

This version was also tested against the following stable channels:

  • Google Chrome 124
  • Microsoft Edge 124
pugjs/pug (pug)

v3.0.3

Compare Source

Bug Fixes

  • Update pug-code-gen with the following fix: (#​3438)

    Validate templateName and globals are valid JavaScript identifiers to prevent possible remote code execution if un-trusted user input is passed to the compilation options

tj-actions/changed-files (tj-actions/changed-files)

v44.5.1

Compare Source

What's Changed

Full Changelog: tj-actions/changed-files@v44...v44.5.1

v44.5.0

Compare Source

What's Changed

Full Changelog: tj-actions/changed-files@v44...v44.5.0

privatenumber/tsx (tsx)

v4.11.0

Compare Source

Bug Fixes
  • only error on invalid tsconfig if explicitly passed in (#​30) (b6bf39b)
Features
  • esm api: configurable tsconfig (3f42ae3)

This release is also available on:

vuejs/vitepress (vitepress)

v1.2.2

Compare Source

Bug Fixes
  • dont escape ampersand twice in title (7ea3572)

v1.2.1

Compare Source

Bug Fixes
  • a11y: make code blocks accessible with keyboard (#​3902) (cb308b9)
  • escape title properly in build (49b1233)
  • theme: remove unnecessary navigation role on nav element (af4717d)

Configuration

📅 Schedule: Branch creation - "before 4am on Monday" (UTC), 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 has been generated by Mend Renovate. View repository job log here.

@renovate renovate bot added the dependencies Pull requests that update a dependency file label May 27, 2024
Copy link

stackblitz bot commented May 27, 2024

Review PR in StackBlitz Codeflow Run & review this pull request in StackBlitz Codeflow.

@bluwy bluwy merged commit 4a89766 into main May 27, 2024
11 checks passed
@bluwy bluwy deleted the renovate/all-minor-patch branch May 27, 2024 04:16
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