Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions CHANGES.md
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,7 @@ We adhere to the [keepachangelog](https://keepachangelog.com/en/1.0.0/) format (
## [Unreleased]
### Changes
- Bump default `greclipse` version to latest `4.39` -> `4.40`. ([#2989](https://github.com/diffplug/spotless/pull/2989))
- Bump default `tabletest-formatter` version `1.1.1` -> `1.1.2`.

## [4.8.0] - 2026-06-29
### Added
Expand Down
2 changes: 1 addition & 1 deletion gradle/libs.versions.toml
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,7 @@ ktfmt = "com.facebook:ktfmt:0.63"
palantir-java-format = "com.palantir.javaformat:palantir-java-format:1.1.0"
scalafmt-core = "org.scalameta:scalafmt-core_2.13:3.8.1"
sortpom-sorter = "com.github.ekryd.sortpom:sortpom-sorter:4.0.0"
tabletest-formatter-core = "org.tabletest:tabletest-formatter-core:1.1.1"
tabletest-formatter-core = "org.tabletest:tabletest-formatter-core:1.1.2"
zjsonpatch = "com.flipkart.zjsonpatch:zjsonpatch:0.4.16"

rewrite-recipe-migrate-java = "org.openrewrite.recipe:rewrite-migrate-java:3.36.0"
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ public final class TableTestFormatterStep implements Serializable {
private static final long serialVersionUID = 2L;
private static final String NAME = "tableTestFormatter";
private static final String MAVEN_COORDINATE = "org.tabletest:tabletest-formatter-core:";
private static final String DEFAULT_VERSION = "1.1.1";
private static final String DEFAULT_VERSION = "1.1.2";

/** Default fallback indent style ({@code "space"}) for Java/Kotlin files. */
public static final String DEFAULT_INDENT_STYLE = "space";
Expand Down
1 change: 1 addition & 0 deletions plugin-gradle/CHANGES.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,7 @@ We adhere to the [keepachangelog](https://keepachangelog.com/en/1.0.0/) format (
- Prevent parallel Gradle input fingerprinting from failing when `toggleOffOn()` wraps a slow lazy formatter step with no matching target files. ([#2994](https://github.com/diffplug/spotless/pull/2994))
### Changes
- Bump default `greclipse` version to latest `4.39` -> `4.40`. ([#2989](https://github.com/diffplug/spotless/pull/2989))
- Bump default `tabletest-formatter` version `1.1.1` -> `1.1.2`.

## [8.8.0] - 2026-06-29
### Added
Expand Down
6 changes: 3 additions & 3 deletions plugin-gradle/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -441,7 +441,7 @@ spotless {
java {
tableTestFormatter()
// optional: you can specify a specific version
tableTestFormatter('1.1.1')
tableTestFormatter('1.1.2')
```

<a name="applying-to-groovy-source"></a>
Expand Down Expand Up @@ -618,7 +618,7 @@ spotless {
kotlin {
tableTestFormatter()
// optional: you can specify a specific version
tableTestFormatter('1.1.1')
tableTestFormatter('1.1.2')
```

<a name="applying-scalafmt-to-scala-files"></a>
Expand Down Expand Up @@ -1328,7 +1328,7 @@ spotless {
target 'src/**/*.table'
tableTestFormatter()
// optional: you can specify a specific version
tableTestFormatter('1.1.1')
tableTestFormatter('1.1.2')
}
}
```
Expand Down
1 change: 1 addition & 0 deletions plugin-maven/CHANGES.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,7 @@ We adhere to the [keepachangelog](https://keepachangelog.com/en/1.0.0/) format (
## [Unreleased]
### Changes
- Bump default `greclipse` version to latest `4.39` -> `4.40`. ([#2989](https://github.com/diffplug/spotless/pull/2989))
- Bump default `tabletest-formatter` version `1.1.1` -> `1.1.2`.

## [3.8.0] - 2026-06-29
### Added
Expand Down
6 changes: 3 additions & 3 deletions plugin-maven/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -409,7 +409,7 @@ These mechanisms already exist for the Gradle plugin.

```xml
<tableTestFormatter>
<version>1.1.1</version> <!-- optional -->
<version>1.1.2</version> <!-- optional -->
</tableTestFormatter>
```

Expand Down Expand Up @@ -545,7 +545,7 @@ Additionally, `editorConfigOverride` options will override what's supplied in `.

```xml
<tableTestFormatter>
<version>1.1.1</version> <!-- optional -->
<version>1.1.2</version> <!-- optional -->
</tableTestFormatter>
```

Expand Down Expand Up @@ -1247,7 +1247,7 @@ When formatting shell scripts via `shfmt`, configure `shfmt` settings via `.edit
<include>src/**/*.table</include>
</includes>
<tableTestFormatter>
<version>1.1.1</version> <!-- optional -->
<version>1.1.2</version> <!-- optional -->
</tableTestFormatter>
</tableTest>
</configuration>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@

class TableTestFormatterStepTest extends ResourceHarness {

private static final String VERSION = "1.1.1";
private static final String VERSION = "1.1.2";

@Test
void behavior() {
Expand Down
Loading