Thanks to visit codestin.com
Credit goes to github.com

Skip to content

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

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

Merged
merged 1 commit into from
Dec 11, 2023

Conversation

renovate[bot]
Copy link
Contributor

@renovate renovate bot commented Dec 7, 2023

Mend Renovate

This PR contains the following updates:

Package Change Age Adoption Passing Confidence
@tanstack/vue-query (source) ^5.12.2 -> ^5.13.4 age adoption passing confidence
@types/node (source) ^20.10.3 -> ^20.10.4 age adoption passing confidence
@vitejs/plugin-vue (source) ^4.5.1 -> ^4.5.2 age adoption passing confidence
nightwatch (source) ^3.3.2 -> ^3.3.4 age adoption passing confidence
prettier (source) ^3.1.0 -> ^3.1.1 age adoption passing confidence
ts-node (source) ^10.9.1 -> ^10.9.2 age adoption passing confidence
vite (source) ^5.0.6 -> ^5.0.7 age adoption passing confidence
vitest (source) ^1.0.1 -> ^1.0.4 age adoption passing confidence
vue (source) ^3.3.10 -> ^3.3.11 age adoption passing confidence

Release Notes

TanStack/query (@​tanstack/vue-query)

v5.13.4

Compare Source

Version 5.13.4 - 12/9/2023, 9:51 AM

Changes

Fix
  • core: mutation GC leak when reset, but not unsubscribed (#​6509) (e34bfab) by Dominik Dorfmeister

Packages

nightwatchjs/nightwatch (nightwatch)

v3.3.4

Compare Source

What's Changed

v3.3.3

Compare Source

What's Changed

Full Changelog: nightwatchjs/nightwatch@v3.3.2...v3.3.3

prettier/prettier (prettier)

v3.1.1

Compare Source

diff

Fix config file search (#​15363 by @​fisker)

Previously, we start search for config files from the filePath as a directory, if it happened to be a directory and contains config file, it will be used by mistake.

├─ .prettierrc
└─ test.js         (A directory)
  └─ .prettierrc
// Prettier 3.1.0
await prettier.resolveConfigFile(new URL("./test.js", import.meta.url));
// <CWD>/test.js/.prettierrc

// Prettier 3.1.1
await prettier.resolveConfigFile(new URL("./test.js", import.meta.url));
// <CWD>/.prettierrc
Skip explicitly passed symbolic links with --no-error-on-unmatched-pattern (#​15533 by @​sanmai-NL)

Since Prettier v3, we stopped following symbolic links, however in some use cases, the symbolic link patterns can't be filtered out, and there is no way to prevent Prettier from throwing errors.

In Prettier 3.1.1, you can use --no-error-on-unmatched-pattern to simply skip symbolic links.

Consistently use tabs in ternaries when useTabs is true (#​15662 by @​auvred)
// Input
aaaaaaaaaaaaaaa
	? bbbbbbbbbbbbbbbbbb
	: ccccccccccccccc
	  ? ddddddddddddddd
	  : eeeeeeeeeeeeeee
	    ? fffffffffffffff
	    : gggggggggggggggg;

// Prettier 3.1.0
aaaaaaaaaaaaaaa
	? bbbbbbbbbbbbbbbbbb
	: ccccccccccccccc
	  ? ddddddddddddddd
	  : eeeeeeeeeeeeeee
	    ? fffffffffffffff
	    : gggggggggggggggg;

// Prettier 3.1.1
aaaaaaaaaaaaaaa
	? bbbbbbbbbbbbbbbbbb
	: ccccccccccccccc
		? ddddddddddddddd
		: eeeeeeeeeeeeeee
			? fffffffffffffff
			: gggggggggggggggg;
Improve config file search (#​15663 by @​fisker)

The Prettier config file search performance has been improved by more effective cache strategy.

Fix unstable and ugly formatting for comments in destructuring patterns (#​15708 by @​sosukesuzuki)
// Input
const {
  foo,
  // bar
  // baz
}: Foo = expr;

// Prettier 3.1.0
const {
  foo1,
} // bar
// baz
: Foo = expr;

// Prettier 3.1.0 second output
const {
  foo1, // bar
} // baz
: Foo = expr;

// Prettier 3.1.1
const {
  foo1,
  // bar
  // baz
}: Foo = expr;
Support "Import Attributes" (#​15718 by @​fisker)

TypeScript 5.3 supports the latest updates to the import attributes proposal.

import something from "./something.json" with { type: "json" };
Fix false claim in docs that cursorOffset is incompatible with rangeStart/rangeEnd (#​15750 by @​ExplodingCabbage)

The cursorOffset option has in fact been compatible with rangeStart/rangeEnd for over 5 years, thanks to work by @​ds300. However, Prettier's documentation (including the CLI --help text) continued to claim otherwise, falsely. The documentation is now fixed.

Keep curly braces and from keyword in empty import statements (#​15756 by @​fisker)
// Input
import { } from 'foo';
import { /* comment */ } from 'bar';

// Prettier 3.1.0
import {} from "foo";
import /* comment */ "bar";

// Prettier 3.1.1
import {} from "foo";
import {} from /* comment */ "bar";
Keep empty import attributes and assertions (#​15757 by @​fisker)
// Input
import foo from "foo" with {};
import bar from "bar" assert {};

// Prettier 3.1.0
import foo from "foo";
import bar from "bar";

// Prettier 3.1.1
import foo from "foo" with {};
import bar from "bar" assert {};
TypeStrong/ts-node (ts-node)

v10.9.2: Fix tsconfig.json file not found

Compare Source

Fixed

vitejs/vite (vite)

v5.0.7

Compare Source

vitest-dev/vitest (vitest)

v1.0.4

Compare Source

The previous release was built incorrectly and didn't include the performance fix. This release fixes that.

   🐞 Bug Fixes
   🏎 Performance
    View changes on GitHub

v1.0.3

Compare Source

   🐞 Bug Fixes
   🏎 Performance
    View changes on GitHub

v1.0.2

Compare Source

   🐞 Bug Fixes
    View changes on GitHub
vuejs/core (vue)

v3.3.11

Compare Source

Bug Fixes

Configuration

📅 Schedule: Branch creation - "before 4am 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 has been generated by Mend Renovate. View repository job log here.

@renovate renovate bot requested a review from Yordan-Ramchev as a code owner December 7, 2023 16:53
@renovate renovate bot added the dependencies Pull requests that update a dependency file label Dec 7, 2023
@renovate renovate bot force-pushed the renovate/all-minor-patch branch 4 times, most recently from 959ad65 to 22664d6 Compare December 8, 2023 15:30
@renovate renovate bot force-pushed the renovate/all-minor-patch branch 4 times, most recently from 6f116b7 to 2f79f7b Compare December 10, 2023 10:31
@renovate renovate bot force-pushed the renovate/all-minor-patch branch from 2f79f7b to 9bc787c Compare December 11, 2023 13:23
@Yordan-Ramchev Yordan-Ramchev merged commit 9731e23 into main Dec 11, 2023
@Yordan-Ramchev Yordan-Ramchev deleted the renovate/all-minor-patch branch December 11, 2023 20:31
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
dependencies Pull requests that update a dependency file
Projects
None yet
Development

Successfully merging this pull request may close these issues.

2 participants