diff --git a/src/main/resources/CHANGELOG-2024-01-09.md b/src/main/resources/CHANGELOG-2024-01-09.md index 9069cf8..df80ea8 100644 --- a/src/main/resources/CHANGELOG-2024-01-09.md +++ b/src/main/resources/CHANGELOG-2024-01-09.md @@ -10,7 +10,8 @@ This changelog only shows what recipes have been added, removed, or changed. Ope * [org.openrewrite.java.logging.log4j.Slf4jToLog4j](https://docs.openrewrite.org/recipes/java/logging/log4j/slf4jtolog4j): Transforms code written using SLF4J to use Log4j 2.x API. * [org.openrewrite.staticanalysis.SimplifyTernaryRecipes](https://docs.openrewrite.org/recipes/staticanalysis/simplifyternaryrecipes): Refaster template recipes for `org.openrewrite.staticanalysis.SimplifyTernary`. * [org.openrewrite.staticanalysis.SimplifyTernaryRecipes$SimplifyTernaryFalseTrueRecipe](https://docs.openrewrite.org/recipes/staticanalysis/simplifyternaryrecipes$simplifyternaryfalsetruerecipe): Simplify `expr ? false : true` to `!expr`. -* [org.openrewrite.staticanalysis.SimplifyTernaryRecipes$SimplifyTernaryTrueFalseRecipe](https://docs.openrewrite.org/recipes/staticanalysis/simplifyternaryrecipes$simplifyternarytruefalserecipe): Simplify `expr ? true : false` to `expr`. +* [org.openrewrite.staticanalysis.SimplifyTernaryRecipes$SimplifyTernaryTrueFalseRecipe](https://docs.openrewrite.org/recipes/staticanalysis/simplifyternaryrecipes$simplifyternarytruefalserecipe): Simplify `expr ? true : false` to `expr`. +* [org.openrewrite.java.spring.boot3.SpringBoot3BestPractices](https://docs.openrewrite.org/recipes/java/spring/boot3/springboot3bestpractices): Applies best practices to Spring Boot 3 applications. ## Changed Recipes diff --git a/src/main/resources/recipeDescriptors.yml b/src/main/resources/recipeDescriptors.yml index 8b4e433..ec0d315 100644 --- a/src/main/resources/recipeDescriptors.yml +++ b/src/main/resources/recipeDescriptors.yml @@ -2924,7 +2924,7 @@ rewrite-java-dependencies: artifactId: "rewrite-java-dependencies" rewrite-java-security: artifactId: "rewrite-java-security" - version: "2.1.4" + version: "2.2.0" markdownRecipeDescriptors: org.openrewrite.java.security.FindTextDirectionChanges: name: "org.openrewrite.java.security.FindTextDirectionChanges" @@ -9051,7 +9051,7 @@ rewrite-recommendations: artifactId: "rewrite-recommendations" rewrite-spring: artifactId: "rewrite-spring" - version: "5.1.7" + version: "5.2.0" markdownRecipeDescriptors: org.openrewrite.gradle.spring.AddSpringDependencyManagementPlugin: name: "org.openrewrite.gradle.spring.AddSpringDependencyManagementPlugin" @@ -10116,6 +10116,13 @@ rewrite-spring: options: [] isImperative: false artifactId: "rewrite-spring" + org.openrewrite.java.spring.boot3.SpringBoot3BestPractices: + name: "org.openrewrite.java.spring.boot3.SpringBoot3BestPractices" + description: "Applies best practices to Spring Boot 3 applications." + docLink: "https://docs.openrewrite.org/recipes/java/spring/boot3/springboot3bestpractices" + options: [] + isImperative: false + artifactId: "rewrite-spring" org.openrewrite.java.spring.boot3.SpringBootProperties_3_0: name: "org.openrewrite.java.spring.boot3.SpringBootProperties_3_0" description: "Migrate properties found in `application.properties` and `application.yml`."