Skip to content

Commit 4fac1e7

Browse files
committed
docs: adding changes and doc related to prettier
1 parent e6b2268 commit 4fac1e7

File tree

5 files changed

+12
-0
lines changed

5 files changed

+12
-0
lines changed

CHANGES.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -17,11 +17,15 @@ We adhere to the [keepachangelog](https://keepachangelog.com/en/1.0.0/) format (
1717
* `enum OnMatch { INCLUDE, EXCLUDE }` so that `FormatterStep.filterByContent` can not only include based on the pattern but also exclude. ([#1749](https://github.com/diffplug/spotless/pull/1749))
1818
### Fixed
1919
* Update documented default `semanticSort` to `false`. ([#1728](https://github.com/diffplug/spotless/pull/1728))
20+
* Add support for `prettier` version `3.0.0` and newer. ([#9999]https://github.com/diffplug/spotless/pull/9999), [#1751](https://github.com/diffplug/spotless/issues/1751))
21+
* Fix npm install calls when npm cache is not up-to-date. ([#9999]https://github.com/diffplug/spotless/pull/9999), [#1750](https://github.com/diffplug/spotless/issues/1750))
22+
2023
### Changes
2124
* Bump default `cleanthat` version to latest `2.13` -> `2.17`. ([#1734](https://github.com/diffplug/spotless/pull/1734))
2225
* Bump default `ktlint` version to latest `0.49.1` -> `0.50.0`. ([#1741](https://github.com/diffplug/spotless/issues/1741))
2326
* Dropped support for `ktlint 0.47.x` following our policy of supporting two breaking changes at a time.
2427
* Dropped support for deprecated `useExperimental` parameter in favor of the `ktlint_experimental` property.
28+
* Bump default `prettier` version to latest (v2) `2.8.1` -> `2.8.8`. ([#9999](https://github.com/diffplug/spotless/pull/9999))
2529

2630
## [2.39.0] - 2023-05-24
2731
### Added

plugin-gradle/CHANGES.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -18,11 +18,14 @@ We adhere to the [keepachangelog](https://keepachangelog.com/en/1.0.0/) format (
1818
}
1919
}
2020
```
21+
* Add support for `prettier` version `3.0.0` and newer. ([#9999]https://github.com/diffplug/spotless/pull/9999), [#1751](https://github.com/diffplug/spotless/issues/1751))
22+
* Fix npm install calls when npm cache is not up-to-date. ([#9999]https://github.com/diffplug/spotless/pull/9999), [#1750](https://github.com/diffplug/spotless/issues/1750))
2123
### Changes
2224
* Bump default `cleanthat` version to latest `2.13` -> `2.17`. ([#1734](https://github.com/diffplug/spotless/pull/1734))
2325
* Bump default `ktlint` version to latest `0.49.1` -> `0.50.0`. ([#1741](https://github.com/diffplug/spotless/issues/1741))
2426
* Dropped support for `ktlint 0.47.x` following our policy of supporting two breaking changes at a time.
2527
* Dropped support for deprecated `useExperimental` parameter in favor of the `ktlint_experimental` property.
28+
* Bump default `prettier` version to latest (v2) `2.8.1` -> `2.8.8`. ([#9999](https://github.com/diffplug/spotless/pull/9999))
2629

2730
## [6.19.0] - 2023-05-24
2831
### Added

plugin-gradle/README.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -882,6 +882,7 @@ spotless {
882882
yaml {
883883
target 'src/**/*.yaml' // you have to set the target manually
884884
jackson() // has its own section below
885+
prettier() // has its own section below
885886
}
886887
}
887888
```

plugin-maven/CHANGES.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -9,11 +9,14 @@ We adhere to the [keepachangelog](https://keepachangelog.com/en/1.0.0/) format (
99
* Support pass skip (`-Dspotless.skip=true`) from command-line. ([#1729](https://github.com/diffplug/spotless/pull/1729))
1010
### Fixed
1111
* Update documented default `semanticSort` to `false`. ([#1728](https://github.com/diffplug/spotless/pull/1728))
12+
* Add support for `prettier` version `3.0.0` and newer. ([#9999]https://github.com/diffplug/spotless/pull/9999), [#1751](https://github.com/diffplug/spotless/issues/1751))
13+
* Fix npm install calls when npm cache is not up-to-date. ([#9999]https://github.com/diffplug/spotless/pull/9999), [#1750](https://github.com/diffplug/spotless/issues/1750))
1214
### Changes
1315
* Bump default `cleanthat` version to latest `2.13` -> `2.17`. ([#1734](https://github.com/diffplug/spotless/pull/1734))
1416
* Bump default `ktlint` version to latest `0.49.1` -> `0.50.0`. ([#1741](https://github.com/diffplug/spotless/issues/1741))
1517
* Dropped support for `ktlint 0.47.x` following our policy of supporting two breaking changes at a time.
1618
* Dropped support for deprecated `useExperimental` parameter in favor of the `ktlint_experimental` property.
19+
* Bump default `prettier` version to latest (v2) `2.8.1` -> `2.8.8`. ([#9999](https://github.com/diffplug/spotless/pull/9999))
1720

1821
## [2.37.0] - 2023-05-24
1922
### Added

plugin-maven/README.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -970,6 +970,7 @@ Uses Jackson for formatting.
970970
</includes>
971971

972972
<jackson /> <!-- has its own section below -->
973+
<prettier /> <!-- has its own section below -->
973974
</yaml>
974975
</configuration>
975976
```

0 commit comments

Comments
 (0)