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 dependency prettier to v3.2.5 - autoclosed #455

Closed
wants to merge 1 commit into from

Conversation

renovate[bot]
Copy link
Contributor

@renovate renovate bot commented Jul 6, 2023

Mend Renovate

This PR contains the following updates:

Package Change Age Adoption Passing Confidence
prettier (source) 3.0.3 -> 3.2.5 age adoption passing confidence

Release Notes

prettier/prettier (prettier)

v3.2.5

Compare Source

diff

Support Angular inline styles as single template literal (#​15968 by @​sosukesuzuki)

Angular v17 supports single string inline styles.

// Input
@​Component({
  template: `<div>...</div>`,
  styles: `h1 { color: blue; }`,
})
export class AppComponent {}

// Prettier 3.2.4
@&#8203;Component({
  template: `<div>...</div>`,
  styles: `h1 { color: blue; }`,
})
export class AppComponent {}

// Prettier 3.2.5
@&#8203;Component({
  template: `<div>...</div>`,
  styles: `
    h1 {
      color: blue;
    }
  `,
})
export class AppComponent {}
Unexpected embedded formatting for Angular template (#​15969 by @​JounQin)

Computed template should not be considered as Angular component template

// Input
const template = "foobar";

@&#8203;Component({
  [template]: `<h1>{{       hello }}</h1>`,
})
export class AppComponent {}

// Prettier 3.2.4
const template = "foobar";

@&#8203;Component({
  [template]: `<h1>{{ hello }}</h1>`,
})
export class AppComponent {}

// Prettier 3.2.5
const template = "foobar";

@&#8203;Component({
  [template]: `<h1>{{       hello }}</h1>`,
})
export class AppComponent {}
Use "json" parser for tsconfig.json by default (#​16012 by @​sosukesuzuki)

In v2.3.0, we introduced "jsonc" parser which adds trialing comma by default.

When adding a new parser we also define how it will be used based on the linguist-languages data.

tsconfig.json is a special file used by TypeScript, it uses .json file extension, but it actually uses the JSON with Comments syntax. However, we found that there are many third-party tools not recognize it correctly because of the confusing .json file extension.

We decide to treat it as a JSON file for now to avoid the extra configuration step.

To keep using the "jsonc" parser for your tsconfig.json files, add the following to your .pretterrc file

{
  "overrides": [
    {
      "files": ["tsconfig.json", "jsconfig.json"],
      "options": {
        "parser": "jsonc"
      }
    }
  ]
}

v3.2.4

Compare Source

diff

Fix incorrect parser inference (#​15947 by @​fisker)

Files like .eslintrc.json were incorrectly formatted as JSONC files.

// Input
prettier --file-info .eslintrc.json
{ "ignored": false, "inferredParser": "jsonc" }

// Prettier 3.2.4
prettier --file-info .eslintrc.json
{ "ignored": false, "inferredParser": "json" }

v3.2.3

Compare Source

diff

Throw errors for invalid code (#​15881 by @​fisker, @​Josh-Cena, @​auvred)
// Input
1++;

// Prettier 3.2.2
1++;

// Prettier 3.2.3
SyntaxError: Invalid left-hand side expression in unary operation (1:1)
> 1 | 1++;
    | ^
// Input
try {} catch (error = 1){}

// Prettier 3.2.2
try {
} catch (error) {}

// Prettier 3.2.3
SyntaxError: Catch clause variable cannot have an initializer. (1:23)
> 1 | try {} catch (error = 1){}
    |                       ^
Fix parser inference (#​15927 by @​fisker)
// Prettier 3.2.2
prettier --file-info tsconfig.json
{ "ignored": false, "inferredParser": "json" }

// Prettier 3.2.3
prettier --file-info tsconfig.json
{ "ignored": false, "inferredParser": "jsonc" }

v3.2.2

Compare Source

diff

Fix crash when parsing template literal CSS in a JSX style tag using a spread attribute (#​15896 by @​eelco)

For example this code would crash before:

<style {...spread}>{`.{}`}</style>
Fix formatting error on optional call expression and member chain (#​15920 by @​sosukesuzuki)
// Input
a(() => {}, c?.d());

// Prettier 3.2.1
TypeError: Cannot read properties of undefined (reading 'type')

// Prettier 3.2.2
a(() => {}, c?.d());

v3.2.1

Compare Source

diff

Fix formatting error on member chain (#​15915 by @​sosukesuzuki)
// Input
test().test2().test2(thing?.something);

// Prettier 3.2.0
TypeError: Cannot read properties of undefined (reading 'type')

// Prettier 3.2.1
test().test2().test2(thing?.something);

v3.2.0

Compare Source

diff

🔗 Release Notes

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


Configuration

📅 Schedule: Branch creation - At any time (no schedule defined), Automerge - At any time (no schedule defined).

🚦 Automerge: Enabled.

Rebasing: Whenever PR becomes conflicted, or you tick the rebase/retry checkbox.

🔕 Ignore: Close this PR and you won't be reminded about this update again.


  • If you want to rebase/retry this PR, check this box

This PR has been generated by Mend Renovate. View repository job log here.

@codecov-commenter
Copy link

codecov-commenter commented Jul 6, 2023

Codecov Report

All modified and coverable lines are covered by tests ✅

Comparison is base (4ee16d9) 61.83% compared to head (8854fd7) 61.83%.

❗ Current head 8854fd7 differs from pull request most recent head 483ef39. Consider uploading reports for the commit 483ef39 to get more accurate results

Additional details and impacted files
@@           Coverage Diff           @@
##             main     #455   +/-   ##
=======================================
  Coverage   61.83%   61.83%           
=======================================
  Files           9        9           
  Lines        1124     1124           
  Branches        6        6           
=======================================
  Hits          695      695           
  Misses        420      420           
  Partials        9        9           

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

@renovate renovate bot assigned fisker Jul 6, 2023
@renovate renovate bot requested a review from fisker July 6, 2023 18:26
@renovate renovate bot force-pushed the renovate/prettier-3.x branch 2 times, most recently from 4864828 to ba5059c Compare July 12, 2023 16:22
@renovate renovate bot force-pushed the renovate/prettier-3.x branch from ba5059c to e503ad0 Compare July 26, 2023 19:04
@renovate renovate bot force-pushed the renovate/prettier-3.x branch from e503ad0 to 3682891 Compare August 4, 2023 06:28
@renovate renovate bot force-pushed the renovate/prettier-3.x branch 5 times, most recently from e3d0a17 to 274074e Compare August 16, 2023 16:15
@renovate renovate bot force-pushed the renovate/prettier-3.x branch 4 times, most recently from 033c4a0 to 99432f6 Compare August 27, 2023 11:02
@renovate renovate bot force-pushed the renovate/prettier-3.x branch 2 times, most recently from 0b8a95d to dbd1e30 Compare September 1, 2023 16:51
@renovate renovate bot force-pushed the renovate/prettier-3.x branch from dbd1e30 to 6dc50ee Compare September 18, 2023 04:15
@renovate renovate bot force-pushed the renovate/prettier-3.x branch from 6dc50ee to 4338356 Compare September 28, 2023 22:45
@renovate renovate bot force-pushed the renovate/prettier-3.x branch from 4338356 to 77b17cd Compare October 15, 2023 22:03
@renovate renovate bot changed the title chore(deps): update dependency prettier to v3 chore(deps): update dependency prettier to v3 - autoclosed Nov 6, 2023
@renovate renovate bot closed this Nov 6, 2023
@renovate renovate bot deleted the renovate/prettier-3.x branch November 6, 2023 11:50
@renovate renovate bot changed the title chore(deps): update dependency prettier to v3 - autoclosed chore(deps): update dependency prettier to v3 Nov 13, 2023
@renovate renovate bot reopened this Nov 13, 2023
@renovate renovate bot restored the renovate/prettier-3.x branch November 13, 2023 04:16
@renovate renovate bot changed the title chore(deps): update dependency prettier to v3 chore(deps): update dependency prettier to v3.1.0 Nov 13, 2023
@renovate renovate bot force-pushed the renovate/prettier-3.x branch from 77b17cd to 91b4013 Compare November 13, 2023 07:58
@renovate renovate bot changed the title chore(deps): update dependency prettier to v3.1.0 chore(deps): update dependency prettier to v3.1.1 Dec 11, 2023
@renovate renovate bot force-pushed the renovate/prettier-3.x branch from 91b4013 to 7b9c0d3 Compare December 11, 2023 12:25
@renovate renovate bot force-pushed the renovate/prettier-3.x branch from 7b9c0d3 to 0e541e0 Compare January 13, 2024 16:34
@renovate renovate bot changed the title chore(deps): update dependency prettier to v3.1.1 chore(deps): update dependency prettier to v3.2.0 Jan 13, 2024
@renovate renovate bot force-pushed the renovate/prettier-3.x branch from 0e541e0 to 8e7fcfe Compare January 13, 2024 22:46
@renovate renovate bot changed the title chore(deps): update dependency prettier to v3.2.0 chore(deps): update dependency prettier to v3.2.1 Jan 13, 2024
@renovate renovate bot force-pushed the renovate/prettier-3.x branch from 8e7fcfe to 85ed93e Compare January 15, 2024 03:28
@renovate renovate bot changed the title chore(deps): update dependency prettier to v3.2.1 chore(deps): update dependency prettier to v3.2.2 Jan 15, 2024
@renovate renovate bot force-pushed the renovate/prettier-3.x branch from 85ed93e to 92253f8 Compare January 18, 2024 07:27
@renovate renovate bot changed the title chore(deps): update dependency prettier to v3.2.2 chore(deps): update dependency prettier to v3.2.3 Jan 18, 2024
@renovate renovate bot force-pushed the renovate/prettier-3.x branch from 92253f8 to 8854fd7 Compare January 18, 2024 11:49
@renovate renovate bot changed the title chore(deps): update dependency prettier to v3.2.3 chore(deps): update dependency prettier to v3.2.4 Jan 18, 2024
@renovate renovate bot force-pushed the renovate/prettier-3.x branch from 8854fd7 to 483ef39 Compare February 5, 2024 07:49
@renovate renovate bot changed the title chore(deps): update dependency prettier to v3.2.4 chore(deps): update dependency prettier to v3.2.5 Feb 5, 2024
@renovate renovate bot changed the title chore(deps): update dependency prettier to v3.2.5 chore(deps): update dependency prettier to v3.2.5 - autoclosed May 13, 2024
@renovate renovate bot closed this May 13, 2024
@renovate renovate bot deleted the renovate/prettier-3.x branch May 13, 2024 06:20
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.

2 participants