This is an automated email from the ASF dual-hosted git repository.
jerryshao pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/gravitino.git
The following commit(s) were added to refs/heads/main by this push:
new dc3b3ea25a fix(docs): remove MDX-incompatible curly braces in
lance-rest-integration doc (#11520)
dc3b3ea25a is described below
commit dc3b3ea25a7e81e6874791842818f40c5079970b
Author: Qi Yu <[email protected]>
AuthorDate: Tue Jun 9 19:01:38 2026 +0800
fix(docs): remove MDX-incompatible curly braces in lance-rest-integration
doc (#11520)
### What changes were proposed in this pull request?
Remove curly-brace syntax (`{0.2.0, 0.4.0}`, `{0.3.0, 0.4.2}`) from
`docs/lance-rest-integration.md` that causes Docusaurus MDX compilation
failures (curly braces outside code spans are parsed as JSX
expressions),
and align the Markdown table column widths accordingly.
### Why are the changes needed?
The `{...}` notation in the version compatibility table and the note
block
triggers an MDX parse error when the docs site is built, breaking the
documentation build.
### Does this PR introduce _any_ user-facing change?
No (documentation only, no functional change).
### How was this patch tested?
Verified the Markdown renders correctly without curly braces.
---
docs/lance-rest-integration.md | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/docs/lance-rest-integration.md b/docs/lance-rest-integration.md
index a3b32634a7..988d3cb895 100644
--- a/docs/lance-rest-integration.md
+++ b/docs/lance-rest-integration.md
@@ -23,12 +23,12 @@ The following table outlines the tested compatibility
between Gravitino versions
| Gravitino Version (Lance REST) | Supported lance-spark Versions | Supported
lance-ray Versions |
|--------------------------------|--------------------------------|-----------------------------------------------|
| 1.1.1 - 1.2.1 | 0.0.10 - 0.0.15 | 0.0.6 -
0.0.8 |
-| 1.3.0 | {0.2.0, 0.4.0} | 0.3.0 -
0.4.2 (0.2.0 conditionally supported) |
+| 1.3.0 | 0.2.0, 0.4.0 | 0.3.0 -
0.4.2 (0.2.0 conditionally supported) |
:::note
- These version entries show which versions are expected to work together.
- For Gravitino 1.3.0, the explicitly verified release versions are
- `lance-spark` {0.2.0, 0.4.0} and `lance-ray` {0.3.0, 0.4.2}. `lance-ray`
+ `lance-spark` (0.2.0, 0.4.0) and `lance-ray` (0.3.0, 0.4.2). `lance-ray`
0.2.0 is conditionally supported only with the conditions described below.
- **`lance-spark` 0.1.0 and 0.1.1 are not supported on Gravitino 1.3.0.**