X-Git-Url: https://git.madduck.net/etc/vim.git/blobdiff_plain/b0d1fba7ac3be53c71fb0d3211d911e629f8aecb..f3b1a3b9d2fc6de8f0845399cb80d8bdfd6400fd:/CHANGES.md diff --git a/CHANGES.md b/CHANGES.md index 2071eb3..a429e32 100644 --- a/CHANGES.md +++ b/CHANGES.md @@ -10,10 +10,27 @@ +- Import lines with `# fmt: skip` and `# fmt: off` no longer have an extra blank line + added when they are right after another import line (#3610) + ### Preview style +- Add trailing commas to collection literals even if there's a comment after the last + entry (#3393) +- `async def`, `async for`, and `async with` statements are now formatted consistently + compared to their non-async version. (#3609) +- `with` statements that contain two context managers will be consistently wrapped in + parentheses (#3589) +- Let string splitters respect [East Asian Width](https://www.unicode.org/reports/tr11/) + (#3445) +- Now long string literals can be split after East Asian commas and periods (`、` U+3001 + IDEOGRAPHIC COMMA, `。` U+3002 IDEOGRAPHIC FULL STOP, & `,` U+FF0C FULLWIDTH COMMA) + besides before spaces (#3445) +- For stubs, enforce one blank line after a nested class with a body other than just + `...` (#3564) + ### Configuration @@ -26,6 +43,8 @@ +- Added support for formatting files with invalid type comments (#3594) + ### Performance @@ -47,6 +66,9 @@ +- Document that only the most recent release is supported for security issues; + vulnerabilities should be reported through Tidelift (#3612) + ## 23.1.0 ### Highlights @@ -130,6 +152,7 @@ versions separately. code. Implicitly concatenated f-strings with different quotes can now be merged or quote-normalized by changing the quotes used in expressions. (#3509) - Fix crash on `await (yield)` when Black is compiled with mypyc (#3533) +- Improve handling of multiline strings by changing line split behavior (#1879) ### Configuration