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 (2.x) #27179

Merged
merged 1 commit into from
May 16, 2024

Conversation

renovate[bot]
Copy link
Contributor

@renovate renovate bot commented May 12, 2024

Mend Renovate

This PR contains the following updates:

Package Change Age Adoption Passing Confidence
caniuse-lite ^1.0.30001617 -> ^1.0.30001620 age adoption passing confidence
core-js (source) ^3.37.0 -> ^3.37.1 age adoption passing confidence
core-js-compat (source) ^3.37.0 -> ^3.37.1 age adoption passing confidence
esbuild 0.21.1 -> 0.21.3 age adoption passing confidence
lerna (source) 8.1.2 -> 8.1.3 age adoption passing confidence
postcss-preset-env (source) ^9.5.12 -> ^9.5.13 age adoption passing confidence
puppeteer-core (source) 22.8.0 -> 22.9.0 age adoption passing confidence
rollup-plugin-license 3.3.1 -> 3.4.0 age adoption passing confidence
vue-tsc (source) 2.0.17 -> 2.0.19 age adoption passing confidence

Release Notes

browserslist/caniuse-lite (caniuse-lite)

v1.0.30001620

Compare Source

v1.0.30001619

Compare Source

v1.0.30001618

Compare Source

zloirock/core-js (core-js)

v3.37.1

Compare Source

evanw/esbuild (esbuild)

v0.21.3

Compare Source

  • Implement the decorator metadata proposal (#​3760)

    This release implements the decorator metadata proposal, which is a sub-proposal of the decorators proposal. Microsoft shipped the decorators proposal in TypeScript 5.0 and the decorator metadata proposal in TypeScript 5.2, so it's important that esbuild also supports both of these features. Here's a quick example:

    // Shim the "Symbol.metadata" symbol
    Symbol.metadata ??= Symbol('Symbol.metadata')
    
    const track = (_, context) => {
      (context.metadata.names ||= []).push(context.name)
    }
    
    class Foo {
      @​track foo = 1
      @​track bar = 2
    }
    
    // Prints ["foo", "bar"]
    console.log(Foo[Symbol.metadata].names)

    ⚠️ WARNING ⚠️

    This proposal has been marked as "stage 3" which means "recommended for implementation". However, it's still a work in progress and isn't a part of JavaScript yet, so keep in mind that any code that uses JavaScript decorator metadata may need to be updated as the feature continues to evolve. If/when that happens, I will update esbuild's implementation to match the specification. I will not be supporting old versions of the specification.

  • Fix bundled decorators in derived classes (#​3768)

    In certain cases, bundling code that uses decorators in a derived class with a class body that references its own class name could previously generate code that crashes at run-time due to an incorrect variable name. This problem has been fixed. Here is an example of code that was compiled incorrectly before this fix:

    class Foo extends Object {
      @​(x => x) foo() {
        return Foo
      }
    }
    console.log(new Foo().foo())
  • Fix tsconfig.json files inside symlinked directories (#​3767)

    This release fixes an issue with a scenario involving a tsconfig.json file that extends another file from within a symlinked directory that uses the paths feature. In that case, the implicit baseURL value should be based on the real path (i.e. after expanding all symbolic links) instead of the original path. This was already done for other files that esbuild resolves but was not yet done for tsconfig.json because it's special-cased (the regular path resolver can't be used because the information inside tsconfig.json is involved in path resolution). Note that this fix no longer applies if the --preserve-symlinks setting is enabled.

v0.21.2

Compare Source

  • Correct this in field and accessor decorators (#​3761)

    This release changes the value of this in initializers for class field and accessor decorators from the module-level this value to the appropriate this value for the decorated element (either the class or the instance). It was previously incorrect due to lack of test coverage. Here's an example of a decorator that doesn't work without this change:

    const dec = () => function() { this.bar = true }
    class Foo { @​dec static foo }
    console.log(Foo.bar) // Should be "true"
  • Allow es2023 as a target environment (#​3762)

    TypeScript recently added es2023 as a compilation target, so esbuild now supports this too. There is no difference between a target of es2022 and es2023 as far as esbuild is concerned since the 2023 edition of JavaScript doesn't introduce any new syntax features.

lerna/lerna (lerna)

v8.1.3

Compare Source

Bug Fixes
csstools/postcss-plugins (postcss-preset-env)

v9.5.13

Compare Source

May 13, 2024

puppeteer/puppeteer (puppeteer-core)

v22.9.0

Compare Source

v22.8.2: puppeteer: v22.8.2

Compare Source

Miscellaneous Chores
  • puppeteer: Synchronize puppeteer versions
Dependencies
  • The following workspace dependencies were updated
    • dependencies
      • puppeteer-core bumped from 22.8.1 to 22.8.2

v22.8.1: puppeteer: v22.8.1

Compare Source

Miscellaneous Chores
  • puppeteer: Synchronize puppeteer versions
Dependencies
  • The following workspace dependencies were updated
    • dependencies
      • puppeteer-core bumped from 22.8.0 to 22.8.1
mjeanroy/rollup-plugin-license (rollup-plugin-license)

v3.4.0

Compare Source

vuejs/language-tools (vue-tsc)

v2.0.19

Compare Source

Bug Fixes
  • language-core: property 'xyz' does not exist on type 'abc' when using v-for (#​4386)
  • language-core: avoid report error when events do not accept parameters (#​4387)
  • language-core: inline dynamic event handlers should not expect commas (#​4387)

v2.0.18

Compare Source

Features
  • feat(language-core): report unknown events when strictTemplates is enabled (#​3718)
  • feat(language-core): add compileSFCScript plugin hook (#​3200)
  • feat(vscode): add coffeescript syntax highlight support
Bug Fixes
  • fix(language-core): fix event handler type for hyphen-case event names
  • fix(language-core): allow binding multiple events with the same name (#​4369)
  • fix(language-core): variable used in key appears as unused in v-for template tag (#​329) (#​3421)
  • fix(language-core): generics with slots don't work with Vue 2.7 (#​3241)
  • fix(language-core): template language of .md files should be markdown (#​4299)
  • fix(language-core): no template class links when experimentalResolveStyleCssClasses is set to always (#​4379)
Other Changes
  • Upgrade Volar from v2.2.2 to v2.2.4.
    • Fixed a few URI conversion issues
    • fix(typescript): empty items list should be valid completion result (#​4368)
    • fix(typescript): path completion not working for meta files
  • Upgrade Volar services from v0.0.44 to v0.0.45.
  • The following extensions have been added to Hybrid Mode’s compatibility whitelist:
    • miaonster.vscode-tsx-arrow-definition
    • runem.lit-plugin

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, check this box

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

Copy link

stackblitz bot commented May 12, 2024

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

Copy link

socket-security bot commented May 12, 2024

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

Package New capabilities Transitives Size Publisher
npm/@esbuild/aix-ppc64@0.21.3 None 0 0 B
npm/@esbuild/android-arm@0.21.3 None 0 0 B
npm/@esbuild/android-arm64@0.21.3 None 0 0 B
npm/@esbuild/android-x64@0.21.3 None 0 0 B
npm/@esbuild/darwin-arm64@0.21.3 None 0 0 B
npm/@esbuild/darwin-x64@0.21.3 None 0 0 B
npm/@esbuild/freebsd-arm64@0.21.3 None 0 0 B
npm/@esbuild/freebsd-x64@0.21.3 None 0 0 B
npm/@esbuild/linux-arm@0.21.3 None 0 0 B
npm/@esbuild/linux-arm64@0.21.3 None 0 0 B
npm/@esbuild/linux-ia32@0.21.3 None 0 0 B
npm/@esbuild/linux-loong64@0.21.3 None 0 0 B
npm/@esbuild/linux-mips64el@0.21.3 None 0 0 B
npm/@esbuild/linux-ppc64@0.21.3 None 0 0 B
npm/@esbuild/linux-riscv64@0.21.3 None 0 0 B
npm/@esbuild/linux-s390x@0.21.3 None 0 0 B
npm/@esbuild/linux-x64@0.21.3 None 0 0 B
npm/@esbuild/netbsd-x64@0.21.3 None 0 0 B
npm/@esbuild/openbsd-x64@0.21.3 None 0 0 B
npm/@esbuild/sunos-x64@0.21.3 None 0 0 B
npm/@esbuild/win32-arm64@0.21.3 None 0 0 B
npm/@esbuild/win32-ia32@0.21.3 None 0 0 B
npm/@esbuild/win32-x64@0.21.3 None 0 0 B
npm/@nx/nx-darwin-arm64@19.0.4 None 0 0 B
npm/@nx/nx-darwin-x64@19.0.4 None 0 0 B
npm/@nx/nx-freebsd-x64@19.0.4 None 0 0 B
npm/@nx/nx-linux-arm-gnueabihf@19.0.4 None 0 0 B
npm/@nx/nx-linux-arm64-gnu@19.0.4 None 0 0 B
npm/@nx/nx-linux-arm64-musl@19.0.4 None 0 0 B
npm/@nx/nx-linux-x64-gnu@19.0.4 None 0 0 B
npm/@nx/nx-linux-x64-musl@19.0.4 None 0 0 B
npm/@nx/nx-win32-arm64-msvc@19.0.4 None 0 0 B
npm/@nx/nx-win32-x64-msvc@19.0.4 None 0 0 B
npm/esbuild@0.21.3 None 0 0 B

View full report↗︎

Copy link

socket-security bot commented May 12, 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↗︎

@codecov-commenter
Copy link

codecov-commenter commented May 12, 2024

Codecov Report

All modified and coverable lines are covered by tests ✅

Project coverage is 66.22%. Comparing base (b429d5c) to head (5e45621).

Additional details and impacted files
@@           Coverage Diff           @@
##              2.x   #27179   +/-   ##
=======================================
  Coverage   66.22%   66.22%           
=======================================
  Files          93       93           
  Lines        4121     4121           
  Branches     1169     1169           
=======================================
  Hits         2729     2729           
  Misses       1126     1126           
  Partials      266      266           
Flag Coverage Δ
unittests 66.22% <ø> (ø)

Flags with carried forward coverage won't be shown. Click here to find out more.

☔ View full report in Codecov by Sentry.
📢 Have feedback on the report? Share it here.

@renovate renovate bot force-pushed the renovate/2.x-all-minor-patch branch from 6f8aadc to cef83e2 Compare May 13, 2024 10:44
@renovate renovate bot changed the title chore(deps): update devdependency esbuild to v0.21.2 (2.x) chore(deps): update all non-major dependencies (2.x) May 13, 2024
@renovate renovate bot force-pushed the renovate/2.x-all-minor-patch branch 5 times, most recently from 7249766 to e2820f0 Compare May 15, 2024 21:01
@renovate renovate bot force-pushed the renovate/2.x-all-minor-patch branch from e2820f0 to 5e45621 Compare May 16, 2024 05:59
@danielroe danielroe merged commit 4d76047 into 2.x May 16, 2024
16 checks passed
@danielroe danielroe deleted the renovate/2.x-all-minor-patch branch May 16, 2024 11:43
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

2 participants