You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: AGENTS.md
+1-1Lines changed: 1 addition & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -143,7 +143,7 @@ Dashboard code uses React 19, TypeScript 6, Vite 8, Ant Design 6, React Router 7
143
143
144
144
## Version Management
145
145
146
-
The project version is the `version` property in `gradle.properties` and is currently `8.16.3`. Keep dependent documentation, examples, package metadata, and release notes in sync when bumping it. Third-party versions are centralized in `gradle/libs.versions.toml` and the `wow-dependencies` module.
146
+
The project version is the `version` property in `gradle.properties` and is currently `9.0.0`. Keep dependent documentation, examples, package metadata, and release notes in sync when bumping it. Third-party versions are centralized in `gradle/libs.versions.toml` and the `wow-dependencies` module.
Copy file name to clipboardExpand all lines: documentation/docs/en/guide/getting-started.md
+1-1Lines changed: 1 addition & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -27,7 +27,7 @@ This page was executed on 2026-08-27 against template commit [`1dc9267b7f276c8c3
27
27
| Gradle Wrapper |`9.7.1`|
28
28
| JDK used for the run |`17.0.7`|
29
29
30
-
The current Wow documentation source is `8.16.3`, while the verified template pins `8.13.0`. The repositories evolve independently. Always inspect the cloned template's [`gradle/libs.versions.toml`](https://github.com/Ahoo-Wang/wow-project-template/blob/main/gradle/libs.versions.toml); change versions only as one reviewed compatibility baseline for a selected [Wow release](https://github.com/Ahoo-Wang/Wow/releases).
30
+
The current Wow documentation source is `9.0.0`, while the verified template pins `8.13.0`. The repositories evolve independently. Always inspect the cloned template's [`gradle/libs.versions.toml`](https://github.com/Ahoo-Wang/wow-project-template/blob/main/gradle/libs.versions.toml); change versions only as one reviewed compatibility baseline for a selected [Wow release](https://github.com/Ahoo-Wang/Wow/releases).
Copy file name to clipboardExpand all lines: documentation/docs/en/guide/migration.md
+3Lines changed: 3 additions & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -24,6 +24,7 @@ A green local build can close the source gate. It does not close the other four.
24
24
| CRUD/transaction scripts/direct table writes, no Wow history |[Migrating from Traditional Architecture](./migration/traditional-architecture.md)| Establish commands, aggregates, events, import, and traffic ownership |
25
25
| Exact Wow v6 tag |[Migrate Wow v6 to v8](./migration/v6-to-v8.md)| Diff pinned platform/API/storage contracts and perform a hard data cutover where required |
26
26
| Wow v8 with custom dispatcher/message-bus/Spring lifecycle ownership |[Runtime Orchestration Migration](./migration/runtime-orchestration.md)| Move lifecycle source code to the unified `WowRuntime`; this is not automatically a data migration |
27
+
| Wow v8.16.x using old query APIs or `SnapshotRepository`|[V9 Query Migration](./query/v9-query-migration.md)| Migrate Gateway/Backend, filters, masking, SnapshotStore, and Spring bean names |
27
28
28
29
Do not combine first adoption and a v6→v8 upgrade into one undifferentiated release. Select a bounded context and an
29
30
exact source/target version for each change window.
@@ -35,6 +36,7 @@ exact source/target version for each change window.
Copy file name to clipboardExpand all lines: documentation/docs/en/guide/query.md
+1-1Lines changed: 1 addition & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -78,7 +78,7 @@ See [Snapshot Queries](./query/snapshot-query.md), [Event Stream Queries](./quer
78
78
79
79
## Compatibility and Migration
80
80
81
-
`Condition`, `Operator`, and `ConditionDsl` are deprecated compatibility inputs; the canonical contract uses `FilterExpression`. See [V9 Query Migration](./query/v9-query-migration.md) for the breaking Gateway/Backend JVM type mapping, the no-bridge policy, and unchanged transport contracts.
81
+
The canonical V9 JVM contract is `FilterExpression` and `FilterDsl`. V9.0.x temporarily retains deprecated `Condition`/`Operator`, `ConditionDsl`, legacy query constructors, and count client overloads, all normalized to `FilterExpression`; these compatibility APIs are scheduled for removal in 9.1.0. REST `condition`/`operator` input remains compatible during the same window. See [V9 Query Migration](./query/v9-query-migration.md) for the breaking Gateway/Backend JVM mapping, compatibility boundary, and binding migration.
0 commit comments