-
Notifications
You must be signed in to change notification settings - Fork 8
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
14bf319
commit 4b4a625
Showing
2 changed files
with
115 additions
and
47 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,30 @@ | ||
# 8.21.0 release (2024-03-20) | ||
|
||
{% hint style="info" %} | ||
This changelog only shows what recipes have been added, removed, or changed. OpenRewrite may do releases that do not include these types of changes. To see these changes, please go to the [releases page](https://github.com/openrewrite/rewrite/releases). | ||
{% endhint %} | ||
|
||
## New Recipes | ||
|
||
* [org.openrewrite.java.migrate.maven.UpdateMavenProjectPropertyJavaVersion](https://docs.openrewrite.org/recipes/java/migrate/maven/updatemavenprojectpropertyjavaversion): The Java version is determined by several project properties, including: | ||
|
||
* `java.version` | ||
* `jdk.version` | ||
* `javaVersion` | ||
* `jdkVersion` | ||
* `maven.compiler.source` | ||
* `maven.compiler.target` | ||
* `maven.compiler.release` | ||
* `release.version` | ||
|
||
These project properties are not added if they are not currently set, but only updated in place. | ||
* [org.openrewrite.java.testing.datafaker.JavaFakerToDataFaker](https://docs.openrewrite.org/recipes/java/testing/datafaker/javafakertodatafaker): Change imports and dependencies related to Java Faker to Datafaker replacements. | ||
* [org.openrewrite.java.testing.junit5.GradleUseJunitJupiter](https://docs.openrewrite.org/recipes/java/testing/junit5/gradleusejunitjupiter): By default Gradle's `Test` tasks use JUnit 4. Gradle `Test` tasks must be configured with `useJUnitPlatform()` to run JUnit Jupiter tests. This recipe adds the `useJUnitPlatform()` method call to the `Test` task configuration. | ||
|
||
## Changed Recipes | ||
|
||
* [org.openrewrite.java.migrate.maven.UseMavenCompilerPluginReleaseConfiguration](https://docs.openrewrite.org/recipes/java/migrate/maven/usemavencompilerpluginreleaseconfiguration) was changed: | ||
* Old Options: | ||
* `releaseVersion: { type: String, required: true }` | ||
* New Options: | ||
* `releaseVersion: { type: Integer, required: true }` |
Oops, something went wrong.