Skip to content

Commit f4fb52d

Browse files
authored
OpenRewrite v8.56.0 (#396)
* OpenRewrite v8.56.0 * Add latest language modules as well
1 parent 81e9b6e commit f4fb52d

File tree

3,516 files changed

+36064
-8021
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

3,516 files changed

+36064
-8021
lines changed

docs/changelog/8-54-0-Release.md

Lines changed: 42 additions & 42 deletions
Large diffs are not rendered by default.

docs/changelog/8-56-0-Release.md

Lines changed: 220 additions & 0 deletions
Large diffs are not rendered by default.

docs/recipes/ai/timefold/solver/migration/changeversion.md

Lines changed: 11 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -30,27 +30,27 @@ This recipe is available under the [Apache License Version 2.0](https://www.apac
3030
<TabItem value="recipe-list" label="Recipe List" >
3131
* [Change Maven project property value](../../../../maven/changepropertyvalue)
3232
* key: `version.ai.timefold.solver`
33-
* newValue: `1.22.1`
33+
* newValue: `1.23.0`
3434
* addIfMissing: `false`
3535
* trustParent: `true`
3636
* [Change Maven project property value](../../../../maven/changepropertyvalue)
3737
* key: `version.timefold`
38-
* newValue: `1.22.1`
38+
* newValue: `1.23.0`
3939
* addIfMissing: `false`
4040
* trustParent: `true`
4141
* [Change Maven project property value](../../../../maven/changepropertyvalue)
4242
* key: `ai.timefold.solver.version`
43-
* newValue: `1.22.1`
43+
* newValue: `1.23.0`
4444
* addIfMissing: `false`
4545
* trustParent: `true`
4646
* [Change Maven project property value](../../../../maven/changepropertyvalue)
4747
* key: `timefold.version`
48-
* newValue: `1.22.1`
48+
* newValue: `1.23.0`
4949
* addIfMissing: `false`
5050
* trustParent: `true`
5151
* [Change Maven project property value](../../../../maven/changepropertyvalue)
5252
* key: `timefoldVersion`
53-
* newValue: `1.22.1`
53+
* newValue: `1.23.0`
5454
* addIfMissing: `false`
5555
* trustParent: `true`
5656

@@ -68,27 +68,27 @@ description: |
6868
recipeList:
6969
- org.openrewrite.maven.ChangePropertyValue:
7070
key: version.ai.timefold.solver
71-
newValue: 1.22.1
71+
newValue: 1.23.0
7272
addIfMissing: false
7373
trustParent: true
7474
- org.openrewrite.maven.ChangePropertyValue:
7575
key: version.timefold
76-
newValue: 1.22.1
76+
newValue: 1.23.0
7777
addIfMissing: false
7878
trustParent: true
7979
- org.openrewrite.maven.ChangePropertyValue:
8080
key: ai.timefold.solver.version
81-
newValue: 1.22.1
81+
newValue: 1.23.0
8282
addIfMissing: false
8383
trustParent: true
8484
- org.openrewrite.maven.ChangePropertyValue:
8585
key: timefold.version
86-
newValue: 1.22.1
86+
newValue: 1.23.0
8787
addIfMissing: false
8888
trustParent: true
8989
- org.openrewrite.maven.ChangePropertyValue:
9090
key: timefoldVersion
91-
newValue: 1.22.1
91+
newValue: 1.23.0
9292
addIfMissing: false
9393
trustParent: true
9494

@@ -106,7 +106,7 @@ This recipe has no required configuration options. It can be activated by adding
106106

107107
```groovy title="build.gradle"
108108
plugins {
109-
id("org.openrewrite.rewrite") version("{{VERSION_REWRITE_GRADLE_PLUGIN}}")
109+
id("org.openrewrite.rewrite") version("latest.release")
110110
}
111111
112112
rewrite {

docs/recipes/ai/timefold/solver/migration/fork/timefoldchangedependencies.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1536,7 +1536,7 @@ This recipe has no required configuration options. It can be activated by adding
15361536

15371537
```groovy title="build.gradle"
15381538
plugins {
1539-
id("org.openrewrite.rewrite") version("{{VERSION_REWRITE_GRADLE_PLUGIN}}")
1539+
id("org.openrewrite.rewrite") version("latest.release")
15401540
}
15411541
15421542
rewrite {

docs/recipes/ai/timefold/solver/migration/fromoptaplannertotimefoldsolver.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -254,7 +254,7 @@ This recipe has no required configuration options. It can be activated by adding
254254

255255
```groovy title="build.gradle"
256256
plugins {
257-
id("org.openrewrite.rewrite") version("{{VERSION_REWRITE_GRADLE_PLUGIN}}")
257+
id("org.openrewrite.rewrite") version("latest.release")
258258
}
259259
260260
rewrite {

docs/recipes/ai/timefold/solver/migration/tolatest.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -118,7 +118,7 @@ This recipe has no required configuration options. It can be activated by adding
118118

119119
```groovy title="build.gradle"
120120
plugins {
121-
id("org.openrewrite.rewrite") version("{{VERSION_REWRITE_GRADLE_PLUGIN}}")
121+
id("org.openrewrite.rewrite") version("latest.release")
122122
}
123123
124124
rewrite {

docs/recipes/ai/timefold/solver/migration/v8/asconstraintrecipe.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ This recipe has no required configuration options. It can be activated by adding
3030

3131
```groovy title="build.gradle"
3232
plugins {
33-
id("org.openrewrite.rewrite") version("{{VERSION_REWRITE_GRADLE_PLUGIN}}")
33+
id("org.openrewrite.rewrite") version("latest.release")
3434
}
3535
3636
rewrite {

docs/recipes/ai/timefold/solver/migration/v8/constraintrefrecipe.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ This recipe has no required configuration options. It can be activated by adding
3030

3131
```groovy title="build.gradle"
3232
plugins {
33-
id("org.openrewrite.rewrite") version("{{VERSION_REWRITE_GRADLE_PLUGIN}}")
33+
id("org.openrewrite.rewrite") version("latest.release")
3434
}
3535
3636
rewrite {

docs/recipes/ai/timefold/solver/migration/v8/nullablerecipe.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -130,7 +130,7 @@ This recipe has no required configuration options. It can be activated by adding
130130

131131
```groovy title="build.gradle"
132132
plugins {
133-
id("org.openrewrite.rewrite") version("{{VERSION_REWRITE_GRADLE_PLUGIN}}")
133+
id("org.openrewrite.rewrite") version("latest.release")
134134
}
135135
136136
rewrite {

docs/recipes/ai/timefold/solver/migration/v8/removeconstraintpackagerecipe.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ This recipe has no required configuration options. It can be activated by adding
3030

3131
```groovy title="build.gradle"
3232
plugins {
33-
id("org.openrewrite.rewrite") version("{{VERSION_REWRITE_GRADLE_PLUGIN}}")
33+
id("org.openrewrite.rewrite") version("latest.release")
3434
}
3535
3636
rewrite {

0 commit comments

Comments
 (0)