Skip to content

Commit

Permalink
8.3.0 changelog
Browse files Browse the repository at this point in the history
  • Loading branch information
mike-solomon committed Aug 21, 2023
1 parent a92e975 commit 3a28827
Show file tree
Hide file tree
Showing 2 changed files with 75 additions and 12 deletions.
11 changes: 11 additions & 0 deletions src/main/resources/CHANGELOG-2023-08-21.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
# 8.3.0 release (2023-08-21)

## New Recipes

* [org.openrewrite.hibernate.MigrateToHibernate62](https://docs.openrewrite.org/reference/recipes/hibernate/migratetohibernate62): This recipe will apply changes commonly needed when migrating to Hibernate 6.2.x.
* [org.openrewrite.hibernate.MigrateToHypersistenceUtilsHibernate6.0](https://docs.openrewrite.org/reference/recipes/hibernate/migratetohypersistenceutilshibernate6/0): This recipe will migrate any existing dependencies on `com.vladmihalcea:hibernate-types` to `io.hypersistence:hypersistence-utils-hibernate-60`. This migration will include the adjustment from `com.vladmihalcea` to `io.hypersistence.utils` package name.
* [org.openrewrite.hibernate.MigrateToHypersistenceUtilsHibernate6.2](https://docs.openrewrite.org/reference/recipes/hibernate/migratetohypersistenceutilshibernate6/2): This recipe will migrate any existing dependencies on `io.hypersistence:hypersistence-utils-hibernate-60` to `io.hypersistence:hypersistence-utils-hibernate-62`.
* [org.openrewrite.hibernate.TypeAnnotationParameter](https://docs.openrewrite.org/reference/recipes/hibernate/typeannotationparameter): Hibernate 6.x has 'type' parameter of type String replaced with 'value' of type class.
* [org.openrewrite.kotlin.format.AutoFormat](https://docs.openrewrite.org/reference/recipes/kotlin/format/autoformat): Format Kotlin code using a standard comprehensive set of Kotlin formatting recipes.
* [org.openrewrite.maven.search.FindMavenSettings](https://docs.openrewrite.org/reference/recipes/maven/search/findmavensettings): List the effective maven settings file for the current project.

76 changes: 64 additions & 12 deletions src/main/resources/recipeDescriptors.yml
Original file line number Diff line number Diff line change
Expand Up @@ -349,7 +349,7 @@ rewrite-concourse:
artifactId: "rewrite-concourse"
rewrite-core:
artifactId: "rewrite-core"
version: "8.2.0"
version: "8.3.0"
markdownRecipeDescriptors:
org.openrewrite.DeleteSourceFiles:
name: "org.openrewrite.DeleteSourceFiles"
Expand Down Expand Up @@ -849,7 +849,7 @@ rewrite-github-actions:
artifactId: "rewrite-github-actions"
rewrite-gradle:
artifactId: "rewrite-gradle"
version: "8.2.0"
version: "8.3.0"
markdownRecipeDescriptors:
org.openrewrite.gradle.AddDependency:
name: "org.openrewrite.gradle.AddDependency"
Expand Down Expand Up @@ -1397,7 +1397,7 @@ rewrite-gradle:
artifactId: "rewrite-gradle"
rewrite-groovy:
artifactId: "rewrite-groovy"
version: "8.2.0"
version: "8.3.0"
markdownRecipeDescriptors:
org.openrewrite.groovy.format.OmitParenthesesForLastArgumentLambda:
name: "org.openrewrite.groovy.format.OmitParenthesesForLastArgumentLambda"
Expand All @@ -1416,7 +1416,7 @@ rewrite-groovy:
artifactId: "rewrite-groovy"
rewrite-hcl:
artifactId: "rewrite-hcl"
version: "8.2.0"
version: "8.3.0"
markdownRecipeDescriptors:
org.openrewrite.hcl.DeleteContent:
name: "org.openrewrite.hcl.DeleteContent"
Expand Down Expand Up @@ -1500,7 +1500,7 @@ rewrite-hcl:
artifactId: "rewrite-hcl"
rewrite-hibernate:
artifactId: "rewrite-hibernate"
version: "1.0.1"
version: "1.0.2"
markdownRecipeDescriptors:
org.openrewrite.hibernate.MigrateToHibernate61:
name: "org.openrewrite.hibernate.MigrateToHibernate61"
Expand All @@ -1512,6 +1512,14 @@ rewrite-hibernate:
options: []
isImperative: false
artifactId: "rewrite-hibernate"
org.openrewrite.hibernate.MigrateToHibernate62:
name: "org.openrewrite.hibernate.MigrateToHibernate62"
description: "This recipe will apply changes commonly needed when migrating\
\ to Hibernate 6.2.x.\n"
docLink: "https://docs.openrewrite.org/reference/recipes/hibernate/migratetohibernate62"
options: []
isImperative: false
artifactId: "rewrite-hibernate"
org.openrewrite.hibernate.MigrateToHibernateDependencies61:
name: "org.openrewrite.hibernate.MigrateToHibernateDependencies61"
description: "This recipe will migrate any existing dependencies on Hibernate\
Expand All @@ -1523,6 +1531,32 @@ rewrite-hibernate:
options: []
isImperative: false
artifactId: "rewrite-hibernate"
org.openrewrite.hibernate.MigrateToHypersistenceUtilsHibernate6.0:
name: "org.openrewrite.hibernate.MigrateToHypersistenceUtilsHibernate6.0"
description: "This recipe will migrate any existing dependencies on `com.vladmihalcea:hibernate-types`\
\ to `io.hypersistence:hypersistence-utils-hibernate-60`. This migration\
\ will include the adjustment from `com.vladmihalcea` to `io.hypersistence.utils`\
\ package name.\n"
docLink: "https://docs.openrewrite.org/reference/recipes/hibernate/migratetohypersistenceutilshibernate6/0"
options: []
isImperative: false
artifactId: "rewrite-hibernate"
org.openrewrite.hibernate.MigrateToHypersistenceUtilsHibernate6.2:
name: "org.openrewrite.hibernate.MigrateToHypersistenceUtilsHibernate6.2"
description: "This recipe will migrate any existing dependencies on `io.hypersistence:hypersistence-utils-hibernate-60`\
\ to `io.hypersistence:hypersistence-utils-hibernate-62`. \n"
docLink: "https://docs.openrewrite.org/reference/recipes/hibernate/migratetohypersistenceutilshibernate6/2"
options: []
isImperative: false
artifactId: "rewrite-hibernate"
org.openrewrite.hibernate.TypeAnnotationParameter:
name: "org.openrewrite.hibernate.TypeAnnotationParameter"
description: "Hibernate 6.x has 'type' parameter of type String replaced with\
\ 'value' of type class."
docLink: "https://docs.openrewrite.org/reference/recipes/hibernate/typeannotationparameter"
options: []
isImperative: true
artifactId: "rewrite-hibernate"
org.openrewrite.hibernate.TypeDescriptorToType:
name: "org.openrewrite.hibernate.TypeDescriptorToType"
description: "Rename `JavaTypeDescriptor` and `SqlTypeDescriptor` to `JavaType`\
Expand All @@ -1533,7 +1567,7 @@ rewrite-hibernate:
artifactId: "rewrite-hibernate"
rewrite-java:
artifactId: "rewrite-java"
version: "8.2.0"
version: "8.3.0"
markdownRecipeDescriptors:
org.openrewrite.java.AddApache2LicenseHeader:
name: "org.openrewrite.java.AddApache2LicenseHeader"
Expand Down Expand Up @@ -3177,7 +3211,7 @@ rewrite-jhipster:
artifactId: "rewrite-jhipster"
rewrite-json:
artifactId: "rewrite-json"
version: "8.2.0"
version: "8.3.0"
markdownRecipeDescriptors:
org.openrewrite.json.ChangeKey:
name: "org.openrewrite.json.ChangeKey"
Expand Down Expand Up @@ -3227,7 +3261,7 @@ rewrite-json:
artifactId: "rewrite-json"
rewrite-kotlin:
artifactId: "rewrite-kotlin"
version: "1.3.3"
version: "1.3.4"
markdownRecipeDescriptors:
org.openrewrite.kotlin.FindKotlinSources:
name: "org.openrewrite.kotlin.FindKotlinSources"
Expand Down Expand Up @@ -3291,6 +3325,14 @@ rewrite-kotlin:
options: []
isImperative: true
artifactId: "rewrite-kotlin"
org.openrewrite.kotlin.format.AutoFormat:
name: "org.openrewrite.kotlin.format.AutoFormat"
description: "Format Kotlin code using a standard comprehensive set of Kotlin\
\ formatting recipes."
docLink: "https://docs.openrewrite.org/reference/recipes/kotlin/format/autoformat"
options: []
isImperative: true
artifactId: "rewrite-kotlin"
rewrite-kubernetes:
artifactId: "rewrite-kubernetes"
version: "2.0.1"
Expand Down Expand Up @@ -3980,7 +4022,7 @@ rewrite-logging-frameworks:
artifactId: "rewrite-logging-frameworks"
rewrite-maven:
artifactId: "rewrite-maven"
version: "8.2.0"
version: "8.3.0"
markdownRecipeDescriptors:
org.openrewrite.maven.AddCommentToMavenDependency:
name: "org.openrewrite.maven.AddCommentToMavenDependency"
Expand Down Expand Up @@ -4842,6 +4884,16 @@ rewrite-maven:
required: true
isImperative: true
artifactId: "rewrite-maven"
org.openrewrite.maven.search.FindMavenSettings:
name: "org.openrewrite.maven.search.FindMavenSettings"
description: "List the effective maven settings file for the current project."
docLink: "https://docs.openrewrite.org/reference/recipes/maven/search/findmavensettings"
options:
- name: "existenceCheckOnly"
type: "Boolean"
required: false
isImperative: true
artifactId: "rewrite-maven"
org.openrewrite.maven.search.FindPlugin:
name: "org.openrewrite.maven.search.FindPlugin"
description: "Finds a Maven plugin within a pom.xml."
Expand Down Expand Up @@ -6766,7 +6818,7 @@ rewrite-migrate-java:
artifactId: "rewrite-migrate-java"
rewrite-properties:
artifactId: "rewrite-properties"
version: "8.2.0"
version: "8.3.0"
markdownRecipeDescriptors:
org.openrewrite.properties.AddProperty:
name: "org.openrewrite.properties.AddProperty"
Expand Down Expand Up @@ -11355,7 +11407,7 @@ rewrite-testing-frameworks:
artifactId: "rewrite-testing-frameworks"
rewrite-xml:
artifactId: "rewrite-xml"
version: "8.2.0"
version: "8.3.0"
markdownRecipeDescriptors:
org.openrewrite.xml.AddCommentToXmlTag:
name: "org.openrewrite.xml.AddCommentToXmlTag"
Expand Down Expand Up @@ -11561,7 +11613,7 @@ rewrite-xml:
artifactId: "rewrite-xml"
rewrite-yaml:
artifactId: "rewrite-yaml"
version: "8.2.0"
version: "8.3.0"
markdownRecipeDescriptors:
org.openrewrite.yaml.AppendToSequence:
name: "org.openrewrite.yaml.AppendToSequence"
Expand Down

0 comments on commit 3a28827

Please sign in to comment.