Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,8 @@ Migration Tooling follows [semantic versioning](https://semver.org/).
Before you update:

1. Check the [version compatibility matrix](version-compatibility.md) to confirm your Migration Tooling version is compatible with your Camunda 7 and Camunda 8 versions.
2. Review the [Migration Tooling release notes](https://github.com/camunda/camunda-7-to-8-migration-tooling/releases) for your target version.
2. Apply database schema updates for the new version, if required. Check the release notes for details.
3. Review the [Migration Tooling release notes](https://github.com/camunda/camunda-7-to-8-migration-tooling/releases) for your target version.
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Suggested change
3. Review the [Migration Tooling release notes](https://github.com/camunda/camunda-7-to-8-migration-tooling/releases) for your target version.
3. Review the [migration tooling release notes](https://github.com/camunda/camunda-7-to-8-migration-tooling/releases) for your target version.

Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Nitpick, otherwise looks great!


## Breaking changes by version

Expand All @@ -27,6 +28,10 @@ Before you update:
**Release date:** TBD \
**Camunda 8 compatibility:** 8.9.x

#### Data Migrator: Database schema update

Run the Data Migrator with `camunda.migrator.auto-ddl: true` configuration to update the schema.

#### Data Migrator: Entity Interceptor API changes

The `EntityInterceptor` interface now provides compile-time type safety using Java generics, eliminating the need for manual casting.
Expand Down
Loading