Skip to main content

8.88.0 release (2026-07-30)

Total recipe count: 4091

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.

Corresponding CLI version

  • CLI version 4.4.3

Removed Artifacts

  • rewrite-codemods

New Recipes

Removed Recipes

  • org.apache.camel.upgrade.camel419.XmlDsl419SagaRecipe: Apache Camel XML DSL migration from version 4.18 to 4.19. Converts saga compensation and completion child elements to attributes.
  • org.apache.camel.upgrade.camel419.YamlDsl419SagaRecipe: Apache Camel YAML DSL migration from version 4.18 to 4.19. Flattens saga compensation and completion nested uri to direct values.
  • org.openrewrite.java.testing.assertj.SimplifyAssertJNullRelatedAssertion: Replace assertThat(x == null).isTrue() and its variants with the dedicated assertThat(x).isNull() / assertThat(x).isNotNull(). Beyond being more expressive, this avoids the compilation error that results when the null literal ends up as the assertThat argument (e.g. assertThat(null == x).isTrue() becoming assertThat(null).isSameAs(x)).