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 #82

Merged
merged 1 commit into from
Aug 19, 2024

Conversation

renovate[bot]
Copy link
Contributor

@renovate renovate bot commented Aug 19, 2024

Mend Renovate

This PR contains the following updates:

Package Change Age Adoption Passing Confidence
@oxc-parser/wasm (source) ^0.24.1 -> ^0.24.3 age adoption passing confidence
@shikijs/monaco (source) ^1.12.1 -> ^1.14.1 age adoption passing confidence
@swc/wasm-web 1.7.10 -> 1.7.12 age adoption passing confidence
@sxzz/eslint-config ^3.17.0 -> ^3.17.2 age adoption passing confidence
@typescript-eslint/parser (source) ^8.0.1 -> ^8.1.0 age adoption passing confidence
@unocss/nuxt (source) ^0.61.9 -> ^0.62.2 age adoption passing confidence
@vue/compiler-dom (source) ^3.4.37 -> ^3.4.38 age adoption passing confidence
@vue/compiler-sfc (source) ^3.4.37 -> ^3.4.38 age adoption passing confidence
bumpp ^9.4.2 -> ^9.5.1 age adoption passing confidence
esbuild ^0.23.0 -> ^0.23.1 age adoption passing confidence
flow-parser (source) ^0.243.0 -> ^0.244.0 age adoption passing confidence
pnpm (source) 9.7.0 -> 9.7.1 age adoption passing confidence
shiki (source) ^1.12.1 -> ^1.14.1 age adoption passing confidence

Release Notes

oxc-project/oxc (@​oxc-parser/wasm)

v0.24.3

Compare Source

v0.24.2

Compare Source

shikijs/shiki (@​shikijs/monaco)

v1.14.1

Compare Source

   🚀 Features
    View changes on GitHub

v1.14.0

Compare Source

   🚀 Features
   🐞 Bug Fixes
    View changes on GitHub

v1.13.0

Compare Source

   🚀 Features
    View changes on GitHub
swc-project/swc (@​swc/wasm-web)

v1.7.12

Compare Source

Bug Fixes
Miscellaneous Tasks

v1.7.11

Compare Source

Bug Fixes
Features
  • (es/typescript) Add native_class_properties to skip reordering of class properties inits (#​9421) (d2929d1)

  • (estree/compat) Remove dependency on rayon (#​9393) (34d1b27)

  • (html/minifier) Support using custom css minifier (#​9425) (970cc81)

Miscellaneous Tasks
sxzz/eslint-config (@​sxzz/eslint-config)

v3.17.2

Compare Source

   🐞 Bug Fixes
    View changes on GitHub

v3.17.1

Compare Source

   🚀 Features
  • Enable @typescript-eslint/no-unused-expressions  -  by @​sxzz (f5932)
   🐞 Bug Fixes
    View changes on GitHub
typescript-eslint/typescript-eslint (@​typescript-eslint/parser)

v8.1.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.

unocss/unocss (@​unocss/nuxt)

v0.62.2

Compare Source

   🚀 Features
   🐞 Bug Fixes
    View changes on GitHub

v0.62.1

Compare Source

   🐞 Bug Fixes
    View changes on GitHub

v0.62.0

Compare Source

   🚀 Features
   🐞 Bug Fixes
    View changes on GitHub
vuejs/core (@​vue/compiler-dom)

v3.4.38

Compare Source

For stable releases, please refer to CHANGELOG.md for details.
For pre-releases, please refer to CHANGELOG.md of the minor branch.

antfu/bumpp (bumpp)

v9.5.1

Compare Source

   🚀 Features
    View changes on GitHub

v9.5.0

Compare Source

evanw/esbuild (esbuild)

v0.23.1

Compare Source

  • Allow using the node: import prefix with es* targets (#​3821)

    The node: prefix on imports is an alternate way to import built-in node modules. For example, import fs from "fs" can also be written import fs from "node:fs". This only works with certain newer versions of node, so esbuild removes it when you target older versions of node such as with --target=node14 so that your code still works. With the way esbuild's platform-specific feature compatibility table works, this was added by saying that only newer versions of node support this feature. However, that means that a target such as --target=node18,es2022 removes the node: prefix because none of the es* targets are known to support this feature. This release adds the support for the node: flag to esbuild's internal compatibility table for es* to allow you to use compound targets like this:

    // Original code
    import fs from 'node:fs'
    fs.open
    
    // Old output (with --bundle --format=esm --platform=node --target=node18,es2022)
    import fs from "fs";
    fs.open;
    
    // New output (with --bundle --format=esm --platform=node --target=node18,es2022)
    import fs from "node:fs";
    fs.open;
  • Fix a panic when using the CLI with invalid build flags if --analyze is present (#​3834)

    Previously esbuild's CLI could crash if it was invoked with flags that aren't valid for a "build" API call and the --analyze flag is present. This was caused by esbuild's internals attempting to add a Go plugin (which is how --analyze is implemented) to a null build object. The panic has been fixed in this release.

  • Fix incorrect location of certain error messages (#​3845)

    This release fixes a regression that caused certain errors relating to variable declarations to be reported at an incorrect location. The regression was introduced in version 0.18.7 of esbuild.

  • Print comments before case clauses in switch statements (#​3838)

    With this release, esbuild will attempt to print comments that come before case clauses in switch statements. This is similar to what esbuild already does for comments inside of certain types of expressions. Note that these types of comments are not printed if minification is enabled (specifically whitespace minification).

  • Fix a memory leak with pluginData (#​3825)

    With this release, the build context's internal pluginData cache will now be cleared when starting a new build. This should fix a leak of memory from plugins that return pluginData objects from onResolve and/or onLoad callbacks.

facebook/flow (flow-parser)

v0.244.0

Compare Source

Likely to cause new Flow errors:

  • The inexact_tuple_types_syntax option (which was on by default) is now deleted. Make sure you are using hermes-parser and related packages at version >= 0.23.0
  • Render types will no longer allow specific renders wrapping more general renders like renders React.Element<React.AbstractComponent<{}, mixed, renders* A>>. Invalid render types will behave like any.
  • Some previously allowed generic render types are no longer allowed (example). This ensures that generic render types are only used to model transparent components like React.Fragment.
  • renders* T where T is generic is now banned.

Notable bug fixes:

  • Render type with union type arguments will be correctly wrapped with parentheses.
pnpm/pnpm (pnpm)

v9.7.1

Compare Source


Configuration

📅 Schedule: Branch creation - "before 4am on Monday" (UTC), Automerge - At any time (no schedule defined).

🚦 Automerge: Enabled.

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.

Copy link

stackblitz bot commented Aug 19, 2024

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

Copy link

vercel bot commented Aug 19, 2024

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

Name Status Preview Comments Updated (UTC)
ast-explorer ✅ Ready (Inspect) Visit Preview 💬 Add feedback Aug 19, 2024 4:48am

Copy link

socket-security bot commented Aug 19, 2024

@renovate renovate bot force-pushed the renovate/all-minor-patch branch from 48405d1 to 7c162e9 Compare August 19, 2024 04:44
@sxzz sxzz merged commit b73058b into main Aug 19, 2024
5 checks passed
@sxzz sxzz deleted the renovate/all-minor-patch branch August 19, 2024 05:09
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