-
Notifications
You must be signed in to change notification settings - Fork 47
Update v1.12.0 release docs #251
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Conversation
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Pull request overview
This pull request updates documentation for the v1.12.0 release of EventMesh. The changes add versioned documentation files, update the download page, and include comprehensive Chinese translations for the new release.
Key Changes:
- Added v1.12.0 to versions.json
- Created complete versioned documentation for v1.12.0 including installation guides, SDK documentation, design documents, and upgrade guides
- Updated download page with v1.12.0 release information
- Added Chinese translations (i18n/zh) for all new documentation
Reviewed changes
Copilot reviewed 99 out of 100 changed files in this pull request and generated 2 comments.
Show a summary per file
| File | Description |
|---|---|
| versions.json | Added v1.12.0 as the latest version |
| src/pages/download.tsx | Added v1.12.0 download links and release information |
| versioned_docs/version-v1.12.0/* | Complete English documentation for v1.12.0 including guides, SDK docs, and design documents |
| versioned_sidebars/version-v1.12.0-sidebars.json | Sidebar configuration for v1.12.0 documentation |
| i18n/zh/docusaurus-plugin-content-docs/version-v1.12.0/* | Chinese translations of all v1.12.0 documentation |
| package-lock.json | Added autocorrect-node dependency for documentation quality checks |
💡 Add Copilot custom instructions for smarter, more guided reviews. Learn how to get started.
| @@ -0,0 +1,15 @@ | |||
| # EventMesh Upgrade Guide | |||
|
|
|||
| > This article briefly introduces the precautions for upgrading EventMesh from version 1.2.0 to the latest version. | |||
Copilot
AI
Dec 30, 2025
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
The upgrade guide references version "1.2.0" as the starting point for upgrades, but this appears inconsistent with the v1.12.0 release being documented. The statement "upgrading EventMesh from version 1.2.0 to the latest version" should likely reference a more recent baseline version or be clarified as "1.12.0" instead of "1.2.0". This could confuse users about which versions are relevant for the upgrade path.
| implementation 'org.apache.eventmesh:eventmesh-sdk-java:1.10.0' | ||
| } | ||
| ``` | ||
|
|
||
|
|
||
|
|
||
| </TabItem> | ||
| <TabItem value="Maven" label="Maven"> | ||
|
|
||
| To install EventMesh SDK for Java with Maven, declare `org.apache.eventmesh:eventmesh-sdk-java` as a dependency in the dependencies block of the project's `pom.xml` file. | ||
|
|
||
| ```xml | ||
| <dependencies> | ||
| <dependency> | ||
| <groupId>org.apache.eventmesh</groupId> | ||
| <artifactId>eventmesh-sdk-java</artifactId> | ||
| <version>1.10.0</version> |
Copilot
AI
Dec 30, 2025
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
The SDK installation instructions reference version "1.10.0" in both Gradle and Maven examples, but this is documentation for v1.12.0. Users following these instructions would install an older version of the SDK instead of the current release. The version should be updated to "1.12.0" to match the documentation version.
update v1.12.0 release docs