Skip to content

Commit

Permalink
new generated stuff
Browse files Browse the repository at this point in the history
  • Loading branch information
mike-solomon committed Jan 10, 2024
1 parent f231a2e commit 2c544b7
Show file tree
Hide file tree
Showing 2 changed files with 11 additions and 3 deletions.
3 changes: 2 additions & 1 deletion src/main/resources/CHANGELOG-2024-01-09.md
Original file line number Diff line number Diff line change
Expand Up @@ -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

Expand Down
11 changes: 9 additions & 2 deletions src/main/resources/recipeDescriptors.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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"
Expand Down Expand Up @@ -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"
Expand Down Expand Up @@ -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`."
Expand Down

0 comments on commit 2c544b7

Please sign in to comment.