Skip to content
This repository has been archived by the owner on Apr 6, 2023. It is now read-only.

chore(deps): update all non-major dependencies #8350

Merged
merged 1 commit into from
Oct 20, 2022
Merged

Conversation

renovate[bot]
Copy link
Contributor

@renovate renovate bot commented Oct 19, 2022

Mend Renovate

This PR contains the following updates:

Package Change Age Adoption Passing Confidence
@babel/core (source) ^7.19.3 -> ^7.19.6 age adoption passing confidence
esbuild ^0.15.11 -> ^0.15.12 age adoption passing confidence
pnpm (source) 7.13.5 -> 7.13.6 age adoption passing confidence

Release Notes

babel/babel

v7.19.6

Compare Source

👓 Spec Compliance
  • babel-plugin-proposal-decorators
🐛 Bug Fix
💅 Polish
  • babel-generator, babel-plugin-transform-flow-comments
📝 Documentation
🏠 Internal
🏃‍♀️ Performance
evanw/esbuild

v0.15.12

Compare Source

  • Fix minifier correctness bug with single-use substitutions (#​2619)

    When minification is enabled, esbuild will attempt to eliminate variables that are only used once in certain cases. For example, esbuild minifies this code:

    function getEmailForUser(name) {
      let users = db.table('users');
      let user = users.find({ name });
      let email = user?.get('email');
      return email;
    }

    into this code:

    function getEmailForUser(e){return db.table("users").find({name:e})?.get("email")}

    However, this transformation had a bug where esbuild did not correctly consider the "read" part of binary read-modify-write assignment operators. For example, it's incorrect to minify the following code into bar += fn() because the call to fn() might modify bar:

    const foo = fn();
    bar += foo;

    In addition to fixing this correctness bug, this release also improves esbuild's output in the case where all values being skipped over are primitives:

    function toneMapLuminance(r, g, b) {
      let hdr = luminance(r, g, b)
      let decay = 1 / (1 + hdr)
      return 1 - decay
    }

    Previous releases of esbuild didn't substitute these single-use variables here, but esbuild will now minify this to the following code starting with this release:

    function toneMapLuminance(e,n,a){return 1-1/(1+luminance(e,n,a))}
pnpm/pnpm

v7.13.6

Compare Source

Patch Changes

  • Downgrade @pnpm/npm-conf to remove annoying builtin warning #​5518.
  • pnpm link --global <pkg> should not change the type of the dependency #​5478.
  • When the pnpm outdated command fails, print in which directory it failed.

Our Gold Sponsors

Our Silver Sponsors


Configuration

📅 Schedule: Branch creation - At any time (no schedule defined), 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, click this checkbox.

This PR has been generated by Mend Renovate. View repository job log here.

@codesandbox
Copy link

codesandbox bot commented Oct 19, 2022

CodeSandbox logoCodeSandbox logo  Open in CodeSandbox Web Editor | VS Code | VS Code Insiders

@netlify
Copy link

netlify bot commented Oct 19, 2022

Deploy Preview for nuxt3-docs canceled.

Name Link
🔨 Latest commit a4835dc
🔍 Latest deploy log https://app.netlify.com/sites/nuxt3-docs/deploys/63513d7563ced5000975bb20

@renovate renovate bot force-pushed the renovate/all-minor-patch branch from f703993 to 5bbc8b7 Compare October 20, 2022 00:32
@renovate renovate bot changed the title chore(deps): update dependency esbuild to ^0.15.12 chore(deps): update all non-major dependencies Oct 20, 2022
@renovate renovate bot force-pushed the renovate/all-minor-patch branch from 5bbc8b7 to f964fbf Compare October 20, 2022 09:55
@renovate renovate bot force-pushed the renovate/all-minor-patch branch from f964fbf to a4835dc Compare October 20, 2022 12:22
@pi0 pi0 merged commit 046a65f into main Oct 20, 2022
@pi0 pi0 deleted the renovate/all-minor-patch branch October 20, 2022 13:17
@danielroe danielroe added the 3.x label Jan 19, 2023
Sign up for free to subscribe to this conversation on GitHub. Already have an account? Sign in.
Labels
Projects
None yet
Development

Successfully merging this pull request may close these issues.

2 participants