From c308ede5569dcb1450cb70506f40012d43c5fcfa Mon Sep 17 00:00:00 2001 From: prrao87 Date: Mon, 17 Nov 2025 15:19:04 -0800 Subject: [PATCH 1/4] fix: docs and comment have broken links --- docs/src/rest.yaml | 4 ++-- docs/src/sdk_docs.md | 2 +- python/README.md | 2 +- python/python/lance/dataset.py | 4 ++-- python/python/lance/types.py | 2 +- rust/lance-file/README.md | 2 +- rust/lance-namespace-impls/README.md | 2 +- rust/lance-namespace/README.md | 2 +- rust/lance-table/README.md | 2 +- rust/lance/src/session.rs | 2 +- 10 files changed, 12 insertions(+), 12 deletions(-) diff --git a/docs/src/rest.yaml b/docs/src/rest.yaml index 67828abe4e1..faf6eaeaed8 100644 --- a/docs/src/rest.yaml +++ b/docs/src/rest.yaml @@ -23,11 +23,11 @@ info: The `components/schemas`, `components/responses`, `components/examples`, `tags` sections define the request and response shape for each operation in a Lance Namespace across all implementations. - See https://lancedb.github.io/lance-namespace/spec/operations for more details. + See https://lance.org/format/namespace/operations for more details. The `servers`, `security`, `paths`, `components/parameters` sections are for the Lance REST Namespace implementation, which defines a complete REST server that can work with Lance datasets. - See https://lancedb.github.io/lance-namespace/spec/impls/rest for more details. + See https://lance.org/format/namespace/impls/rest for more details. servers: - url: "{scheme}://{host}:{port}/{basePath}" description: Generic server URL with all parts configurable diff --git a/docs/src/sdk_docs.md b/docs/src/sdk_docs.md index 98df87a19d9..cf7331d2d81 100644 --- a/docs/src/sdk_docs.md +++ b/docs/src/sdk_docs.md @@ -4,6 +4,6 @@ Lance provides comprehensive documentation for all the language SDKs. These auto-generated docs contain detailed information about all classes, functions, and methods available in each language. -- [Python](https://lancedb.github.io/lance-python-doc) +- [Python](https://lance-format.github.io/lance-python-doc) - [Rust](https://docs.rs/lance/latest/lance) - [Java](https://www.javadoc.io/doc/com.lancedb/lance-core/latest/index.html) \ No newline at end of file diff --git a/python/README.md b/python/README.md index 10fa45b4aeb..001a76227eb 100644 --- a/python/README.md +++ b/python/README.md @@ -1,3 +1,3 @@ # Lance Python SDK -Please read the contribution guide at https://lancedb.github.io/lance/community/contributing#python-development. \ No newline at end of file +Please read the contribution guide at https://lance.org/community/lancelot/. \ No newline at end of file diff --git a/python/python/lance/dataset.py b/python/python/lance/dataset.py index d9a96a86c85..df3d0179123 100644 --- a/python/python/lance/dataset.py +++ b/python/python/lance/dataset.py @@ -702,7 +702,7 @@ def scanner( All columns are fetched if None or unspecified. filter: pa.compute.Expression or str Expression or str that is a valid SQL where clause. See - `Lance filter pushdown `_ + `Lance filter pushdown `_ for valid SQL expressions. limit: int, default None Fetch up to this many rows. All rows if None or unspecified. @@ -964,7 +964,7 @@ def to_table( All columns are fetched if None or unspecified. filter : pa.compute.Expression or str Expression or str that is a valid SQL where clause. See - `Lance filter pushdown `_ + `Lance filter pushdown `_ for valid SQL expressions. limit: int, default None Fetch up to this many rows. All rows if None or unspecified. diff --git a/python/python/lance/types.py b/python/python/lance/types.py index 9fcefec9a83..41cc191e4d6 100644 --- a/python/python/lance/types.py +++ b/python/python/lance/types.py @@ -129,6 +129,6 @@ def batch_iter(): raise TypeError( f"Unknown data type {type(data_obj)}. " "Please check " - "https://lancedb.github.io/lance/guide/read_and_write/ " + "https://lance.org/guide/read_and_write/ " "to see supported types." ) diff --git a/rust/lance-file/README.md b/rust/lance-file/README.md index 83f2a414cd1..a63f2d164fa 100644 --- a/rust/lance-file/README.md +++ b/rust/lance-file/README.md @@ -1,6 +1,6 @@ # lance-file `lance-file` is an internal sub-crate, containing readers and writers for the -[Lance file format](https://lancedb.github.io/lance/format/file/). +[Lance file format](https://lance.org/format/file/). **Important Note**: This crate is **not intended for external usage**. diff --git a/rust/lance-namespace-impls/README.md b/rust/lance-namespace-impls/README.md index b61d495a791..5f5a092e487 100644 --- a/rust/lance-namespace-impls/README.md +++ b/rust/lance-namespace-impls/README.md @@ -78,4 +78,4 @@ async fn main() -> Result<(), Box> { ## Documentation -For more information about Lance and its namespace system, see the [Lance Namespace documentation](https://lancedb.github.io/lance/format/namespace). +For more information about Lance and its namespace system, see the [Lance Namespace documentation](https://lance.org/format/namespace). diff --git a/rust/lance-namespace/README.md b/rust/lance-namespace/README.md index 89cd8a002de..84c6143aa3c 100644 --- a/rust/lance-namespace/README.md +++ b/rust/lance-namespace/README.md @@ -41,4 +41,4 @@ async fn example(namespace: &dyn LanceNamespace) { ## Documentation -For more information about Lance and its namespace system, see the [Lance Namespace documentation](https://lancedb.github.io/lance/format/namespace). +For more information about Lance and its namespace system, see the [Lance Namespace documentation](https://lance.org/format/namespace). diff --git a/rust/lance-table/README.md b/rust/lance-table/README.md index f576f0554f9..d646747ef88 100644 --- a/rust/lance-table/README.md +++ b/rust/lance-table/README.md @@ -1,6 +1,6 @@ # lance-table `lance-table` is an internal sub-crate for the -[Lance table format](https://lancedb.github.io/lance/format/table/). +[Lance table format](https://lance.org/format/table/). **Important Note**: This crate is **not intended for external usage**. diff --git a/rust/lance/src/session.rs b/rust/lance/src/session.rs index e5ea47c02dc..ca251e7fdef 100644 --- a/rust/lance/src/session.rs +++ b/rust/lance/src/session.rs @@ -33,7 +33,7 @@ pub(crate) mod index_extension; /// A session contains two different caches: /// - The index cache is used to cache opened indices and will cache index data /// - The metadata cache is used to cache a variety of dataset metadata (more -/// details can be found in the [performance guide](https://lancedb.github.io/lance/guide/performance/) +/// details can be found in the [performance guide](https://lance.org/guide/performance/) #[derive(Clone)] pub struct Session { /// Global cache for opened indices. From b84d0023b87a29c1bdda20fc8f492507d89dd871 Mon Sep 17 00:00:00 2001 From: Prashanth Rao <35005448+prrao87@users.noreply.github.com> Date: Mon, 17 Nov 2025 15:43:18 -0800 Subject: [PATCH 2/4] Update python/README.md Co-authored-by: Copilot <175728472+Copilot@users.noreply.github.com> --- python/README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/python/README.md b/python/README.md index 001a76227eb..fca6c049288 100644 --- a/python/README.md +++ b/python/README.md @@ -1,3 +1,3 @@ # Lance Python SDK -Please read the contribution guide at https://lance.org/community/lancelot/. \ No newline at end of file +Please read the contribution guide at the [CONTRIBUTING.md](https://github.com/lance-format/lance/blob/main/python/CONTRIBUTING.md) page \ No newline at end of file From 8b509092fe0744ee39a7f9373df93ca3d75c6975 Mon Sep 17 00:00:00 2001 From: prrao87 Date: Thu, 20 Nov 2025 11:27:41 -0800 Subject: [PATCH 3/4] Update contributions url --- docs/CONTRIBUTING.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/CONTRIBUTING.md b/docs/CONTRIBUTING.md index c0c9ebacc4a..ec95d95e47f 100644 --- a/docs/CONTRIBUTING.md +++ b/docs/CONTRIBUTING.md @@ -19,7 +19,7 @@ uv run mkdocs serve ### Python Generated Doc Python code documentation is built using Sphinx in [lance-python-doc](https://github.com/lancedb/lance-python-doc), -and published through [Github Pages](https://lancedb.github.io/lance-python-doc/) in ReadTheDocs style. +and published through [Github Pages](https://lance-format.github.io/lance-python-doc/) in ReadTheDocs style. ### Rust Generated Doc From 08c1cf5dd3e9c97a34b2d72da2be67a649930383 Mon Sep 17 00:00:00 2001 From: prrao87 Date: Thu, 20 Nov 2025 17:14:09 -0800 Subject: [PATCH 4/4] fix contributing link --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 0e12ddca89d..4fe2608c9a5 100644 --- a/README.md +++ b/README.md @@ -53,7 +53,7 @@ The key features of Lance include: For more details, see the full [Lance format specification](https://lance.org/format). > [!TIP] -> Lance is in active development and we welcome contributions. Please see our [contributing guide](https://lance.org/docs/community/contributing) for more information. +> Lance is in active development and we welcome contributions. Please see our [contributing guide](https://lance.org/community/contributing/) for more information. ## Quick Start