Docs: Update version references to v0.25.0 in READMEs and docs (#14257)

### What problem does this PR solve?

- Update version tags in README files (including translations) from
v0.24.0 to v0.25.0
- Modify Docker image references and documentation to reflect new
version
- Update version badges and image descriptions
- Maintain consistency across all language variants of README files

### Type of change

- [x] Documentation Update
This commit is contained in:
Liu An
2026-04-21 17:26:50 +08:00
committed by GitHub
parent afdf0814d7
commit a33d0737cd
30 changed files with 73 additions and 73 deletions

View File

@@ -275,8 +275,8 @@ python db_schema_sync.py [OPTIONS]
### Version Format
Version must be in format `vxx.xx.xx` where `xx` are digits:
- Valid: `v0.24.0`, `v1.0.0`, `v10.20.30`
- Invalid: `0.24.0`, `v0.24`, `v0.24.0.1`
- Valid: `v0.25.0`, `v1.0.0`, `v10.20.30`
- Invalid: `0.25.0`, `v0.25`, `v0.25.0.1`
### Migration File Location
@@ -287,7 +287,7 @@ tools/migrate/{version_dir}/
Where `{version_dir}` is the version with `.` replaced by `_`.
Example: Version `v0.24.0` → Directory `tools/migrate/v0_24_0/`
Example: Version `v0.25.0` → Directory `tools/migrate/v0_24_0/`
### Examples
@@ -295,32 +295,32 @@ Example: Version `v0.24.0` → Directory `tools/migrate/v0_24_0/`
# List all migrations
python db_schema_sync.py --list \
--host localhost --port 3306 --user root --password xxx --database rag_flow \
--version v0.24.0
--version v0.25.0
# Create a new auto-detected migration (new tables, new fields, type changes only)
python db_schema_sync.py --create \
--host localhost --port 3306 --user root --password xxx --database rag_flow \
--version v0.24.0
--version v0.25.0
# Create a migration including dropped fields (destructive!)
python db_schema_sync.py --create --drop \
--host localhost --port 3306 --user root --password xxx --database rag_flow \
--version v0.24.0
--version v0.25.0
# Create a named migration
python db_schema_sync.py --create --name add_user_table \
--host localhost --port 3306 --user root --password xxx --database rag_flow \
--version v0.24.0
--version v0.25.0
# Run all pending migrations
python db_schema_sync.py --migrate \
--host localhost --port 3306 --user root --password xxx --database rag_flow \
--version v0.24.0
--version v0.25.0
# Show schema differences (including removed fields)
python db_schema_sync.py --diff \
--host localhost --port 3306 --user root --password xxx --database rag_flow \
--version v0.24.0
--version v0.25.0
```
## How It Works