Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
The table of contents is too big for display.
Diff view
Diff view
  •  
  •  
  •  
203 changes: 203 additions & 0 deletions docs/changelog/8-74-1-Release.md

Large diffs are not rendered by default.

20 changes: 10 additions & 10 deletions docs/recipes/ai/timefold/solver/migration/changeversion.md
Original file line number Diff line number Diff line change
Expand Up @@ -30,27 +30,27 @@ This recipe is available under the [Apache License Version 2.0](https://www.apac
<TabItem value="recipe-list" label="Recipe List" >
* [Change Maven project property value](../../../../maven/changepropertyvalue)
* key: `version.ai.timefold.solver`
* newValue: `1.30.0`
* newValue: `1.31.0`
* addIfMissing: `false`
* trustParent: `true`
* [Change Maven project property value](../../../../maven/changepropertyvalue)
* key: `version.timefold`
* newValue: `1.30.0`
* newValue: `1.31.0`
* addIfMissing: `false`
* trustParent: `true`
* [Change Maven project property value](../../../../maven/changepropertyvalue)
* key: `ai.timefold.solver.version`
* newValue: `1.30.0`
* newValue: `1.31.0`
* addIfMissing: `false`
* trustParent: `true`
* [Change Maven project property value](../../../../maven/changepropertyvalue)
* key: `timefold.version`
* newValue: `1.30.0`
* newValue: `1.31.0`
* addIfMissing: `false`
* trustParent: `true`
* [Change Maven project property value](../../../../maven/changepropertyvalue)
* key: `timefoldVersion`
* newValue: `1.30.0`
* newValue: `1.31.0`
* addIfMissing: `false`
* trustParent: `true`

Expand All @@ -68,27 +68,27 @@ description: |
recipeList:
- org.openrewrite.maven.ChangePropertyValue:
key: version.ai.timefold.solver
newValue: 1.30.0
newValue: 1.31.0
addIfMissing: false
trustParent: true
- org.openrewrite.maven.ChangePropertyValue:
key: version.timefold
newValue: 1.30.0
newValue: 1.31.0
addIfMissing: false
trustParent: true
- org.openrewrite.maven.ChangePropertyValue:
key: ai.timefold.solver.version
newValue: 1.30.0
newValue: 1.31.0
addIfMissing: false
trustParent: true
- org.openrewrite.maven.ChangePropertyValue:
key: timefold.version
newValue: 1.30.0
newValue: 1.31.0
addIfMissing: false
trustParent: true
- org.openrewrite.maven.ChangePropertyValue:
key: timefoldVersion
newValue: 1.30.0
newValue: 1.31.0
addIfMissing: false
trustParent: true

Expand Down
4 changes: 2 additions & 2 deletions docs/recipes/apache/httpclient5/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -14,10 +14,8 @@ _Recipes that include further recipes, often including the individual recipes be
* [Migrate Apache HttpAsyncClient 4.x classes to HttpClient 5.x](./upgradeapachehttpclient_5_asyncclientclassmapping.md)
* [Migrate Apache HttpCore Nio Input Buffer classes to Apache HttpCore 5.x](./upgradeapachehttpcore_5_nioinputbuffers.md)
* [Migrate Apache HttpCore Nio Output Buffer classes to Apache HttpCore 5.x](./upgradeapachehttpcore_5_niooutputbuffers.md)
* [Migrate `clear` to ApacheHttpClient 5.x `CredentialsStore`](./credentialsstoreclear.md)
* [Migrate from httpcore-nio to ApacheHttpClient 5.x core dependency](./upgradeapachehttpcoreniodependencies.md)
* [Migrate from org.apache.httpcomponents to ApacheHttpClient 5.x dependencies](./upgradeapachehttpclientdependencies.md)
* [Migrate `setCredentials` to ApacheHttpClient 5.x `CredentialsStore`](./credentialsstoresetcredentials.md)
* [Migrate to Apache HttpCore Nio Classes to Apache HttpCore 5.x](./upgradeapachehttpcore_5_nioclassmapping.md)
* [Migrate to Apache HttpCore Nio Util Classes to Apache HttpCore 5.x](./upgradeapachehttpcore_5_nioutilmapping.md)
* [Migrate to ApacheHttpClient 5.x](./upgradeapachehttpclient_5.md)
Expand All @@ -34,7 +32,9 @@ _Recipes that include further recipes, often including the individual recipes be
* [Migrate `PoolingNHttpClientConnectionManager` to `PoolingAsyncClientConnectionManager`](./migratepoolingnhttpclientconnectionmanager.md)
* [Migrate `RequestConfig` to httpclient5](./migraterequestconfig.md)
* [Migrate `UsernamePasswordCredentials` to httpclient5](./usernamepasswordcredentials.md)
* [Migrate `clear` to ApacheHttpClient 5.x `CredentialsStore`](./credentialsstoreclear.md)
* [Migrate deprecated `SSLConnectionSocketFactory` to `DefaultClientTlsStrategy`](./migratesslconnectionsocketfactory.md)
* [Migrate `setCredentials` to ApacheHttpClient 5.x `CredentialsStore`](./credentialsstoresetcredentials.md)
* [Remove ByteBufferAllocator implementations](./removebytebufferallocators.md)
* [Replace `new StringEntity(String, String)` with `new StringEntity(String, Charset)`](./migratestringentitystringcharsetconstructor.md)
* [Replaces `AuthScope.ANY`](./migrateauthscope.md)
Expand Down
4 changes: 0 additions & 4 deletions docs/recipes/apache/httpclient5/credentialsstoreclear.md
Original file line number Diff line number Diff line change
Expand Up @@ -17,10 +17,6 @@ _Migrates `BasicCredentialsProvider` methods`clear` to the new `CredentialsStore
[Issue Tracker](https://github.com/openrewrite/rewrite-apache/issues),
[Maven Central](https://central.sonatype.com/artifact/org.openrewrite.recipe/rewrite-apache/)

:::info
This recipe is composed of more than one recipe. If you want to customize the set of recipes this is composed of, you can find and copy the GitHub source for the recipe from the link above.
:::

This recipe is available under the [Moderne Source Available License](https://docs.moderne.io/licensing/moderne-source-available-license).


Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -17,10 +17,6 @@ _Migrates `BasicCredentialsProvider` methods`setCredentials` to the new `Credent
[Issue Tracker](https://github.com/openrewrite/rewrite-apache/issues),
[Maven Central](https://central.sonatype.com/artifact/org.openrewrite.recipe/rewrite-apache/)

:::info
This recipe is composed of more than one recipe. If you want to customize the set of recipes this is composed of, you can find and copy the GitHub source for the recipe from the link above.
:::

This recipe is available under the [Moderne Source Available License](https://docs.moderne.io/licensing/moderne-source-available-license).


Expand Down
2 changes: 2 additions & 0 deletions docs/recipes/apache/poi/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,8 @@ _Recipes for [Apache POI](https://poi.apache.org/) spreadsheet library._
_Recipes that include further recipes, often including the individual recipes below._

* [Migrates to Apache POI 3.17](./upgradeapachepoi_3_17.md)
* [Migrates to Apache POI 4.1.2](./upgradeapachepoi_4_1.md)
* [Migrates to Apache POI 5.x](./upgradeapachepoi_5.md)

## Recipes

Expand Down
7 changes: 7 additions & 0 deletions docs/recipes/apache/poi/upgradeapachepoi_3_17.md
Original file line number Diff line number Diff line change
Expand Up @@ -432,6 +432,13 @@ recipeList:
</TabItem>
</Tabs>

## Used by

This recipe is used as part of the following composite recipes:

* [Migrates to Apache POI 4.1.2](/recipes/apache/poi/upgradeapachepoi_4_1.md)


## Usage

This recipe has no required configuration options. It can be activated by adding a dependency on `org.openrewrite.recipe:rewrite-apache` in your build file or by running a shell command (in which case no build changes are needed):
Expand Down
Loading