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

Merged
merged 1 commit into from May 17, 2024

Conversation

renovate[bot]
Copy link
Contributor

@renovate renovate bot commented May 10, 2024

Mend Renovate

This PR contains the following updates:

Package Change Age Adoption Passing Confidence Type Update
@iconify-json/carbon ^1.1.32 -> ^1.1.33 age adoption passing confidence devDependencies patch
@nuxt/devtools-kit (source) ^1.2.0 -> ^1.3.1 age adoption passing confidence dependencies minor
@nuxt/devtools-kit (source) ^1.2.0 -> ^1.3.1 age adoption passing confidence devDependencies minor
@unocss/nuxt (source) ^0.60.0 -> ^0.60.2 age adoption passing confidence dependencies patch
actions/checkout v4.1.5 -> v4.1.6 age adoption passing confidence action patch
esbuild ^0.21.1 -> ^0.21.3 age adoption passing confidence dependencies patch
execa ^9.0.1 -> ^9.1.0 age adoption passing confidence devDependencies minor
pnpm (source) 9.1.0 -> 9.1.1 age adoption passing confidence packageManager patch
sass ^1.77.0 -> ^1.77.2 age adoption passing confidence devDependencies patch
shiki (source) ^1.5.1 -> ^1.5.2 age adoption passing confidence devDependencies patch
unocss ^0.60.0 -> ^0.60.2 age adoption passing confidence dependencies patch
vue-tsc (source) ^2.0.16 -> ^2.0.19 age adoption passing confidence devDependencies patch

Release Notes

nuxt/devtools (@​nuxt/devtools-kit)

v1.3.1

Compare Source

Bug Fixes
  • module builder chunk path patch (87199a1)

v1.3.0

Compare Source

Bug Fixes
Features
unocss/unocss (@​unocss/nuxt)

v0.60.2

Compare Source

   🐞 Bug Fixes
    View changes on GitHub

v0.60.1

Compare Source

   🚀 Features
   🐞 Bug Fixes
    View changes on GitHub
actions/checkout (actions/checkout)

v4.1.6

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.

sindresorhus/execa (execa)

v9.1.0

Compare Source

Features (types)

v9.0.2

Compare Source

Bug fixes (types)

pnpm/pnpm (pnpm)

v9.1.1

Compare Source

sass/dart-sass (sass)

v1.77.2

Compare Source

  • Don't emit deprecation warnings for functions and mixins beginning with __.

  • Allow user-defined functions whose names begin with _ and otherwise look
    like vendor-prefixed functions with special CSS syntax.

Command-Line Interface
  • Properly handle the --silence-deprecation flag.

  • Handle the --fatal-deprecation and --future-deprecation flags for
    --interactive mode.

v1.77.1

Compare Source

  • Fix a crash that could come up with importers in certain contexts.
shikijs/shiki (shiki)

v1.5.2

Compare Source

   🚀 Features
    View changes on GitHub
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

v2.0.17

Compare Source

Features
  • language-core: add JSDod support for component (#​2377)
  • language-core: add JSDoc support for script setup binding variables (#​3409)
  • language-core: add class component support (#​4354)
  • language-service: re-support scoped class links in template (#​4357)
  • typescript-plugin: create script setup block when auto import if needed
  • typescript-plugin: add JSDoc support for events in template (#​4365)
  • component-meta: add JSDoc tags support for events
  • language-core: support defineOptions (#​4362) - Thanks @​zhiyuanzmj
Bug Fixes
  • language-core: hover not working for intrinsic element event name
  • language-core: showing false declared but not used errors for functions used in v-on="{}" (#​4333)
  • language-core: fix nameless event expression formatting
  • language-core: types imported in the <script setup> should not be used as a variable in template (#​4353)
  • language-core: renaming classname within scoped not working (#​4355)
  • language-core: <style> completions and html custom data completions not provided in some cases (#​4092)
  • language-core: improve code action edits mapping fault tolerance
  • language-core: support defineModel for generic component (#​4345) - Thanks @​zhiyuanzmj
  • language-service: completion cannot trigger in SFC root
  • component-meta: forceUseTs options not working
Other Changes
  • Upgrade Volar from v2.2.0 to v2.2.2.
  • Upgrade Volar services from v0.0.42 to v0.0.44.
  • The following extensions have been added to Hybrid Mode’s compatibility whitelist:
    • mxsdev.typescript-explorer
  • Deprecated vueCompilerOptions.experimentalUseElementAccessInTemplate
  • Specify packageManager (#​4358) - Thanks @​so1ve
  • docs: emoved possibly redundant duplicate reference (#​4348) - Thanks @​artshade
  • language-service: temporarily remove references codeLens (#​4364)
  • vscode: auto enabling hybrid mode allows

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.

@dosubot dosubot bot added the size:XS This PR changes 0-9 lines, ignoring generated files. label May 10, 2024
@renovate renovate bot force-pushed the renovate/all-minor-patch branch from 7d4bf28 to 1a55b5d Compare May 10, 2024 17:00
@codecov-commenter
Copy link

codecov-commenter commented May 10, 2024

Codecov Report

All modified and coverable lines are covered by tests ✅

Project coverage is 65.88%. Comparing base (6b5036c) to head (64e9d6c).

Additional details and impacted files
@@           Coverage Diff           @@
##             main     #154   +/-   ##
=======================================
  Coverage   65.88%   65.88%           
=======================================
  Files          41       41           
  Lines        2717     2717           
  Branches      413      413           
=======================================
  Hits         1790     1790           
  Misses        901      901           
  Partials       26       26           

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

@renovate renovate bot force-pushed the renovate/all-minor-patch branch from 1a55b5d to ef19678 Compare May 11, 2024 01:01
@dosubot dosubot bot added size:S This PR changes 10-29 lines, ignoring generated files. and removed size:XS This PR changes 0-9 lines, ignoring generated files. labels May 11, 2024
@renovate renovate bot force-pushed the renovate/all-minor-patch branch 10 times, most recently from a04a88a to a1aed9b Compare May 16, 2024 05:54
@renovate renovate bot force-pushed the renovate/all-minor-patch branch from a1aed9b to 64e9d6c Compare May 16, 2024 23:33
@dosubot dosubot bot added the lgtm This PR has been approved by a maintainer label May 17, 2024
@danielroe danielroe merged commit 493db06 into main May 17, 2024
1 check passed
@danielroe danielroe deleted the renovate/all-minor-patch branch May 17, 2024 02:47
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
lgtm This PR has been approved by a maintainer size:S This PR changes 10-29 lines, ignoring generated files.
Projects
None yet
Development

Successfully merging this pull request may close these issues.

None yet

2 participants