Skip to content

Commit 5282938

Browse files
committed
Release 3.3.3
1 parent 9102b73 commit 5282938

File tree

8 files changed

+87
-25
lines changed

8 files changed

+87
-25
lines changed

.github/ISSUE_TEMPLATE/formatting.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ Don't fill the form below manually! Let a program create a report for you:
2626
2727
-->
2828

29-
**Prettier 3.3.2**
29+
**Prettier 3.3.3**
3030
[Playground link](https://prettier.io/playground/#.....)
3131

3232
```sh

.github/ISSUE_TEMPLATE/integration.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ BEFORE SUBMITTING AN ISSUE:
2020

2121
**Environments:**
2222

23-
- Prettier Version: 3.3.2
23+
- Prettier Version: 3.3.3
2424
- Running Prettier via: <!-- CLI, Node.js API, Browser API, etc. -->
2525
- Runtime: <!-- Node.js v14, Chrome v83, etc. -->
2626
- Operating System: <!-- Windows, Linux, macOS, etc. -->

CHANGELOG.md

+63
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,66 @@
1+
# 3.3.3
2+
3+
[diff](https://github.com/prettier/prettier/compare/3.3.2...3.3.3)
4+
5+
#### Add parentheses for nullish coalescing in ternary ([#16391](https://github.com/prettier/prettier/pull/16391) by [@cdignam-segment](https://github.com/cdignam-segment))
6+
7+
This change adds clarity to operator precedence.
8+
9+
<!-- prettier-ignore -->
10+
```js
11+
// Input
12+
foo ? bar ?? foo : baz;
13+
foo ?? bar ? a : b;
14+
a ? b : foo ?? bar;
15+
16+
// Prettier 3.3.2
17+
foo ? bar ?? foo : baz;
18+
foo ?? bar ? a : b;
19+
a ? b : foo ?? bar;
20+
21+
// Prettier 3.3.3
22+
foo ? (bar ?? foo) : baz;
23+
(foo ?? bar) ? a : b;
24+
a ? b : (foo ?? bar);
25+
```
26+
27+
#### Add parentheses for decorator expressions ([#16458](https://github.com/prettier/prettier/pull/16458) by [@y-schneider](https://github.com/y-schneider))
28+
29+
Prevent parentheses around member expressions or tagged template literals from being removed to follow the stricter parsing rules of TypeScript 5.5.
30+
31+
<!-- prettier-ignore -->
32+
```ts
33+
// Input
34+
@(foo`tagged template`)
35+
class X {}
36+
37+
// Prettier 3.3.2
38+
@foo`tagged template`
39+
class X {}
40+
41+
// Prettier 3.3.3
42+
@(foo`tagged template`)
43+
class X {}
44+
```
45+
46+
#### Support `@let` declaration syntax ([#16474](https://github.com/prettier/prettier/pull/16474) by [@sosukesuzuki](https://github.com/sosukesuzuki))
47+
48+
Adds support for Angular v18 `@let` declaration syntax.
49+
50+
Please see the following code example. The `@let` declaration allows you to define local variables within the template:
51+
52+
<!-- prettier-ignore -->
53+
```html
54+
@let name = 'Frodo';
55+
56+
<h1>Dashboard for {{name}}</h1>
57+
Hello, {{name}}
58+
```
59+
60+
For more details, please refer to the excellent blog post by the Angular Team: [Introducing @let in Angular](https://blog.angular.dev/introducing-let-in-angular-686f9f383f0f).
61+
62+
We also appreciate the Angular Team for kindly answering our questions to implement this feature.
63+
164
# 3.3.2
265

366
[diff](https://github.com/prettier/prettier/compare/3.3.1...3.3.2)

package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "prettier",
3-
"version": "3.4.0-dev",
3+
"version": "3.3.3",
44
"description": "Prettier is an opinionated code formatter",
55
"bin": "./bin/prettier.cjs",
66
"repository": "prettier/prettier",

website/versioned_docs/version-stable/browser.md

+16-16
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ Required options:
1919

2020
- **[`parser`](options.md#parser) (or [`filepath`](options.md#file-path))**: One of these options has to be specified for Prettier to know which parser to use.
2121

22-
- **`plugins`**: Unlike the `format` function from the [Node.js-based API](api.md#prettierformatsource--options), this function doesn’t load plugins automatically. The `plugins` option is required because all the parsers included in the Prettier package come as plugins (for reasons of file size). These plugins are files in <https://unpkg.com/browse/[email protected].2/plugins/>. Note that `estree` plugin should be loaded when printing JavaScript, TypeScript, Flow, or JSON.
22+
- **`plugins`**: Unlike the `format` function from the [Node.js-based API](api.md#prettierformatsource--options), this function doesn’t load plugins automatically. The `plugins` option is required because all the parsers included in the Prettier package come as plugins (for reasons of file size). These plugins are files in <https://unpkg.com/browse/[email protected].3/plugins/>. Note that `estree` plugin should be loaded when printing JavaScript, TypeScript, Flow, or JSON.
2323

2424
You need to load the ones that you’re going to use and pass them to `prettier.format` using the `plugins` option.
2525

@@ -30,8 +30,8 @@ See below for examples.
3030
### Global
3131

3232
```html
33-
<script src="https://unpkg.com/[email protected].2/standalone.js"></script>
34-
<script src="https://unpkg.com/[email protected].2/plugins/graphql.js"></script>
33+
<script src="https://unpkg.com/[email protected].3/standalone.js"></script>
34+
<script src="https://unpkg.com/[email protected].3/plugins/graphql.js"></script>
3535
<script>
3636
(async () => {
3737
const formatted = await prettier.format("type Query { hello: String }", {
@@ -48,8 +48,8 @@ Note that the [`unpkg` field](https://unpkg.com/#examples) in Prettier’s `pack
4848

4949
```html
5050
<script type="module">
51-
import * as prettier from "https://unpkg.com/[email protected].2/standalone.mjs";
52-
import prettierPluginGraphql from "https://unpkg.com/[email protected].2/plugins/graphql.mjs";
51+
import * as prettier from "https://unpkg.com/[email protected].3/standalone.mjs";
52+
import prettierPluginGraphql from "https://unpkg.com/[email protected].3/plugins/graphql.mjs";
5353
5454
const formatted = await prettier.format("type Query { hello: String }", {
5555
parser: "graphql",
@@ -62,8 +62,8 @@ Note that the [`unpkg` field](https://unpkg.com/#examples) in Prettier’s `pack
6262

6363
```js
6464
define([
65-
"https://unpkg.com/[email protected].2/standalone.js",
66-
"https://unpkg.com/[email protected].2/plugins/graphql.js",
65+
"https://unpkg.com/[email protected].3/standalone.js",
66+
"https://unpkg.com/[email protected].3/plugins/graphql.js",
6767
], async (prettier, ...plugins) => {
6868
const formatted = await prettier.format("type Query { hello: String }", {
6969
parser: "graphql",
@@ -91,8 +91,8 @@ This syntax doesn’t necessarily work in the browser, but it can be used when b
9191
### Worker
9292

9393
```js
94-
importScripts("https://unpkg.com/[email protected].2/standalone.js");
95-
importScripts("https://unpkg.com/[email protected].2/plugins/graphql.js");
94+
importScripts("https://unpkg.com/[email protected].3/standalone.js");
95+
importScripts("https://unpkg.com/[email protected].3/plugins/graphql.js");
9696

9797
(async () => {
9898
const formatted = await prettier.format("type Query { hello: String }", {
@@ -108,9 +108,9 @@ If you want to format [embedded code](options.md#embedded-language-formatting),
108108

109109
```html
110110
<script type="module">
111-
import * as prettier from "https://unpkg.com/[email protected].2/standalone.mjs";
112-
import prettierPluginBabel from "https://unpkg.com/[email protected].2/plugins/babel.mjs";
113-
import prettierPluginEstree from "https://unpkg.com/[email protected].2/plugins/estree.mjs";
111+
import * as prettier from "https://unpkg.com/[email protected].3/standalone.mjs";
112+
import prettierPluginBabel from "https://unpkg.com/[email protected].3/plugins/babel.mjs";
113+
import prettierPluginEstree from "https://unpkg.com/[email protected].3/plugins/estree.mjs";
114114
115115
console.log(
116116
await prettier.format("const html=/* HTML */ `<DIV> </DIV>`", {
@@ -126,10 +126,10 @@ The HTML code embedded in JavaScript stays unformatted because the `html` parser
126126

127127
```html
128128
<script type="module">
129-
import * as prettier from "https://unpkg.com/[email protected].2/standalone.mjs";
130-
import prettierPluginBabel from "https://unpkg.com/[email protected].2/plugins/babel.mjs";
131-
import prettierPluginEstree from "https://unpkg.com/[email protected].2/plugins/estree.mjs";
132-
import prettierPluginHtml from "https://unpkg.com/[email protected].2/plugins/html.mjs";
129+
import * as prettier from "https://unpkg.com/[email protected].3/standalone.mjs";
130+
import prettierPluginBabel from "https://unpkg.com/[email protected].3/plugins/babel.mjs";
131+
import prettierPluginEstree from "https://unpkg.com/[email protected].3/plugins/estree.mjs";
132+
import prettierPluginHtml from "https://unpkg.com/[email protected].3/plugins/html.mjs";
133133
134134
console.log(
135135
await prettier.format("const html=/* HTML */ `<DIV> </DIV>`", {

website/versioned_docs/version-stable/configuration.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -203,11 +203,11 @@ You can also switch to the `flow` parser instead of the default `babel` for .js
203203

204204
## Configuration Schema
205205

206-
If you’d like a JSON schema to validate your configuration, one is available here: https://json.schemastore.org/prettierrc.
206+
If you’d like a JSON schema to validate your configuration, one is available here: <https://json.schemastore.org/prettierrc>.
207207

208208
## EditorConfig
209209

210-
If `options.editorconfig` is `true` and an [`.editorconfig` file](https://editorconfig.org/) is in your project, Prettier will parse it and convert its properties to the corresponding Prettier configuration. This configuration will be overridden by `.prettierrc`, etc.
210+
If a [`.editorconfig` file](https://editorconfig.org/) is in your project, Prettier will parse it and convert its properties to the corresponding Prettier configuration. This configuration will be overridden by `.prettierrc`, etc.
211211

212212
Here’s an annotated description of how different properties map to Prettier’s behavior:
213213

website/versioned_docs/version-stable/install.md

+2-4
Original file line numberDiff line numberDiff line change
@@ -48,10 +48,8 @@ node --eval "fs.writeFileSync('.prettierrc','{}\n')"
4848

4949
Next, create a [.prettierignore](ignore.md) file to let the Prettier CLI and editors know which files to _not_ format. Here’s an example:
5050

51-
```text
52-
# Ignore artifacts:
53-
build
54-
coverage
51+
```bash
52+
node --eval "fs.writeFileSync('.prettierignore','# Ignore artifacts:\nbuild\ncoverage\n')"
5553
```
5654

5755
> Tip! Prettier will follow rules specified in .gitignore if it exists in the same directory from which it is run. You can also base your .prettierignore on .eslintignore (if you have one).

website/versioned_docs/version-stable/related-projects.md

+1
Original file line numberDiff line numberDiff line change
@@ -31,3 +31,4 @@ original_id: related-projects
3131
- [prettier-chrome](https://github.com/u3u/prettier-chrome) is an extension that runs Prettier in the browser
3232
- [spotless](https://github.com/diffplug/spotless) lets you run prettier from [gradle](https://github.com/diffplug/spotless/tree/main/plugin-gradle#prettier) or [maven](https://github.com/diffplug/spotless/tree/main/plugin-maven#prettier).
3333
- [csharpier](https://github.com/belav/csharpier) is a port of Prettier for C#
34+
- [reviewdog-action-prettier](https://github.com/EPMatt/reviewdog-action-prettier) runs Prettier in GitHub Actions CI/CD workflows

0 commit comments

Comments
 (0)