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 all non-major dependencies #147

Merged
merged 1 commit into from
Feb 6, 2024

Conversation

renovate[bot]
Copy link
Contributor

@renovate renovate bot commented Jan 8, 2024

Mend Renovate

This PR contains the following updates:

Package Change Age Adoption Passing Confidence
@babel/types (source) ^7.23.6 -> ^7.23.9 age adoption passing confidence
@chialab/esbuild-plugin-html (source) ^0.17.3 -> ^0.18.0 age adoption passing confidence
@jridgewell/trace-mapping ^0.3.20 -> ^0.3.22 age adoption passing confidence
@swc/core (source) ^1.3.102 -> ^1.4.0 age adoption passing confidence
@types/node (source) ^20.10.6 -> ^20.11.16 age adoption passing confidence
@vitejs/plugin-vue (source) 5.0.2 -> 5.0.3 age adoption passing confidence
@vitest/ui (source) 1.1.3 -> 1.2.2 age adoption passing confidence
bumpp ^9.2.1 -> ^9.3.0 age adoption passing confidence
esbuild 0.19.11 -> 0.20.0 age adoption passing confidence
esbuild ^0.19.11 -> ^0.20.0 age adoption passing confidence
pnpm (source) 8.14.0 -> 8.15.1 age adoption passing confidence
rollup (source) ^4.9.4 -> ^4.9.6 age adoption passing confidence
rollup-plugin-esbuild ^6.1.0 -> ^6.1.1 age adoption passing confidence
sass ^1.69.7 -> ^1.70.0 age adoption passing confidence
swc-loader ^0.2.3 -> ^0.2.6 age adoption passing confidence
vite (source) ^5.0.11 -> ^5.0.12 age adoption passing confidence
vite-plugin-inspect ^0.8.1 -> ^0.8.3 age adoption passing confidence
vitest (source) 1.1.3 -> 1.2.2 age adoption passing confidence
vue (source) ^3.4.5 -> ^3.4.15 age adoption passing confidence
webpack ^5.89.0 -> ^5.90.1 age adoption passing confidence

Release Notes

babel/babel (@​babel/types)

v7.23.9

Compare Source

🐛 Bug Fix
  • babel-helper-transform-fixture-test-runner, babel-plugin-transform-function-name, babel-plugin-transform-modules-systemjs, babel-preset-env
  • babel-helper-create-class-features-plugin, babel-plugin-proposal-decorators
  • babel-plugin-proposal-decorators, babel-plugin-transform-async-generator-functions, babel-plugin-transform-runtime, babel-preset-env
  • babel-traverse
  • Other
🏠 Internal
🏃‍♀️ Performance
🔬 Output optimization
  • babel-helper-create-class-features-plugin, babel-plugin-proposal-decorators, babel-plugin-proposal-destructuring-private, babel-plugin-proposal-pipeline-operator, babel-plugin-transform-class-properties, babel-plugin-transform-class-static-block, babel-plugin-transform-new-target, babel-plugin-transform-parameters, babel-plugin-transform-private-methods, babel-preset-env
  • babel-helpers, babel-plugin-proposal-explicit-resource-management, babel-runtime-corejs2, babel-runtime-corejs3, babel-runtime
chialab/rna (@​chialab/esbuild-plugin-html)

v0.18.0

Compare Source

Minor Changes
Patch Changes
jridgewell/trace-mapping (@​jridgewell/trace-mapping)

v0.3.22

Compare Source

What's Changed

Full Changelog: jridgewell/trace-mapping@v0.3.21...v0.3.22

v0.3.21

Compare Source

What's Changed

Full Changelog: jridgewell/trace-mapping@v0.3.20...v0.3.21

swc-project/swc (@​swc/core)

v1.4.0

Compare Source

Bug Fixes
Features
Refactor
Testing
  • (es/minifer) Update the passing terser test list (#​8573) (8b86638)

  • (es/testing) Ensure that test_inline! is working properly (#​8590) (872a47b)

v1.3.107

Compare Source

Bug Fixes
  • (es/codegen) Do not produce octal literals (#​8565) (07634a0)

  • (es/decorator) Skip TypeScript class method/prop declarations (#​8555) (6a8dd8c)

  • (es/decorator) Preserve state while traversing the module_items scope (#​8556) (f416aff)

  • (es/loader) Make tsc resolver work for bare specifier (#​8550) (d6a4615)

v1.3.106

Compare Source

Bug Fixes
Features
Miscellaneous Tasks

v1.3.105

Compare Source

Bug Fixes
Miscellaneous Tasks
Testing

v1.3.104

Compare Source

Bug Fixes

v1.3.103

Compare Source

Bug Fixes
Documentation
Features
  • (html/parser) Allow self-closing /> on non-void HTML elements via a flag (#​8460) (566063d)
Refactor
Testing
vitejs/vite-plugin-vue (@​vitejs/plugin-vue)

v5.0.3

vitest-dev/vitest (@​vitest/ui)

v1.2.2

Compare Source

   🐞 Bug Fixes
    View changes on GitHub

v1.2.1

Compare Source

   🐞 Bug Fixes
    View changes on GitHub

v1.2.0

Compare Source

   🚀 Features
   🐞 Bug Fixes
    View changes on GitHub
antfu/bumpp (bumpp)

v9.3.0

Compare Source

   🚀 Features
   🐞 Bug Fixes
    View changes on GitHub
evanw/esbuild (esbuild)

v0.20.0

Compare Source

This release deliberately contains backwards-incompatible changes. To avoid automatically picking up releases like this, you should either be pinning the exact version of esbuild in your package.json file (recommended) or be using a version range syntax that only accepts patch upgrades such as ^0.19.0 or ~0.19.0. See npm's documentation about semver for more information.

This time there is only one breaking change, and it only matters for people using Deno. Deno tests that use esbuild will now fail unless you make the change described below.

  • Work around API deprecations in Deno 1.40.x (#​3609, #​3611)

    Deno 1.40.0 was just released and introduced run-time warnings about certain APIs that esbuild uses. With this release, esbuild will work around these run-time warnings by using newer APIs if they are present and falling back to the original APIs otherwise. This should avoid the warnings without breaking compatibility with older versions of Deno.

    Unfortunately, doing this introduces a breaking change. The newer child process APIs lack a way to synchronously terminate esbuild's child process, so calling esbuild.stop() from within a Deno test is no longer sufficient to prevent Deno from failing a test that uses esbuild's API (Deno fails tests that create a child process without killing it before the test ends). To work around this, esbuild's stop() function has been changed to return a promise, and you now have to change esbuild.stop() to await esbuild.stop() in all of your Deno tests.

  • Reorder implicit file extensions within node_modules (#​3341, #​3608)

    In version 0.18.0, esbuild changed the behavior of implicit file extensions within node_modules directories (i.e. in published packages) to prefer .js over .ts even when the --resolve-extensions= order prefers .ts over .js (which it does by default). However, doing that also accidentally made esbuild prefer .css over .ts, which caused problems for people that published packages containing both TypeScript and CSS in files with the same name.

    With this release, esbuild will reorder TypeScript file extensions immediately after the last JavaScript file extensions in the implicit file extension order instead of putting them at the end of the order. Specifically the default implicit fi


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 label Jan 8, 2024
Copy link

stackblitz bot commented Jan 8, 2024

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

@renovate renovate bot changed the title chore(deps): update dependency @types/node to ^20.10.7 chore(deps): update all non-major dependencies Jan 8, 2024
@renovate renovate bot force-pushed the renovate/all-minor-patch branch 11 times, most recently from 76172c6 to e6300b2 Compare January 12, 2024 06:45
Copy link

socket-security bot commented Jan 12, 2024

New and removed dependencies detected. Learn more about Socket for GitHub ↗︎

Package New capabilities Transitives Size Publisher
npm/@babel/[email protected] environment +3 2.49 MB nicolo-ribaudo
npm/@chialab/[email protected] Transitive: environment, eval, filesystem, shell, unsafe +5 10.8 MB chialab-admin
npm/@jridgewell/[email protected] None +2 265 kB jridgewell
npm/@swc/[email protected] None +2 399 kB kdy1, kwonoj
npm/@types/[email protected] None +1 4.06 MB types
npm/@vitejs/[email protected] environment Transitive: eval, filesystem, network, shell, unsafe +30 57.1 MB vitebot
npm/@vitest/[email protected] Transitive: environment, filesystem, network, shell, unsafe +86 17.4 MB antfu, oreanno, patak
npm/[email protected] environment, filesystem, unsafe Transitive: network, shell +75 6.69 MB antfu
npm/[email protected] environment, filesystem, network, shell 0 134 kB evanw
npm/[email protected] Transitive: environment, filesystem, network, shell, unsafe +11 2.79 MB egoist
npm/[email protected] environment, filesystem +1 2.2 MB lukastaegert
npm/[email protected] filesystem 0 5.2 MB sassbot
npm/[email protected] Transitive: environment, eval, filesystem, network, shell, unsafe +291 28.5 MB kdy1
npm/[email protected] Transitive: environment, filesystem, network, shell +30 15 MB antfu, sxzz
npm/[email protected] Transitive: environment, filesystem, network, shell +8 10.1 MB antfu, patak, soda, ...2 more
npm/[email protected] Transitive: environment, filesystem, network, shell, unsafe +86 17.4 MB antfu, oreanno, patak
npm/[email protected] environment, eval Transitive: filesystem, unsafe +23 47 MB yyx990803
npm/[email protected] environment, filesystem, network, unsafe Transitive: eval, shell +366 43.1 MB evilebottnawi

🚮 Removed packages: npm/@babel/[email protected], npm/@chialab/[email protected], npm/@jridgewell/[email protected], npm/@swc/[email protected], npm/@types/[email protected], npm/@vitejs/[email protected], npm/@vitest/[email protected], npm/[email protected], npm/[email protected], npm/[email protected], npm/[email protected], npm/[email protected], npm/[email protected], npm/[email protected], npm/[email protected], npm/[email protected]

View full report↗︎

@renovate renovate bot force-pushed the renovate/all-minor-patch branch 9 times, most recently from cc5ab93 to 9f1b889 Compare January 17, 2024 08:18
Copy link

socket-security bot commented Jan 17, 2024

👍 Dependency issues cleared. Learn more about Socket for GitHub ↗︎

This PR previously contained dependency changes with security issues that have been resolved, removed, or ignored.

View full report↗︎

@renovate renovate bot force-pushed the renovate/all-minor-patch branch 5 times, most recently from ed97583 to cf3c73e Compare January 18, 2024 15:18
@renovate renovate bot force-pushed the renovate/all-minor-patch branch 12 times, most recently from a703487 to 8f0e4a2 Compare January 26, 2024 05:42
@renovate renovate bot force-pushed the renovate/all-minor-patch branch 13 times, most recently from 8bd3e77 to d9d3676 Compare February 1, 2024 18:57
@renovate renovate bot force-pushed the renovate/all-minor-patch branch from d9d3676 to 78befa2 Compare February 5, 2024 10:41
@sxzz sxzz merged commit 2756d00 into main Feb 6, 2024
9 checks passed
@sxzz sxzz deleted the renovate/all-minor-patch branch February 6, 2024 05:17
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Projects
None yet
Development

Successfully merging this pull request may close these issues.

1 participant