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 non-major #111

Merged
merged 1 commit into from
Jan 8, 2024
Merged

chore(deps): update non-major #111

merged 1 commit into from
Jan 8, 2024

Conversation

renovate[bot]
Copy link
Contributor

@renovate renovate bot commented Nov 6, 2023

Mend Renovate

This PR contains the following updates:

Package Change Age Adoption Passing Confidence
ls-engines 0.9.0 -> 0.9.1 age adoption passing confidence
prettier (source) ^3.0.3 -> ^3.1.1 age adoption passing confidence
prettier-plugin-packagejson ^2.4.6 -> ^2.4.9 age adoption passing confidence
semantic-release ^22.0.5 -> ^22.0.12 age adoption passing confidence

Release Notes

ljharb/ls-engines (ls-engines)

v0.9.1

Compare Source

Commits
  • [Refactor] extract getGraphEntries a2d6348
  • [Refactor] getGraphEntries: sort output by package name and node version, for determinism 74690d8
  • [Refactor] extract getGraphValids, validVersionsForEngines f6d807e
  • [Refactor] extract getAllVersions 0d0d327
  • [Refactor] some code cleanup ac05eaf
  • [Robustness] getGraphEntries: avoid builtin prototype methods 24f4201
  • [Refactor] use arborist querySelectorAll instead of filtering inventory dc77370
  • [Tests] update fixtures; depd was removed in https://github.com/node-modules/agentkeepalive/pull/114 e5c1783
  • [Deps] update @npmcli/arborist, object.fromentries, object.values, pacote, promise.allsettled, semver, yargs baf84ac
  • [Dev Deps] update @ljharb/eslint-config, aud, tape 71295f2
  • [Refactor] remove unneccesary promise creation when the graph is empty dbc0dde
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 {};

v3.1.0

Compare Source

diff

🔗 Release Notes

matzkoh/prettier-plugin-packagejson (prettier-plugin-packagejson)

v2.4.9

Compare Source

Bug Fixes
  • deps: update dependency synckit to v0.9.0 (446d477)

v2.4.8

Compare Source

Bug Fixes
  • deps: update dependency synckit to v0.8.8 (bfbbf2d)

v2.4.7

Compare Source

Bug Fixes
  • deps: update dependency synckit to v0.8.6 (7637443)
semantic-release/semantic-release (semantic-release)

v22.0.12

Compare Source

Bug Fixes
  • Revert "fix(deps): update dependency cosmiconfig to v9" (#​3104) (f6f1bf1)

v22.0.11

Compare Source

Bug Fixes
  • deps: update dependency cosmiconfig to v9 (b38cd2e)

v22.0.10

Compare Source

Bug Fixes
  • revert updating cosmiconfig to v9 (88efead)

v22.0.9

Compare Source

Bug Fixes

v22.0.8

Compare Source

Bug Fixes

v22.0.7

Compare Source

Bug Fixes
Features

v22.0.6

Compare Source

Bug Fixes

Configuration

📅 Schedule: Branch creation - "before 3am on the first day of the month" (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 using a curated preset maintained by Sanity. View repository job log here

@renovate renovate bot added the 📦 deps label Nov 6, 2023
@renovate renovate bot requested a review from a team as a code owner November 6, 2023 00:41
@renovate renovate bot added the 🤖 bot label Nov 6, 2023
Copy link

socket-security bot commented Nov 6, 2023

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

Packages Version New capabilities Transitives Size Publisher
prettier 3.1.1 filesystem, environment +0 8.42 MB prettier-bot
ls-engines 0.9.0...0.9.1 None +24/-14 2.69 MB ljharb
prettier-plugin-packagejson 2.4.6...2.4.9 None +4/-20 8.58 MB
semantic-release 22.0.5...22.0.12 None +17/-6 1.33 MB semantic-release-bot

@renovate renovate bot changed the title fix(deps): update dependency semantic-release to ^22.0.7 chore(deps): update non-major Nov 13, 2023
@renovate renovate bot force-pushed the renovate/non-major branch 3 times, most recently from 5d3d38e to 592a2bc Compare November 17, 2023 04:48
@renovate renovate bot force-pushed the renovate/non-major branch 3 times, most recently from 6c7f945 to 5653b35 Compare December 6, 2023 06:21
@renovate renovate bot force-pushed the renovate/non-major branch 3 times, most recently from 59924cc to 2a7fcf1 Compare December 12, 2023 07:19
@stipsan stipsan merged commit cf78617 into main Jan 8, 2024
16 checks passed
@stipsan stipsan deleted the renovate/non-major branch January 8, 2024 09:10
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.

1 participant