Skip to content

Commit 4ee40fd

Browse files
committed
Merge remote-tracking branch 'origin' into EnforceVar_jdk11
2 parents 53f3fcf + 5749a73 commit 4ee40fd

File tree

140 files changed

+1222
-2610
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

140 files changed

+1222
-2610
lines changed

Diff for: .github/workflows/deploy.yml

+6-6
Original file line numberDiff line numberDiff line change
@@ -51,18 +51,18 @@ jobs:
5151
- name: publish all
5252
if: "${{ github.event.inputs.to_publish == 'all' }}"
5353
run: |
54-
./gradlew :changelogPush -Prelease=true --stacktrace --warning-mode all
55-
./gradlew :plugin-gradle:changelogPush -Prelease=true -Pgradle.publish.key=${{ secrets.GRADLE_KEY }} -Pgradle.publish.secret=${{ secrets.GRADLE_SECRET }} --stacktrace --warning-mode all
56-
./gradlew :plugin-maven:changelogPush -Prelease=true --stacktrace --warning-mode all
54+
./gradlew :changelogPush -Prelease=true --stacktrace --warning-mode all --no-configuration-cache
55+
./gradlew :plugin-gradle:changelogPush -Prelease=true -Pgradle.publish.key=${{ secrets.GRADLE_KEY }} -Pgradle.publish.secret=${{ secrets.GRADLE_SECRET }} --stacktrace --warning-mode all --no-configuration-cache
56+
./gradlew :plugin-maven:changelogPush -Prelease=true --stacktrace --warning-mode all --no-configuration-cache
5757
- name: publish just plugin-gradle
5858
if: "${{ github.event.inputs.to_publish == 'plugin-gradle' }}"
5959
run: |
60-
./gradlew :plugin-gradle:changelogPush -Prelease=true -Pgradle.publish.key=${{ secrets.GRADLE_KEY }} -Pgradle.publish.secret=${{ secrets.GRADLE_SECRET }} --stacktrace --warning-mode all
60+
./gradlew :plugin-gradle:changelogPush -Prelease=true -Pgradle.publish.key=${{ secrets.GRADLE_KEY }} -Pgradle.publish.secret=${{ secrets.GRADLE_SECRET }} --stacktrace --warning-mode all --no-configuration-cache
6161
- name: publish just plugin-maven
6262
if: "${{ github.event.inputs.to_publish == 'plugin-maven' }}"
6363
run: |
64-
./gradlew :plugin-maven:changelogPush -Prelease=true --stacktrace --warning-mode all
64+
./gradlew :plugin-maven:changelogPush -Prelease=true --stacktrace --warning-mode all --no-configuration-cache
6565
- name: publish just lib
6666
if: "${{ github.event.inputs.to_publish == 'lib' }}"
6767
run: |
68-
./gradlew :changelogPush -Prelease=true --stacktrace --warning-mode all
68+
./gradlew :changelogPush -Prelease=true --stacktrace --warning-mode all --no-configuration-cache

Diff for: CHANGES.md

+14
Original file line numberDiff line numberDiff line change
@@ -10,8 +10,22 @@ This document is intended for Spotless developers.
1010
We adhere to the [keepachangelog](https://keepachangelog.com/en/1.0.0/) format (starting after version `1.27.0`).
1111

1212
## [Unreleased]
13+
### Added
14+
* Support configuration of mirrors for P2 repositories in `EquoBasedStepBuilder` ([#1629](https://github.com/diffplug/spotless/issues/1629)).
15+
### Changes
16+
* **POTENTIALLY BREAKING** Converted `googleJavaFormat` to a compile-only dependency and drop support for versions < `1.8`. ([#1630](https://github.com/diffplug/spotless/pull/1630))
17+
* Bump default `googleJavaFormat` version `1.15.0` -> `1.16.0`. ([#1630](https://github.com/diffplug/spotless/pull/1630))
18+
19+
## [2.37.0] - 2023-03-13
20+
### Added
21+
* You can now put the filename into a license header template with `$FILE`. ([#1605](https://github.com/diffplug/spotless/pull/1605) fixes [#1147](https://github.com/diffplug/spotless/issues/1147))
1322
### Changes
1423
* We are now opting in to Gradle's new stable configuration cache. ([#1591](https://github.com/diffplug/spotless/pull/1591))
24+
* Adopt [Equo Solstice OSGi and p2 shim](https://github.com/equodev/equo-ide/tree/main/solstice) to update all Eclipse-based plugins. ([#1524](https://github.com/diffplug/spotless/pull/1524))
25+
* Eclipse JDT now supports `4.9` through `4.26`. Also we now recommend dropping the last `.0`, e.g. `4.26` instead of `4.26.0`, you'll get warnings to help you switch.
26+
* Eclipse Groovy now supports `4.18` through `4.26`. Also we now recommend dropping the last `.0`, e.g. `4.26` instead of `4.26.0`, you'll get warnings to help you switch.
27+
* Eclipse CDT now supports `10.6` through `11.0`.
28+
* Eclipse WTP is still WIP at [#1622](https://github.com/diffplug/spotless/pull/1622).
1529

1630
## [2.36.0] - 2023-02-27
1731
### Added

Diff for: _ext/eclipse-cdt/CHANGES.md

-63
This file was deleted.

Diff for: _ext/eclipse-cdt/LICENSE.txt

-70
This file was deleted.

Diff for: _ext/eclipse-cdt/README.md

-10
This file was deleted.

Diff for: _ext/eclipse-cdt/build.gradle

-40
This file was deleted.

Diff for: _ext/eclipse-cdt/gradle.properties

-12
This file was deleted.

0 commit comments

Comments
 (0)