|
10 | 10 |
|
11 | 11 | <!-- Changes that affect Black's stable style -->
|
12 | 12 |
|
13 |
| -- Import lines with `# fmt: skip` and `# fmt: off` no longer have an extra blank line |
14 |
| - added when they are right after another import line (#3610) |
15 |
| - |
16 | 13 | ### Preview style
|
17 | 14 |
|
18 | 15 | <!-- Changes that affect Black's preview style -->
|
19 | 16 |
|
20 |
| -- Add trailing commas to collection literals even if there's a comment after the last |
21 |
| - entry (#3393) |
22 |
| -- `async def`, `async for`, and `async with` statements are now formatted consistently |
23 |
| - compared to their non-async version. (#3609) |
24 |
| -- `with` statements that contain two context managers will be consistently wrapped in |
25 |
| - parentheses (#3589) |
26 |
| -- Let string splitters respect [East Asian Width](https://www.unicode.org/reports/tr11/) |
27 |
| - (#3445) |
28 |
| -- Now long string literals can be split after East Asian commas and periods (`、` U+3001 |
29 |
| - IDEOGRAPHIC COMMA, `。` U+3002 IDEOGRAPHIC FULL STOP, & `,` U+FF0C FULLWIDTH COMMA) |
30 |
| - besides before spaces (#3445) |
31 |
| -- For stubs, enforce one blank line after a nested class with a body other than just |
32 |
| - `...` (#3564) |
33 |
| - |
34 | 17 | ### Configuration
|
35 | 18 |
|
36 | 19 | <!-- Changes to how Black can be configured -->
|
|
43 | 26 |
|
44 | 27 | <!-- Changes to the parser or to version autodetection -->
|
45 | 28 |
|
46 |
| -- Added support for formatting files with invalid type comments (#3594) |
47 |
| - |
48 | 29 | ### Performance
|
49 | 30 |
|
50 | 31 | <!-- Changes that improve Black's performance. -->
|
|
61 | 42 |
|
62 | 43 | <!-- For example, Docker, GitHub Actions, pre-commit, editors -->
|
63 | 44 |
|
64 |
| -- Update GitHub Action to use the version of Black equivalent to action's version if |
65 |
| - version input is not specified (#3543) |
66 |
| - |
67 | 45 | ### Documentation
|
68 | 46 |
|
69 | 47 | <!-- Major changes to documentation and policies. Small docs changes
|
70 | 48 | don't need a changelog entry. -->
|
71 | 49 |
|
| 50 | +## 23.3.0 |
| 51 | + |
| 52 | +### Highlights |
| 53 | + |
| 54 | +This release fixes a longstanding confusing behavior in Black's GitHub action, where the |
| 55 | +version of the action did not determine the version of Black being run (issue #3382). In |
| 56 | +addition, there is a small bug fix around imports and a number of improvements to the |
| 57 | +preview style. |
| 58 | + |
| 59 | +Please try out the |
| 60 | +[preview style](https://black.readthedocs.io/en/stable/the_black_code_style/future_style.html#preview-style) |
| 61 | +with `black --preview` and tell us your feedback. All changes in the preview style are |
| 62 | +expected to become part of Black's stable style in January 2024. |
| 63 | + |
| 64 | +### Stable style |
| 65 | + |
| 66 | +- Import lines with `# fmt: skip` and `# fmt: off` no longer have an extra blank line |
| 67 | + added when they are right after another import line (#3610) |
| 68 | + |
| 69 | +### Preview style |
| 70 | + |
| 71 | +- Add trailing commas to collection literals even if there's a comment after the last |
| 72 | + entry (#3393) |
| 73 | +- `async def`, `async for`, and `async with` statements are now formatted consistently |
| 74 | + compared to their non-async version. (#3609) |
| 75 | +- `with` statements that contain two context managers will be consistently wrapped in |
| 76 | + parentheses (#3589) |
| 77 | +- Let string splitters respect [East Asian Width](https://www.unicode.org/reports/tr11/) |
| 78 | + (#3445) |
| 79 | +- Now long string literals can be split after East Asian commas and periods (`、` U+3001 |
| 80 | + IDEOGRAPHIC COMMA, `。` U+3002 IDEOGRAPHIC FULL STOP, & `,` U+FF0C FULLWIDTH COMMA) |
| 81 | + besides before spaces (#3445) |
| 82 | +- For stubs, enforce one blank line after a nested class with a body other than just |
| 83 | + `...` (#3564) |
| 84 | + |
| 85 | +### Parser |
| 86 | + |
| 87 | +- Added support for formatting files with invalid type comments (#3594) |
| 88 | + |
| 89 | +### Integrations |
| 90 | + |
| 91 | +- Update GitHub Action to use the version of Black equivalent to action's version if |
| 92 | + version input is not specified (#3543) |
| 93 | + |
| 94 | +### Documentation |
| 95 | + |
72 | 96 | - Document that only the most recent release is supported for security issues;
|
73 | 97 | vulnerabilities should be reported through Tidelift (#3612)
|
74 | 98 |
|
|
0 commit comments