Skip to content

Commit

Permalink
add 8.23.1 changelog
Browse files Browse the repository at this point in the history
  • Loading branch information
mike-solomon committed Apr 5, 2024
1 parent 4b4a625 commit f397c7e
Show file tree
Hide file tree
Showing 6 changed files with 89 additions and 19 deletions.
48 changes: 48 additions & 0 deletions src/main/resources/CHANGELOG-2024-04-05.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,48 @@
# 8.23.1 release (2024-04-05)

{% 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.apache.commons.collections.UpgradeApacheCommonsCollections_3_4](https://docs.openrewrite.org/recipes/apache/commons/collections/upgradeapachecommonscollections_3_4): Migrate applications to the latest Apache Commons Collections 4.x release. This recipe modifies application's build files, make changes to deprecated/preferred APIs, and migrates configuration settings that have changes between versions.
* [org.openrewrite.apache.commons.lang.UpgradeApacheCommonsLang_2_3](https://docs.openrewrite.org/recipes/apache/commons/lang/upgradeapachecommonslang_2_3): Migrate applications to the latest Apache Commons Lang 3.x release. This recipe modifies application's build files, make changes to deprecated/preferred APIs, and migrates configuration settings that have changes between versions.
* [org.openrewrite.apache.commons.math.UpgradeApacheCommonsMath_2_3](https://docs.openrewrite.org/recipes/apache/commons/math/upgradeapachecommonsmath_2_3): Migrate applications to the latest Apache Commons Math 3.x release. This recipe modifies application's build files, make changes to deprecated/preferred APIs, and migrates configuration settings that have changes between versions.

## Changed Recipes

* [org.openrewrite.maven.ChangeParentPom](https://docs.openrewrite.org/recipes/maven/changeparentpom) was changed:
* Old Options:
* `allowVersionDowngrades: { type: Boolean, required: false }`
* `newArtifactId: { type: String, required: false }`
* `newGroupId: { type: String, required: false }`
* `newRelativePath: { type: String, required: false }`
* `newVersion: { type: String, required: true }`
* `oldArtifactId: { type: String, required: true }`
* `oldGroupId: { type: String, required: true }`
* `oldRelativePath: { type: String, required: false }`
* `retainVersions: { type: List, required: false }`
* `versionPattern: { type: String, required: false }`
* New Options:
* `allowVersionDowngrades: { type: Boolean, required: false }`
* `newArtifactId: { type: String, required: false }`
* `newGroupId: { type: String, required: false }`
* `newRelativePath: { type: String, required: false }`
* `newVersion: { type: String, required: true }`
* `oldArtifactId: { type: String, required: true }`
* `oldGroupId: { type: String, required: true }`
* `oldRelativePath: { type: String, required: false }`
* `versionPattern: { type: String, required: false }`
* [org.openrewrite.maven.UpgradeParentVersion](https://docs.openrewrite.org/recipes/maven/upgradeparentversion) was changed:
* Old Options:
* `artifactId: { type: String, required: true }`
* `groupId: { type: String, required: true }`
* `newVersion: { type: String, required: true }`
* `retainVersions: { type: List, required: false }`
* `versionPattern: { type: String, required: false }`
* New Options:
* `artifactId: { type: String, required: true }`
* `groupId: { type: String, required: true }`
* `newVersion: { type: String, required: true }`
* `versionPattern: { type: String, required: false }`
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
60 changes: 41 additions & 19 deletions src/main/resources/recipeDescriptors.yml
Original file line number Diff line number Diff line change
Expand Up @@ -63,7 +63,7 @@ rewrite-analysis:
artifactId: "rewrite-analysis"
rewrite-apache:
artifactId: "rewrite-apache"
version: "0.1.2"
version: "1.0.0"
markdownRecipeDescriptors:
org.openrewrite.apache.commons.codec.ApacheBase64ToJavaBase64:
name: "org.openrewrite.apache.commons.codec.ApacheBase64ToJavaBase64"
Expand All @@ -73,6 +73,16 @@ rewrite-apache:
options: []
isImperative: true
artifactId: "rewrite-apache"
org.openrewrite.apache.commons.collections.UpgradeApacheCommonsCollections_3_4:
name: "org.openrewrite.apache.commons.collections.UpgradeApacheCommonsCollections_3_4"
description: "Migrate applications to the latest Apache Commons Collections\
\ 4.x release. This recipe modifies application's build files, make changes\
\ to deprecated/preferred APIs, and migrates configuration settings that have\
\ changes between versions.\n"
docLink: "https://docs.openrewrite.org/recipes/apache/commons/collections/upgradeapachecommonscollections_3_4"
options: []
isImperative: false
artifactId: "rewrite-apache"
org.openrewrite.apache.commons.io.ApacheCommonsFileUtilsRecipes:
name: "org.openrewrite.apache.commons.io.ApacheCommonsFileUtilsRecipes"
description: "Refaster template recipes for `org.openrewrite.apache.commons.io.ApacheCommonsFileUtils`."
Expand Down Expand Up @@ -293,6 +303,24 @@ rewrite-apache:
options: []
isImperative: true
artifactId: "rewrite-apache"
org.openrewrite.apache.commons.lang.UpgradeApacheCommonsLang_2_3:
name: "org.openrewrite.apache.commons.lang.UpgradeApacheCommonsLang_2_3"
description: "Migrate applications to the latest Apache Commons Lang 3.x release.\
\ This recipe modifies application's build files, make changes to deprecated/preferred\
\ APIs, and migrates configuration settings that have changes between versions.\n"
docLink: "https://docs.openrewrite.org/recipes/apache/commons/lang/upgradeapachecommonslang_2_3"
options: []
isImperative: false
artifactId: "rewrite-apache"
org.openrewrite.apache.commons.math.UpgradeApacheCommonsMath_2_3:
name: "org.openrewrite.apache.commons.math.UpgradeApacheCommonsMath_2_3"
description: "Migrate applications to the latest Apache Commons Math 3.x release.\
\ This recipe modifies application's build files, make changes to deprecated/preferred\
\ APIs, and migrates configuration settings that have changes between versions.\n"
docLink: "https://docs.openrewrite.org/recipes/apache/commons/math/upgradeapachecommonsmath_2_3"
options: []
isImperative: false
artifactId: "rewrite-apache"
org.openrewrite.apache.httpclient4.MappingDeprecatedClasses:
name: "org.openrewrite.apache.httpclient4.MappingDeprecatedClasses"
description: "Uses new classes/methods instead of the deprecated ones"
Expand Down Expand Up @@ -956,7 +984,7 @@ rewrite-concourse:
artifactId: "rewrite-concourse"
rewrite-core:
artifactId: "rewrite-core"
version: "8.21.0"
version: "8.23.1"
markdownRecipeDescriptors:
org.openrewrite.DeleteSourceFiles:
name: "org.openrewrite.DeleteSourceFiles"
Expand Down Expand Up @@ -1508,7 +1536,7 @@ rewrite-github-actions:
artifactId: "rewrite-github-actions"
rewrite-gradle:
artifactId: "rewrite-gradle"
version: "8.21.0"
version: "8.23.1"
markdownRecipeDescriptors:
org.openrewrite.gradle.AddDependency:
name: "org.openrewrite.gradle.AddDependency"
Expand Down Expand Up @@ -2130,7 +2158,7 @@ rewrite-gradle:
artifactId: "rewrite-gradle"
rewrite-groovy:
artifactId: "rewrite-groovy"
version: "8.21.0"
version: "8.23.1"
markdownRecipeDescriptors:
org.openrewrite.groovy.format.AutoFormat:
name: "org.openrewrite.groovy.format.AutoFormat"
Expand Down Expand Up @@ -2166,7 +2194,7 @@ rewrite-groovy:
artifactId: "rewrite-groovy"
rewrite-hcl:
artifactId: "rewrite-hcl"
version: "8.21.0"
version: "8.23.1"
markdownRecipeDescriptors:
org.openrewrite.hcl.DeleteContent:
name: "org.openrewrite.hcl.DeleteContent"
Expand Down Expand Up @@ -2324,7 +2352,7 @@ rewrite-hibernate:
artifactId: "rewrite-hibernate"
rewrite-java:
artifactId: "rewrite-java"
version: "8.21.0"
version: "8.23.1"
markdownRecipeDescriptors:
org.openrewrite.java.AddApache2LicenseHeader:
name: "org.openrewrite.java.AddApache2LicenseHeader"
Expand Down Expand Up @@ -4261,7 +4289,7 @@ rewrite-jenkins:
artifactId: "rewrite-jenkins"
rewrite-json:
artifactId: "rewrite-json"
version: "8.21.0"
version: "8.23.1"
markdownRecipeDescriptors:
org.openrewrite.json.ChangeKey:
name: "org.openrewrite.json.ChangeKey"
Expand Down Expand Up @@ -5341,7 +5369,7 @@ rewrite-logging-frameworks:
artifactId: "rewrite-logging-frameworks"
rewrite-maven:
artifactId: "rewrite-maven"
version: "8.21.0"
version: "8.23.1"
markdownRecipeDescriptors:
org.openrewrite.maven.AddCommentToMavenDependency:
name: "org.openrewrite.maven.AddCommentToMavenDependency"
Expand Down Expand Up @@ -5745,9 +5773,6 @@ rewrite-maven:
- name: "oldRelativePath"
type: "String"
required: false
- name: "retainVersions"
type: "List"
required: false
- name: "versionPattern"
type: "String"
required: false
Expand Down Expand Up @@ -6137,8 +6162,8 @@ rewrite-maven:
artifactId: "rewrite-maven"
org.openrewrite.maven.UpgradeParentVersion:
name: "org.openrewrite.maven.UpgradeParentVersion"
description: "Set the parent pom version number according to a node-style semver\
\ selector or to a specific version number."
description: "Set the parent pom version number according to a [version selector](https://docs.openrewrite.org/reference/dependency-version-selectors)\
\ or to a specific version number."
docLink: "https://docs.openrewrite.org/recipes/maven/upgradeparentversion"
options:
- name: "artifactId"
Expand All @@ -6150,9 +6175,6 @@ rewrite-maven:
- name: "newVersion"
type: "String"
required: true
- name: "retainVersions"
type: "List"
required: false
- name: "versionPattern"
type: "String"
required: false
Expand Down Expand Up @@ -9238,7 +9260,7 @@ rewrite-openapi:
artifactId: "rewrite-openapi"
rewrite-properties:
artifactId: "rewrite-properties"
version: "8.21.0"
version: "8.23.1"
markdownRecipeDescriptors:
org.openrewrite.properties.AddProperty:
name: "org.openrewrite.properties.AddProperty"
Expand Down Expand Up @@ -14254,7 +14276,7 @@ rewrite-testing-frameworks:
artifactId: "rewrite-testing-frameworks"
rewrite-xml:
artifactId: "rewrite-xml"
version: "8.21.0"
version: "8.23.1"
markdownRecipeDescriptors:
org.openrewrite.xml.AddCommentToXmlTag:
name: "org.openrewrite.xml.AddCommentToXmlTag"
Expand Down Expand Up @@ -14487,7 +14509,7 @@ rewrite-xml:
artifactId: "rewrite-xml"
rewrite-yaml:
artifactId: "rewrite-yaml"
version: "8.21.0"
version: "8.23.1"
markdownRecipeDescriptors:
org.openrewrite.yaml.AppendToSequence:
name: "org.openrewrite.yaml.AppendToSequence"
Expand Down

0 comments on commit f397c7e

Please sign in to comment.