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

Merged
merged 1 commit into from
Jun 10, 2024

Conversation

renovate[bot]
Copy link
Contributor

@renovate renovate bot commented Jun 10, 2024

Mend Renovate

This PR contains the following updates:

Package Change Age Adoption Passing Confidence
@babel/types (source) ^7.24.6 -> ^7.24.7 age adoption passing confidence
@shikijs/vitepress-twoslash (source) 1.6.2 -> 1.6.3 age adoption passing confidence
@tanstack/vue-query (source) ^5.40.0 -> ^5.41.0 age adoption passing confidence
@types/node (source) ^20.14.0 -> ^20.14.2 age adoption passing confidence
execa ^9.1.0 -> ^9.2.0 age adoption passing confidence
mlly ^1.7.0 -> ^1.7.1 age adoption passing confidence
nodemon (source) ^3.1.2 -> ^3.1.3 age adoption passing confidence
pnpm (source) 9.1.4 -> 9.2.0 age adoption passing confidence
prettier (source) ^3.3.0 -> ^3.3.1 age adoption passing confidence
vite (source) ^5.2.12 -> ^5.2.13 age adoption passing confidence
vitepress (source) 1.2.2 -> 1.2.3 age adoption passing confidence
vue-tsc (source) ^2.0.19 -> ^2.0.21 age adoption passing confidence
yaml (source) ^2.4.3 -> ^2.4.5 age adoption passing confidence

Release Notes

babel/babel (@​babel/types)

v7.24.7

Compare Source

🐛 Bug Fix
🏠 Internal
  • babel-helpers, babel-runtime-corejs2, babel-runtime-corejs3, babel-runtime
shikijs/shiki (@​shikijs/vitepress-twoslash)

v1.6.3

Compare Source

   🚀 Features
    View changes on GitHub
TanStack/query (@​tanstack/vue-query)

v5.41.0

Compare Source

Version 5.41.0 - 6/8/2024, 6:46 PM

Changes

Feat
Refactor
  • react-query-next-experimental: use isServer to determine server environment (#​7536) (4e1a04b) by Hwang Taehwan
Chore
  • fix test syntax (97bc113) by Dominik Dorfmeister
Docs

Packages

v5.40.1

Compare Source

Version 5.40.1 - 6/4/2024, 8:18 AM

Changes

Refactor
  • *: improved type inference for useQueries with skipToken (#​7484) (6f08200) by 김관식
Chore
Ci
Docs
Other
  • Revert "chore: add CODECOV_TOKEN" (ee02838) by Dominik Dorfmeister
Test

Packages

sindresorhus/execa (execa)

v9.2.0

Compare Source

This release includes a new set of methods to exchange messages between the current process and a Node.js subprocess, also known as "IPC". This allows passing and returning almost any message type to/from a Node.js subprocess. Also, debugging IPC is now much easier.

Moreover, a new gracefulCancel option has also been added to terminate a subprocess gracefully.

For a deeper dive-in, please check and share the release post!

Thanks @​iiroj for your contribution, @​SimonSiefke and @​adymorz for reporting the bugs fixed in this release, and @​karlhorky for improving the documentation!

Deprecations

  • Passing 'ipc' to the stdio option has been deprecated. It will be removed in the next major release. Instead, the ipc: true option should be used. (#​1056)
- await execa('npm', ['run', 'build'], {stdio: ['pipe', 'pipe', 'pipe', 'ipc']});
+ await execa('npm', ['run', 'build'], {ipc: true});
- import {execaCommand} from 'execa';
+ import {execa} from 'execa';

- await execaCommand('npm run build');
+ await execa`npm run build`;

const taskName = 'build';
- await execaCommand(`npm run ${taskName}`);
+ await execa`npm run ${taskName}`;

const commandArguments = ['run', 'task with space'];
await execa`npm ${commandArguments}`;

If the file and/or multiple arguments are supplied as a single string, parseCommandString(command) can split that string into an array. More info. (#​1054)

- import {execaCommand} from 'execa';
+ import {execa, parseCommandString} from 'execa';

const commandString = 'npm run task';
- await execaCommand(commandString);
+ const commandArray = parseCommandString(commandString); // ['npm', 'run', 'task']
+ await execa`${commandArray}`;

// Or alternatively:
const [file, ...commandArguments] = commandArray;
await execa(file, commandArguments);

Features

Types

Bug fixes

unjs/mlly (mlly)

v1.7.1

Compare Source

compare changes

🩹 Fixes
  • interopDefault: Assign props to default function export (#​258)
🏡 Chore
❤️ Contributors
remy/nodemon (nodemon)

v3.1.3

Compare Source

Bug Fixes
pnpm/pnpm (pnpm)

v9.2.0

Compare Source

Minor Changes

  • If package-manager-strict-version is set to true, pnpm will fail if its version doesn't exactly match the version in the "packageManager" field of package.json.

Patch Changes

  • Update @yarnpkg/pnp to the latest version, fixing issue with node: imports #​8161.
  • Deduplicate bin names to prevent race condition and corrupted bin scripts #​7833.
  • pnpm doesn't fail if its version doesn't match the one specified in the "packageManager" field of package.json #​8087.
  • exec now also streams prefixed output when --recursive or --parallel is specified just as run does #​8065.

Platinum Sponsors

Gold Sponsors

Our Silver Sponsors

prettier/prettier (prettier)

v3.3.1

Compare Source

diff

Preserve empty lines in front matter (#​16347 by @​fisker)
<!-- Input -->
---
foo:
  - bar1

  - bar2

  - bar3
---
Markdown

<!-- Prettier 3.3.0 -->

---
foo:
  - bar1
  - bar2
  - bar3
---

Markdown

<!-- Prettier 3.3.1 -->
---
foo:
  - bar1

  - bar2

  - bar3
---

Markdown
Preserve explicit language in front matter (#​16348 by @​fisker)
<!-- Input -->
---yaml
title: Hello
slug: home
---

<!-- Prettier 3.3.0 -->
---
title: Hello
slug: home
---

<!-- Prettier 3.3.1 -->
---yaml
title: Hello
slug: home
---
Avoid line breaks in import attributes (#​16349 by @​fisker)
// Input
import something from "./some-very-very-very-very-very-very-very-very-long-path.json" with { type: "json" };

// Prettier 3.3.0
import something from "./some-very-very-very-very-very-very-very-very-long-path.json" with { type:
  "json" };

// Prettier 3.3.1
import something from "./some-very-very-very-very-very-very-very-very-long-path.json" with { type: "json" };
vitejs/vite (vite)

v5.2.13

Compare Source

Please refer to CHANGELOG.md for details.

vuejs/vitepress (vitepress)

v1.2.3

Compare Source

Bug Fixes
  • theme,a11y: handle overflow on long mathematical equation and make tables focusable (#​3932) (closes #​3914) (afc611d)
  • types: wrong types generated for markdown-it > mdurl (48ca76c), closes #​3935
vuejs/language-tools (vue-tsc)

v2.0.21

Compare Source

Bug Fixes
  • fix(typescript-plugin): TS plugin cause type checking broken in .ts files (#​4453)

v2.0.20

Compare Source

Features
  • feat(language-service): add localization support for zh-hk/zh-tw
  • feat(vscode): enable syntax highlighting of cue code blocks in MDX (#​4425) - Thanks @​remcohaszing
Bug Fixes
  • fix(vscode): fix "as"/"instanceof" expressions syntax highlight (#​4412)
  • fix(language-core): ForIteratorExpression's returns property may be undefined (#​4418) - Thanks @​so1ve
  • fix(language-core): use defineEmits calls instead of type infer (#​4430) - Thanks @​zhiyuanzmj
  • fix(tsc): log catched errors to console (#​4451) - Thanks @​mik3ybark3r
  • fix(typescript-plugin): TS not working in template when tsconfig missing (#​4452)
  • fix(language-core): use type infer instead of await import (#​4436) - Thanks @​zhiyuanzmj
  • feat(language-core): ignore type error for new functional component (#​4445) - Thanks @​zhiyuanzmj
  • fix(language-core): ignore type error for possible component name (#​4446) - Thanks @​zhiyuanzmj
  • fix(language-service): filter internal props in template completion
  • fix(language-service): sort component props in template completion
  • fix(language-core): duplicate completion appears at the beginning of script setup block
Other Changes
  • Upgrade Volar from v2.2.4 to v2.3.0-alpha.14.
    • LSP server performance improved
    • Language server now responds with the exact server capabilities for initialization requests
    • Auto insertion requests can now exit early in the language client
  • The following extensions have been added to Hybrid Mode’s compatibility whitelist:
eemeli/yaml (yaml)

v2.4.5

Compare Source

v2.4.4

Compare Source

With special thanks to @​RedCMD for finding and reporting all of the following:

  • Allow comment after top-level block scalar with explicit indent indicator (#​547)
  • Allow tab as indent for line comments before nodes (#​548)
  • Do not allow tab before block collection (#​549)
  • In flow collections, allow []{} immediately after : with plain key (#​550)
  • Require indentation for ? explicit-key contents (#​551)
  • Require indentation from block scalar header & flow collections in mapping values (#​553)

Configuration

📅 Schedule: Branch creation - "before 4am on Monday" (UTC), Automerge - At any time (no schedule defined).

🚦 Automerge: Enabled.

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

cloudflare-pages bot commented Jun 10, 2024

Deploying unplugin-vue-router with  Cloudflare Pages  Cloudflare Pages

Latest commit: e317f3b
Status: ✅  Deploy successful!
Preview URL: https://7b3b89ff.unplugin-vue-router.pages.dev
Branch Preview URL: https://renovate-all-minor-patch.unplugin-vue-router.pages.dev

View logs

Copy link

codecov bot commented Jun 10, 2024

Codecov Report

All modified and coverable lines are covered by tests ✅

Project coverage is 73.99%. Comparing base (9ebf81a) to head (e317f3b).

Additional details and impacted files
@@           Coverage Diff           @@
##             main     #417   +/-   ##
=======================================
  Coverage   73.99%   73.99%           
=======================================
  Files          33       33           
  Lines        5623     5623           
  Branches      548      548           
=======================================
  Hits         4161     4161           
  Misses       1453     1453           
  Partials        9        9           

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

Copy link

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

Package New capabilities Transitives Size Publisher
npm/@shikijs/vitepress-twoslash@1.6.3 None 0 0 B
npm/execa@9.2.0 None 0 0 B
npm/mlly@1.7.1 None +4 1.2 MB pi0
npm/nodemon@3.1.3 environment, filesystem, shell Transitive: network +13 402 kB remy
npm/prettier@3.3.1 environment, filesystem, unsafe 0 8.25 MB prettier-bot
npm/vitepress@1.2.3 filesystem, network, shell, unsafe Transitive: environment +22 20.8 MB brc-dd
npm/yaml@2.4.5 None 0 0 B

🚮 Removed packages: npm/execa@9.1.0, npm/mlly@1.7.0, npm/nodemon@3.1.2, npm/prettier@3.3.0, npm/vitepress@1.2.2, npm/yaml@2.4.3

View full report↗︎

@renovate renovate bot merged commit f6ac0ea into main Jun 10, 2024
12 checks passed
@renovate renovate bot deleted the renovate/all-minor-patch branch June 10, 2024 06:39
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.

None yet

0 participants