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 devdependencies-non-major #10

Open
wants to merge 1 commit into
base: master
Choose a base branch
from

Conversation

renovate[bot]
Copy link

@renovate renovate bot commented May 10, 2021

Mend Renovate

This PR contains the following updates:

Package Change Age Adoption Passing Confidence
@types/node (source) 20.6.2 -> 20.10.4 age adoption passing confidence
@types/react (source) 18.2.22 -> 18.2.43 age adoption passing confidence
@types/sanitize-html (source) 2.9.0 -> 2.9.5 age adoption passing confidence
@types/styled-components (source) 5.1.27 -> 5.1.34 age adoption passing confidence
prettier (source) 3.0.3 -> 3.1.1 age adoption passing confidence
typescript (source) 5.2.2 -> 5.3.3 age adoption passing confidence

Release Notes

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

Microsoft/TypeScript (typescript)

v5.3.3: TypeScript 5.3.3

Compare Source

For release notes, check out the release announcement.

For the complete list of fixed issues, check out the

Downloads are available on:

v5.3.2: TypeScript 5.3

Compare Source

For release notes, check out the release announcement.

For the complete list of fixed issues, check out the

Downloads are available on:


Configuration

📅 Schedule: Branch creation - "every 2 weeks on Monday before 7am" in timezone Europe/Berlin, 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.

@renovate
Copy link
Author

renovate bot commented May 10, 2021

Branch automerge failure

This PR was configured for branch automerge, however this is not possible so it has been raised as a PR instead.


  • Branch has one or more failed status checks

@vercel
Copy link

vercel bot commented May 10, 2021

This pull request is being automatically deployed with Vercel (learn more).
To see the status of your deployment, click below or on the icon next to each commit.

🔍 Inspect: https://vercel.com/vogelino/michaelajaritz/9c64AB1hs8ry19SH7qgFyWPkfeqP
✅ Preview: https://michaelajaritz-git-renovate-devdependencies-non-major-vogelino.vercel.app

@renovate renovate bot force-pushed the renovate/devdependencies-non-major branch from f05aa3b to 8102607 Compare May 10, 2021 17:17
@renovate renovate bot force-pushed the renovate/devdependencies-non-major branch from 8102607 to ef751f0 Compare May 12, 2021 17:33
@renovate renovate bot force-pushed the renovate/devdependencies-non-major branch from ef751f0 to ff2d4dd Compare May 12, 2021 21:02
@renovate renovate bot force-pushed the renovate/devdependencies-non-major branch from ff2d4dd to d42e4c8 Compare May 14, 2021 08:21
@renovate renovate bot force-pushed the renovate/devdependencies-non-major branch from d42e4c8 to 67933d2 Compare May 14, 2021 13:15
@renovate renovate bot force-pushed the renovate/devdependencies-non-major branch from 67933d2 to 00c4ef1 Compare May 15, 2021 04:55
@renovate renovate bot force-pushed the renovate/devdependencies-non-major branch from 00c4ef1 to 075c65d Compare May 15, 2021 17:55
@renovate renovate bot force-pushed the renovate/devdependencies-non-major branch from 075c65d to f13f942 Compare May 17, 2021 17:28
@renovate renovate bot force-pushed the renovate/devdependencies-non-major branch from f13f942 to 2bf7dd2 Compare May 17, 2021 19:18
@renovate renovate bot force-pushed the renovate/devdependencies-non-major branch from 2bf7dd2 to bc6d908 Compare May 17, 2021 21:10
@renovate renovate bot force-pushed the renovate/devdependencies-non-major branch from bc6d908 to c99171a Compare May 18, 2021 18:11
@renovate renovate bot force-pushed the renovate/devdependencies-non-major branch from c99171a to 4f3ba60 Compare May 19, 2021 17:50
@renovate renovate bot force-pushed the renovate/devdependencies-non-major branch from 4f3ba60 to b76ea6d Compare May 20, 2021 02:03
@renovate renovate bot force-pushed the renovate/devdependencies-non-major branch from b76ea6d to c24311e Compare May 21, 2021 20:56
@renovate renovate bot force-pushed the renovate/devdependencies-non-major branch from bfc4c30 to fa97eb6 Compare November 19, 2023 02:18
@renovate renovate bot force-pushed the renovate/devdependencies-non-major branch from fa97eb6 to c7bde58 Compare November 21, 2023 06:02
@renovate renovate bot force-pushed the renovate/devdependencies-non-major branch from c7bde58 to ccd0e3d Compare November 22, 2023 11:55
@renovate renovate bot force-pushed the renovate/devdependencies-non-major branch from ccd0e3d to eee35dc Compare November 24, 2023 05:44
@renovate renovate bot force-pushed the renovate/devdependencies-non-major branch from eee35dc to 580e194 Compare November 25, 2023 08:29
@renovate renovate bot force-pushed the renovate/devdependencies-non-major branch from 580e194 to 57a2919 Compare November 28, 2023 08:27
@renovate renovate bot force-pushed the renovate/devdependencies-non-major branch from 57a2919 to f391f64 Compare November 30, 2023 02:47
@renovate renovate bot force-pushed the renovate/devdependencies-non-major branch from f391f64 to 6ac04ba Compare December 2, 2023 14:54
@renovate renovate bot force-pushed the renovate/devdependencies-non-major branch from 6ac04ba to 301a3ff Compare December 3, 2023 02:24
@renovate renovate bot force-pushed the renovate/devdependencies-non-major branch from 301a3ff to c235732 Compare December 5, 2023 02:44
@renovate renovate bot force-pushed the renovate/devdependencies-non-major branch from c235732 to 3eae5af Compare December 7, 2023 02:52
@renovate renovate bot force-pushed the renovate/devdependencies-non-major branch from 3eae5af to 59d06c8 Compare December 9, 2023 08:33
@renovate renovate bot force-pushed the renovate/devdependencies-non-major branch from 59d06c8 to 2cd36d0 Compare December 10, 2023 02: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.

0 participants