Skip to content

Conversation

@renovate
Copy link
Contributor

@renovate renovate bot commented Oct 25, 2024

This PR contains the following updates:

Package Change Age Confidence Type Update
@commitlint/cli (source) ^20.1.0 -> ^20.2.0 age confidence devDependencies minor
@commitlint/config-conventional (source) ^20.0.0 -> ^20.2.0 age confidence devDependencies minor
@iconify/utils (source) ^3.0.2 -> ^3.1.0 age confidence dependencies minor
@nuxt/eslint-config (source) ^1.10.0 -> ^1.11.0 age confidence devDependencies minor
@nuxt/test-utils ^3.20.1 -> ^3.21.0 age confidence devDependencies minor
@nuxtjs/mdc ^0.18.2 -> ^0.19.1 age confidence dependencies minor
@typescript-eslint/parser (source) ^8.46.4 -> ^8.48.1 age confidence devDependencies minor
@vitest/coverage-v8 (source) ^4.0.8 -> ^4.0.15 age confidence devDependencies patch
actions/checkout v5.0.0 -> v5.0.1 age confidence action patch
actions/setup-node v6.0.0 -> v6.1.0 age confidence action minor
better-sqlite3 ^12.4.1 -> ^12.5.0 age confidence dependencies minor
bumpp ^10.3.1 -> ^10.3.2 age confidence devDependencies patch
docus ^5.2.1 -> ^5.3.1 age confidence dependencies minor
esbuild ^0.27.0 -> ^0.27.1 age confidence devDependencies patch
pnpm (source) 10.21.0 -> 10.24.0 age confidence packageManager minor
vitest (source) ^4.0.8 -> ^4.0.15 age confidence devDependencies patch
vue-tsc (source) ^3.1.3 -> ^3.1.5 age confidence devDependencies patch

Release Notes

conventional-changelog/commitlint (@​commitlint/cli)

v20.2.0

Compare Source

Note: Version bump only for package @​commitlint/cli

conventional-changelog/commitlint (@​commitlint/config-conventional)

v20.2.0

Compare Source

Note: Version bump only for package @​commitlint/config-conventional

nuxt/eslint (@​nuxt/eslint-config)

v1.11.0

Compare Source

   🚀 Features
    View changes on GitHub
nuxt/test-utils (@​nuxt/test-utils)

v3.21.0

Compare Source

nuxt-content/mdc (@​nuxtjs/mdc)

v0.19.1

Compare Source

compare changes

🏡 Chore
❤️ Contributors

v0.19.0

Compare Source

compare changes

🩹 Fixes
  • stringify: Nested lists (840b059)
  • stringify: Detect inline components (a63389f)
  • stringify: Inline component with -3 attributes (76a5a85)
  • Convert json attributes to yaml syntax (96d3555)
  • Better inline detection for buttons (1aeaa52)
🏡 Chore
❤️ Contributors

v0.18.4

Compare Source

compare changes

🩹 Fixes
  • Handle kbd element and preserve component inline children order (67e1fc2)
🏡 Chore
  • Upgrade deps (f99e6e4)
  • Deprecate remarkMDC option in favor of remark-mdc (aa041b9)
❤️ Contributors

v0.18.3

Compare Source

compare changes

🩹 Fixes
  • Treat heading children as inline elements (045c49d)
📖 Documentation
🏡 Chore
❤️ Contributors
typescript-eslint/typescript-eslint (@​typescript-eslint/parser)

v8.48.1

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.

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

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

vitest-dev/vitest (@​vitest/coverage-v8)

v4.0.15

Compare Source

   🚀 Experimental Features
   🐞 Bug Fixes
    View changes on GitHub

v4.0.14

Compare Source

   🚀 Experimental Features
   🐞 Bug Fixes
   🏎 Performance
    View changes on GitHub

v4.0.13

Compare Source

   🐞 Bug Fixes
   🏎 Performance
    View changes on GitHub

v4.0.12

Compare Source

   🐞 Bug Fixes
    View changes on GitHub

v4.0.11

Compare Source

   🚀 Experimental Features
   🏎 Performance
    View changes on GitHub

v4.0.10

Compare Source

   🐞 Bug Fixes
    View changes on GitHub

v4.0.9

Compare Source

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

v5.0.1

Compare Source

What's Changed

Full Changelog: actions/checkout@v5...v5.0.1

actions/setup-node (actions/setup-node)

v6.1.0

Compare Source

What's Changed

Enhancement:
Dependency updates:
Documentation update:

Full Changelog: actions/setup-node@v6...v6.1.0

WiseLibs/better-sqlite3 (better-sqlite3)

v12.5.0

Compare Source

What's Changed

  • Update SQLite to version 3.51.1 in #​1424

Full Changelog: WiseLibs/better-sqlite3@v12.4.6...v12.5.0

v12.4.6

Compare Source

What's Changed

Full Changelog: WiseLibs/better-sqlite3@v12.4.5...v12.4.6

v12.4.5

Compare Source

What's Changed

Full Changelog: WiseLibs/better-sqlite3@v12.4.4...v12.4.5

antfu-collective/bumpp (bumpp)

v10.3.2

Compare Source

   🐞 Bug Fixes
    View changes on GitHub
nuxt-content/docus (docus)

v5.3.1

Compare Source

Bug Fixes
  • i18n: do not redirect to locale if 18n not enabled 9b31392

v5.3.0

Compare Source

Bug Fixes
  • i18n: do not redirect to locale if 18n not enabled 9b31392

v5.2.3

Compare Source

Features
Bug Fixes

v5.2.2

Compare Source

Features
evanw/esbuild (esbuild)

v0.27.1

Compare Source

  • Fix bundler bug with var nested inside if (#​4348)

    This release fixes a bug with the bundler that happens when importing an ES module using require (which causes it to be wrapped) and there's a top-level var inside an if statement without being wrapped in a { ... } block (and a few other conditions). The bundling transform needed to hoist these var declarations outside of the lazy ES module wrapper for correctness. See the issue for details.

  • Fix minifier bug with for inside try inside label (#​4351)

    This fixes an old regression from version v0.21.4. Some code was introduced to move the label inside the try statement to address a problem with transforming labeled for await loops to avoid the await (the transformation involves converting the for await loop into a for loop and wrapping it in a try statement). However, it introduces problems for cross-compiled JVM code that uses all three of these features heavily. This release restricts this transform to only apply to for loops that esbuild itself generates internally as part of the for await transform. Here is an example of some affected code:

    // Original code
    d: {
      e: {
        try {
          while (1) { break d }
        } catch { break e; }
      }
    }
    
    // Old output (with --minify)
    a:try{e:for(;;)break a}catch{break e}
    
    // New output (with --minify)
    a:e:try{for(;;)break a}catch{break e}
  • Inline IIFEs containing a single expression (#​4354)

    Previously inlining of IIFEs (immediately-invoked function expressions) only worked if the body contained a single return statement. Now it should also work if the body contains a single expression statement instead:

    // Original code
    const foo = () => {
      const cb = () => {
        console.log(x())
      }
      return cb()
    }
    
    // Old output (with --minify)
    const foo=()=>(()=>{console.log(x())})();
    
    // New output (with --minify)
    const foo=()=>{console.log(x())};
  • The minifier now strips empty finally clauses (#​4353)

    This improvement means that finally clauses containing dead code can potentially cause the associated try statement to be removed from the output entirely in minified builds:

    // Original code
    function foo(callback) {
      if (DEBUG) stack.push(callback.name);
      try {
        callback();
      } finally {
        if (DEBUG) stack.pop();
      }
    }
    
    // Old output (with --minify --define:DEBUG=false)
    function foo(a){try{a()}finally{}}
    
    // New output (with --minify --define:DEBUG=false)
    function foo(a){a()}
  • Allow tree-shaking of the Symbol constructor

    With this release, calling Symbol is now considered to be side-effect free when the argument is known to be a primitive value. This means esbuild can now tree-shake module-level symbol variables:

    // Original code
    const a = Symbol('foo')
    const b = Symbol(bar)
    
    // Old output (with --tree-shaking=true)
    const a = Symbol("foo");
    const b = Symbol(bar);
    
    // New output (with --tree-shaking=true)
    const b = Symbol(bar);
pnpm/pnpm (pnpm)

v10.24.0

Compare Source

v10.23.0: pnpm 10.23

Compare Source

Minor Changes

  • Added --lockfile-only option to pnpm list #​10020.

Patch Changes

  • pnpm self-update should download pnpm from the configured npm registry #​10205.
  • pnpm self-update should always install the non-executable pnpm package (pnpm in the registry) and never the @pnpm/exe package, when installing v11 or newer. We currently cannot ship @pnpm/exe as pkg doesn't work with ESM #​10190.
  • Node.js runtime is not added to "dependencies" on pnpm add, if there's a engines.runtime setting declared in package.json #​10209.
  • The installation should fail if an optional dependency cannot be installed due to a trust policy check failure #​10208.
  • pnpm list and pnpm why now display npm: protocol for aliased packages (e.g., foo npm:is-odd@3.0.1) #​8660.
  • Don't add an extra slash to the Node.js mirror URL #​10204.
  • pnpm store prune should not fail if the store contains Node.js packages #​10131.

Platinum Sponsors

Bit

Gold Sponsors

Discord CodeRabbit Workleap
Stackblitz Vite

v10.22.0: pnpm 10.22

Compare Source

Minor Changes

  • Added support for trustPolicyExclude #​10164.

    You can now list one or more specific packages or versions that pnpm should allow to install, even if those packages don't satisfy the trust policy requirement. For example:

    trustPolicy: no-downgrade
    trustPolicyExclude:
      - chokidar@4.0.3
      - webpack@4.47.0 || 5.102.1
  • Allow to override the engines field on publish by the publishConfig.engines field.

Patch Changes

  • Don't crash when two processes of pnpm are hardlinking the contents of a directory to the same destination simultaneously #​10179.

Platinum Sponsors

Bit

Gold Sponsors

Discord CodeRabbit Workleap
Stackblitz Vite
vuejs/language-tools (vue-tsc)

v3.1.5

Compare Source

v3.1.4

Compare Source

Bug Fixes
  • fix(language-service): prevent auto-insertion of html snippets in template interpolation (#​5744) - Thanks to @​serkodev!
  • fix(language-service): strip interpolations from document passed to html service - Thanks to @​KazariEX!
  • fix(language-core): report unused @ts-expect-error directive on components with loose props checks (#​5750) - Thanks to @​serkodev and @​KazariEX!
  • fix(language-core): respect directive comments before v-else (#​5753) - Thanks to @​serkodev and @​KazariEX!
Other Changes
  • refactor(language-core): re-implement component references by codegen (#​5736) - Thanks to @​KazariEX!
  • refactor(language-core): simplify calculation of full interpolation content - Thanks to @​KazariEX!

Configuration

📅 Schedule: Branch creation - "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 was generated by Mend Renovate. View the repository job log.

@netlify
Copy link

netlify bot commented Oct 25, 2024

Deploy Preview for nuxt-color-mode canceled.

Name Link
🔨 Latest commit 5345727
🔍 Latest deploy log https://app.netlify.com/projects/nuxt-color-mode/deploys/6932734743ec3a000831b1fc

@renovate renovate bot changed the title chore(deps): update dependency @nuxt/icon to ^1.5.7 chore(deps): update dependency @nuxt/icon to ^1.5.8 Oct 26, 2024
@renovate renovate bot force-pushed the renovate/all-minor-patch branch from 71b639f to 02ed0a9 Compare October 26, 2024 04:11
@renovate renovate bot changed the title chore(deps): update dependency @nuxt/icon to ^1.5.8 chore(deps): update all non-major dependencies Oct 26, 2024
@renovate renovate bot force-pushed the renovate/all-minor-patch branch 9 times, most recently from a301794 to b4489b1 Compare November 1, 2024 20:03
@renovate renovate bot force-pushed the renovate/all-minor-patch branch 7 times, most recently from 5672336 to 381d3fd Compare November 11, 2024 17:28
@renovate renovate bot force-pushed the renovate/all-minor-patch branch 10 times, most recently from de98978 to 3f96af0 Compare November 18, 2024 19:40
@renovate renovate bot force-pushed the renovate/all-minor-patch branch from 29c6613 to ab40bd5 Compare November 25, 2025 17:03
@renovate renovate bot force-pushed the renovate/all-minor-patch branch from ab40bd5 to 486d843 Compare November 26, 2025 18:05
@renovate renovate bot force-pushed the renovate/all-minor-patch branch from 486d843 to 22f1c55 Compare November 27, 2025 04:46
@renovate renovate bot force-pushed the renovate/all-minor-patch branch from 22f1c55 to 8a341ed Compare November 27, 2025 12:51
@renovate renovate bot force-pushed the renovate/all-minor-patch branch from 8a341ed to df49cba Compare November 27, 2025 19:08
@renovate renovate bot force-pushed the renovate/all-minor-patch branch from df49cba to 42e3207 Compare November 28, 2025 19:09
@renovate renovate bot force-pushed the renovate/all-minor-patch branch from 42e3207 to 48204f0 Compare November 29, 2025 03:03
@renovate renovate bot force-pushed the renovate/all-minor-patch branch from 48204f0 to 9e2e26e Compare December 2, 2025 11:11
@renovate renovate bot force-pushed the renovate/all-minor-patch branch from 9e2e26e to 3939817 Compare December 2, 2025 16:08
@renovate renovate bot force-pushed the renovate/all-minor-patch branch from 3939817 to e76f510 Compare December 3, 2025 05:06
@renovate renovate bot force-pushed the renovate/all-minor-patch branch from e76f510 to 1ee3428 Compare December 3, 2025 16:08
@renovate renovate bot force-pushed the renovate/all-minor-patch branch from 1ee3428 to e92500f Compare December 3, 2025 22:14
@renovate renovate bot force-pushed the renovate/all-minor-patch branch from e92500f to f3960d0 Compare December 4, 2025 18:55
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

None yet

Projects

None yet

Development

Successfully merging this pull request may close these issues.

1 participant