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

Merged
merged 4 commits into from May 16, 2023
Merged

Conversation

renovate[bot]
Copy link
Contributor

@renovate renovate bot commented May 1, 2023

Mend Renovate

This PR contains the following updates:

Package Change Age Adoption Passing Confidence
@nuxt/devtools ^0.4.5 -> ^0.4.6 age adoption passing confidence
@unocss/reset ^0.51.12 -> ^0.51.13 age adoption passing confidence
@vitejs/plugin-vue (source) ^4.2.2 -> ^4.2.3 age adoption passing confidence
@vue/compiler-core (source) ^3.3.1 -> ^3.3.2 age adoption passing confidence
@vue/compiler-dom (source) ^3.3.1 -> ^3.3.2 age adoption passing confidence
@vue/compiler-sfc (source) ^3.3.1 -> ^3.3.2 age adoption passing confidence
@vue/shared (source) ^3.3.1 -> ^3.3.2 age adoption passing confidence
esbuild ^0.17.18 -> ^0.17.19 age adoption passing confidence
pnpm (source) 8.3.1 -> 8.5.1 age adoption passing confidence
rollup (source) ^3.21.6 -> ^3.21.8 age adoption passing confidence
turbo (source) ^1.9.3 -> ^1.9.6 age adoption passing confidence
unocss ^0.51.12 -> ^0.51.13 age adoption passing confidence
vite (source) ^4.3.5 -> ^4.3.6 age adoption passing confidence

Release Notes

nuxt/devtools

v0.4.6

Compare Source

Bug Fixes
Features
unocss/unocss

v0.51.13

Compare Source

vitejs/vite-plugin-vue

v4.2.3

Compare Source

  • fix(types): widen allowed script options for 3.3 features (3ac08e4)
vuejs/core

v3.3.2

Compare Source

Bug Fixes
  • compiler-core: treat floating point numbers as constants (8dc8cf8), closes #​8295
  • compiler-dom: do not throw in production on side effect tags (c454b9d), closes #​8287 #​8292
  • compiler-sfc: fix regression on props destructure when transform is not enabled (f25bd37), closes #​8289
  • compiler-sfc: handle prop keys that need escaping (#​7803) (690ef29), closes #​8291
  • compiler-sfc: properly parse d.ts files when resolving types (aa1e77d), closes #​8285
  • compiler-sfc: raise specific warning for failed extends and allow ignoring extends (8235072), closes #​8286
evanw/esbuild

v0.17.19

Compare Source

  • Fix CSS transform bugs with nested selectors that start with a combinator (#​3096)

    This release fixes several bugs regarding transforming nested CSS into non-nested CSS for older browsers. The bugs were due to lack of test coverage for nested selectors with more than one compound selector where they all start with the same combinator. Here's what some problematic cases look like before and after these fixes:

    /* Original code */
    .foo {
      > &a,
      > &b {
        color: red;
      }
    }
    .bar {
      > &a,
      + &b {
        color: green;
      }
    }
    
    /* Old output (with --target=chrome90) */
    .foo :is(> .fooa, > .foob) {
      color: red;
    }
    .bar :is(> .bara, + .barb) {
      color: green;
    }
    
    /* New output (with --target=chrome90) */
    .foo > :is(a.foo, b.foo) {
      color: red;
    }
    .bar > a.bar,
    .bar + b.bar {
      color: green;
    }
  • Fix bug with TypeScript parsing of instantiation expressions followed by = (#​3111)

    This release fixes esbuild's TypeScript-to-JavaScript conversion code in the case where a potential instantiation expression is followed immediately by a = token (such that the trailing > becomes a >= token). Previously esbuild considered that to still be an instantiation expression, but the official TypeScript compiler considered it to be a >= operator instead. This release changes esbuild's interpretation to match TypeScript. This edge case currently appears to be problematic for other TypeScript-to-JavaScript converters as well:

    Original code TypeScript esbuild 0.17.18 esbuild 0.17.19 Sucrase Babel
    x<y>=a<b<c>>() x<y>=a(); x=a(); x<y>=a(); x=a() Invalid left-hand side in assignment expression
  • Avoid removing unrecognized directives from the directive prologue when minifying (#​3115)

    The directive prologue in JavaScript is a sequence of top-level string expressions that come before your code. The only directives that JavaScript engines currently recognize are use strict and sometimes use asm. However, the people behind React have made up their own directive for their own custom dialect of JavaScript. Previously esbuild only preserved the use strict directive when minifying, although you could still write React JavaScript with esbuild using something like --banner:js="'your directive here';". With this release, you can now put arbitrary directives in the entry point and esbuild will preserve them in its minified output:

    // Original code
    'use wtf'; console.log(123)
    
    // Old output (with --minify)
    console.log(123);
    
    // New output (with --minify)
    "use wtf";console.log(123);

    Note that this means esbuild will no longer remove certain stray top-level strings when minifying. This behavior is an intentional change because these stray top-level strings are actually part of the directive prologue, and could potentially have semantics assigned to them (as was the case with React).

  • Improved minification of binary shift operators

    With this release, esbuild's minifier will now evaluate the << and >>> operators if the resulting code would be shorter:

    // Original code
    console.log(10 << 10, 10 << 20, -123 >>> 5, -123 >>> 10);
    
    // Old output (with --minify)
    console.log(10<<10,10<<20,-123>>>5,-123>>>10);
    
    // New output (with --minify)
    console.log(10240,10<<20,-123>>>5,4194303);
pnpm/pnpm

v8.5.1

Compare Source

Patch Changes
  • Expanded missing command error, including 'did you mean' #​6492.
  • When installation fails because the lockfile is not up-to-date with the package.json file(s), print out what are the differences #​6536.
  • Normalize current working directory on Windows #​6524.
Our Gold Sponsors
Our Silver Sponsors

v8.5.0

Compare Source

Minor Changes
  • pnpm patch-remove command added #​6521.
Patch Changes
  • pnpm link -g <pkg-name> should not modify the package.json file #​4341.
  • The deploy command should not ask for confirmation to purge the node_modules directory #​6510.
  • Show cyclic workspace dependency details #​5059.
  • Node.js range specified through the engines field should match prerelease versions #​6509.
Our Gold Sponsors
Our Silver Sponsors

v8.4.0

Compare Source

Minor Changes

  • pnpm publish supports the --provenance CLI option #​6435.

Patch Changes

  • Link the bin files of local workspace dependencies, when node-linker is set to hoisted 6486.
  • Ask the user to confirm the removal of node_modules directory unless the --force option is passed.
  • Do not create a node_modules folder with a .modules.yaml file if there are no dependencies inside node_modules.

Our Gold Sponsors

Our Silver Sponsors

rollup/rollup

v3.21.8

Compare Source

2023-05-16

Bug Fixes
  • Allow a namespace to properly contain itself as a named export (#​4991)
Pull Requests

v3.21.7

Compare Source

2023-05-13

Bug Fixes
  • Show correct error on uncaught exceptions in watch mode (#​4987)
Pull Requests
vercel/turbo

v1.9.6: Turborepo v1.9.6

Compare Source

What's Changed

Changelog

Full Changelog: vercel/turbo@v1.9.5...v1.9.6

v1.9.5: Turborepo v1.9.5

Compare Source

What's Changed

Changelog

New Contributors

Full Changelog: vercel/turbo@v1.9.4...v1.9.5

v1.9.4: Turborepo v1.9.4

Compare Source

What's Changed

Changelog

New Contributors

Full Changelog: vercel/turbo@v1.9.3...v1.9.4

vitejs/vite

v4.3.6

Compare Source


Configuration

📅 Schedule: Branch creation - "before 3am 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 May 1, 2023
@stackblitz
Copy link

stackblitz bot commented May 1, 2023

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

@changeset-bot
Copy link

changeset-bot bot commented May 1, 2023

⚠️ No Changeset found

Latest commit: 3014559

Merging this PR will not cause a version bump for any packages. If these changes should not result in a new version, you're good to go. If these changes should result in a version bump, you need to add a changeset.

This PR includes no changesets

When changesets are added to this PR, you'll see the packages that this PR includes changesets for and the associated semver types

Click here to learn what changesets are, and how to add one.

Click here if you're a maintainer who wants to add a changeset to this PR

@vercel vercel bot temporarily deployed to Preview – unplugin-vue-macros-coverage May 1, 2023 00:26 Inactive
@vercel vercel bot temporarily deployed to Preview – unplugin-vue-macros May 1, 2023 00:28 Inactive
@socket-security
Copy link

socket-security bot commented May 1, 2023

New dependency changes detected. Learn more about Socket for GitHub ↗︎


🚨 Potential security issues found in this pull request. To accept the risk, merge this PR and you will not be notified again.

Bot Commands

To ignore an alert, reply with a comment starting with @SocketSecurity ignore followed by a space separated list of package-name@version specifiers. e.g. @SocketSecurity ignore foo@1.0.0 bar@* or ignore all packages with @SocketSecurity ignore-all

  • @SocketSecurity ignore turbo@1.9.6
📜 Install scripts

Install scripts are run when the package is installed. The majority of malware in npm is hidden in install scripts.

Packages should not be running non-essential scripts during install and there are often solutions to problems people solve with install scripts that can be run at publish time instead.

Package Script field Source
turbo@1.9.6 (added) postinstall package.json, pnpm-lock.yaml
Pull request alert summary
Issue Status
Install scripts ⚠️ 1 issue
Native code ✅ 0 issues
Bin script shell injection ✅ 0 issues
Unresolved require ✅ 0 issues
Invalid package.json ✅ 0 issues
HTTP dependency ✅ 0 issues
Git dependency ✅ 0 issues
Potential typo squat ✅ 0 issues
Known Malware ✅ 0 issues
Telemetry ✅ 0 issues
Protestware/Troll package ✅ 0 issues

📊 Modified Dependency Overview:

➕ Added Package Capability Access +/- Transitive Count Publisher
turbo@1.9.6 network, filesystem, shell, environment +0 turbobot
@types/node@20.1.5 None +0 types
⬆️ Updated Package Version Diff Added Capability Access +/- Transitive Count Publisher
esbuild@0.17.19 0.17.18...0.17.19 None +0/-0 evanw
unocss@0.51.13 0.51.12...0.51.13 None +52/-50 antfu
@unocss/reset@0.51.13 0.51.12...0.51.13 None +0/-0 antfu
rollup@3.21.8 3.21.6...3.21.8 None +0/-0 lukastaegert

🚮 Removed packages: @volar/language-core@1.6.3

@sxzz sxzz enabled auto-merge (squash) May 1, 2023 02:31
@renovate renovate bot force-pushed the renovate/all-minor-patch branch from 05b77ae to 311e549 Compare May 1, 2023 02:32
@vercel vercel bot temporarily deployed to Preview – unplugin-vue-macros-coverage May 1, 2023 02:32 Inactive
@vercel vercel bot temporarily deployed to Preview – unplugin-vue-macros May 1, 2023 02:34 Inactive
@renovate renovate bot force-pushed the renovate/all-minor-patch branch from 311e549 to 869beb1 Compare May 1, 2023 05:52
@vercel vercel bot temporarily deployed to Preview – unplugin-vue-macros-coverage May 1, 2023 05:52 Inactive
@vercel vercel bot temporarily deployed to Preview – unplugin-vue-macros May 1, 2023 05:54 Inactive
@renovate renovate bot force-pushed the renovate/all-minor-patch branch from 869beb1 to 4772017 Compare May 1, 2023 06:11
@vercel vercel bot temporarily deployed to Preview – unplugin-vue-macros May 1, 2023 06:13 Inactive
@vercel vercel bot temporarily deployed to Preview – unplugin-vue-macros-coverage May 1, 2023 06:14 Inactive
@renovate renovate bot force-pushed the renovate/all-minor-patch branch from 4772017 to 94d7132 Compare May 2, 2023 01:09
@vercel vercel bot temporarily deployed to Preview – unplugin-vue-macros-coverage May 2, 2023 01:10 Inactive
@vercel vercel bot temporarily deployed to Preview – unplugin-vue-macros May 2, 2023 01:12 Inactive
@renovate renovate bot force-pushed the renovate/all-minor-patch branch from 94d7132 to a9267a9 Compare May 2, 2023 05:28
@renovate renovate bot force-pushed the renovate/all-minor-patch branch from 6396eeb to db3c577 Compare May 15, 2023 16:16
@vercel vercel bot temporarily deployed to Preview – unplugin-vue-macros-coverage May 15, 2023 16:16 Inactive
@vercel vercel bot temporarily deployed to Preview – unplugin-vue-macros May 15, 2023 16:17 Inactive
@renovate renovate bot force-pushed the renovate/all-minor-patch branch from db3c577 to 66d8e18 Compare May 15, 2023 16:19
@vercel vercel bot temporarily deployed to Preview – unplugin-vue-macros-coverage May 15, 2023 16:20 Inactive
@vercel vercel bot temporarily deployed to Preview – unplugin-vue-macros May 15, 2023 16:20 Inactive
@renovate renovate bot force-pushed the renovate/all-minor-patch branch from 66d8e18 to 48727f6 Compare May 16, 2023 10:15
@vercel vercel bot temporarily deployed to Preview – unplugin-vue-macros-coverage May 16, 2023 10:15 Inactive
@vercel vercel bot temporarily deployed to Preview – unplugin-vue-macros May 16, 2023 10:16 Inactive
@renovate renovate bot force-pushed the renovate/all-minor-patch branch from 48727f6 to 665e683 Compare May 16, 2023 10:44
@vercel vercel bot temporarily deployed to Preview – unplugin-vue-macros-coverage May 16, 2023 10:44 Inactive
@vercel vercel bot temporarily deployed to Preview – unplugin-vue-macros May 16, 2023 10:45 Inactive
@renovate renovate bot force-pushed the renovate/all-minor-patch branch from 665e683 to 4c74043 Compare May 16, 2023 10:48
@vercel vercel bot temporarily deployed to Preview – unplugin-vue-macros-coverage May 16, 2023 10:49 Inactive
@vercel vercel bot temporarily deployed to Preview – unplugin-vue-macros May 16, 2023 10:50 Inactive
@renovate renovate bot force-pushed the renovate/all-minor-patch branch from 4c74043 to e62d221 Compare May 16, 2023 11:09
@vercel vercel bot temporarily deployed to Preview – unplugin-vue-macros-coverage May 16, 2023 11:10 Inactive
@vercel vercel bot temporarily deployed to Preview – unplugin-vue-macros May 16, 2023 11:11 Inactive
@renovate
Copy link
Contributor Author

renovate bot commented May 16, 2023

Edited/Blocked Notification

Renovate will not automatically rebase this PR, because it does not recognize the last commit author and assumes somebody else may have edited the PR.

You can manually request rebase by checking the rebase/retry box above.

Warning: custom changes will be lost.

@vercel vercel bot temporarily deployed to Preview – unplugin-vue-macros-coverage May 16, 2023 11:19 Inactive
@vercel vercel bot temporarily deployed to Preview – unplugin-vue-macros May 16, 2023 11:20 Inactive
@vercel vercel bot temporarily deployed to Preview – unplugin-vue-macros-coverage May 16, 2023 11:28 Inactive
@vercel vercel bot temporarily deployed to Preview – unplugin-vue-macros May 16, 2023 11:29 Inactive
@sxzz sxzz disabled auto-merge May 16, 2023 11:32
@sxzz sxzz merged commit a4c5463 into main May 16, 2023
7 of 8 checks passed
@sxzz sxzz deleted the renovate/all-minor-patch branch May 16, 2023 11:32
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.

None yet

1 participant