Snapshot (2023-01-25)
- org.openrewrite.github.SetupJavaUpgradeJavaVersion: Update the Java version used by
actions/setup-java
if it is below the expected version number. - org.openrewrite.gradle.UpgradeLiteralDependencyVersion: A fixed literal version is a version that is not a variable or property or supplied indirectly by platform BOMs or similar means. For example,
com.google.guava:guava:29.0-jre
. - org.openrewrite.java.cleanup.ReplaceRedundantFormatWithPrintf: Replaces
PrintStream.print(String.format(format, ...args))
withPrintStream.printf(format, ...args)
(and forprintln
, appends a newline to the format string). - org.openrewrite.java.cleanup.SimplifyDurationCreationUnits: Simplifies java.time.Duration units to be more human-readable.
- org.openrewrite.java.testing.assertj.UseExplicitSize: Convert
assertThat(collection.size()).isEqualTo(Y)
with AssertJ'sassertThat(collection).hasSize()
.
- Old Options:
None
- New Options:
searchCriteria: { type: SearchCriteria, required: true }
- Old Options:
artifactId: { type: String, required: true }
exclusionArtifactId: { type: String, required: true }
exclusionGroupId: { type: String, required: true }
groupId: { type: String, required: true }
- New Options:
artifactId: { type: String, required: true }
exclusionArtifactId: { type: String, required: true }
exclusionGroupId: { type: String, required: true }
groupId: { type: String, required: true }
onlyIneffective: { type: Boolean, required: false }
Last modified 11d ago