Skip to content

Release 1.7.3#286

Merged
robinskil merged 1 commit into
mainfrom
release/1.73
Jun 19, 2026
Merged

Release 1.7.3#286
robinskil merged 1 commit into
mainfrom
release/1.73

Conversation

@robinskil

Copy link
Copy Markdown
Collaborator

Summary

Prepares the 1.7.3 release: bumps all 1.7.x crates to 1.7.3, rolls the versioned docs folder forward (docs/docs/1.7.21.7.3), and documents the two features that landed since 1.7.2.

Version bump

  • All 17 1.7.x crates bumped 1.7.21.7.3 (Cargo.lock regenerated). Binary-format / atlas / tiff / nd-array / nd-arrow crates keep their independent versions.
  • git mv docs/docs/1.7.2 docs/docs/1.7.3; every /docs/1.7.2/ link and version label updated across config.mts, GetStartedCta.vue, README.md, docs/index.md, llms.txt, and the changelog.
  • Added ## v1.7.3 changelog entry; added 1.7.3 and backfilled the missing 1.7.1 in the changelog sidebar nav.

New documentation

  • SQL guide: new chapters sql/geoparquet.md (querying GeoParquet) and sql/remote-tables.md (querying federated remote tables).
  • Data lakehouse setup: new data-lake/geoparquet.md setup chapter; existing data-lake/remote-tables.md left as-is.
  • Added GEOPARQUET to the CREATE EXTERNAL TABLE formats table in the SQL DDL guide.
  • Wired GeoParquet into the Supported Formats and External Tables sidebars, plus GeoParquet/Remote Tables into the SQL Guide → Querying nav.

Documents:

Verification

  • cargo check --workspace passes (exit 0).
  • npm run docs:build completes with no dead-link errors; new pages and cross-links resolve.

Bump all 1.7.x crates to 1.7.3 and roll the docs version folder forward
(docs/docs/1.7.2 -> 1.7.3), updating every version reference in config,
README, changelog, and llms.txt.

Document the two features that landed since 1.7.2:
- GeoParquet read support (#285)
- Federated remote tables over Flight SQL (#284)

Docs changes:
- New SQL-guide chapters: sql/geoparquet.md, sql/remote-tables.md
- New data-lake setup chapter: data-lake/geoparquet.md
- Add GEOPARQUET to the CREATE EXTERNAL TABLE formats table
- Add GeoParquet to the External Tables and Supported Formats sidebars
- Add v1.7.3 changelog entry; backfill 1.7.1 in the changelog nav
Copilot AI review requested due to automatic review settings June 19, 2026 08:49

Copilot AI left a comment

Copy link
Copy Markdown
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Pull request overview

Prepares the Beacon v1.7.3 release by bumping crate versions and rolling the versioned documentation set forward to /docs/1.7.3/, with new/expanded docs for GeoParquet reading and federated remote tables.

Changes:

  • Bumped all 1.7.x workspace crates from 1.7.21.7.3 (and regenerated Cargo.lock accordingly).
  • Updated site entrypoints/navigation and cross-links to point at /docs/1.7.3/ and added a v1.7.3 changelog entry.
  • Added a large set of new v1.7.3 docs pages (SQL guide chapters, data-lake chapters, REST API chapters, connection guides).

Reviewed changes

Copilot reviewed 30 out of 60 changed files in this pull request and generated no comments.

Show a summary per file
File Description
README.md Updates docs links to /docs/1.7.3/.
docs/public/llms.txt Updates documentation URLs to /docs/1.7.3/.
docs/index.md Updates homepage hero links to /docs/1.7.3/.
docs/docs/changelog/release-1.7.0.md Fixes link target to the new /docs/1.7.3/ path.
docs/docs/changelog/index.md Adds v1.7.3 changelog entry + updates managed-tables link path.
docs/docs/1.7.3/sql/where.md New SQL guide chapter: WHERE clause.
docs/docs/1.7.3/sql/union-by-name.md New SQL guide chapter: UNION ALL BY NAME.
docs/docs/1.7.3/sql/table-functions.md New SQL guide chapter: file-reading table functions (incl. GeoParquet).
docs/docs/1.7.3/sql/table-functions-utility.md New SQL guide chapter: schema/listing/statistics introspection table functions.
docs/docs/1.7.3/sql/select.md New SQL guide chapter: SELECT basics.
docs/docs/1.7.3/sql/remote-tables.md New SQL guide chapter: querying remote tables.
docs/docs/1.7.3/sql/managed-tables.md New SQL guide chapter: managed tables (Iceberg) and DDL/DML.
docs/docs/1.7.3/sql/join.md New SQL guide chapter: JOINs.
docs/docs/1.7.3/sql/index.md New SQL guide index page.
docs/docs/1.7.3/sql/group-by.md New SQL guide chapter: GROUP BY/HAVING aggregates.
docs/docs/1.7.3/sql/geoparquet.md New SQL guide chapter: querying GeoParquet + geometry notes.
docs/docs/1.7.3/sql/function-reference.md New consolidated SQL function reference (DataFusion + Beacon-specific).
docs/docs/1.7.3/sql/create-view.md New SQL DDL chapter: CREATE VIEW.
docs/docs/1.7.3/sql/create-table.md Updates CREATE EXTERNAL TABLE docs to include GEOPARQUET.
docs/docs/1.7.3/sql/create-materialized-view.md New SQL DDL chapter: CREATE MATERIALIZED VIEW + REFRESH behavior.
docs/docs/1.7.3/introduction.md Rolls /docs/1.7.2/ links forward to /docs/1.7.3/.
docs/docs/1.7.3/getting-started.md New getting started guide for Docker + S3 setup.
docs/docs/1.7.3/data-lake/view.md New data-lake chapter: views (setup-level).
docs/docs/1.7.3/data-lake/remote-tables.md New data-lake setup chapter: remote tables definition + schema pinning.
docs/docs/1.7.3/data-lake/performance-tuning.md New data-lake chapter: operational performance knobs.
docs/docs/1.7.3/data-lake/index.md New data-lake index page.
docs/docs/1.7.3/data-lake/geoparquet.md New data-lake setup chapter: GeoParquet discovery + external tables.
docs/docs/1.7.3/data-lake/external-tables.md New data-lake setup chapter: external tables across formats (incl. GeoParquet/Remote).
docs/docs/1.7.3/data-lake/datasets.md Updates supported formats section to link out to dedicated GeoParquet docs.
docs/docs/1.7.3/data-lake/configuration.md New configuration reference page for environment variables.
docs/docs/1.7.3/connect/python-adbc.md New connection guide: Python via ADBC Flight SQL.
docs/docs/1.7.3/connect/jetbrains-datagrip.md New connection guide: DataGrip via Flight SQL JDBC driver.
docs/docs/1.7.3/connect/beacon-python-sdk.md New connection guide: Beacon Python SDK overview/links/examples.
docs/docs/1.7.3/connect/beacon-cli.md New connection guide: Beacon CLI tool overview/install.
docs/docs/1.7.3/api/querying/sql.md New REST API doc: submitting SQL to /api/query.
docs/docs/1.7.3/api/querying/json.md New REST API doc: JSON query DSL reference.
docs/docs/1.7.3/api/querying/index.md New REST API doc: querying overview + output formats.
docs/docs/1.7.3/api/querying/examples.md New REST API doc: copy/paste examples for JSON and SQL.
docs/docs/1.7.3/api/index.md New REST API landing page.
docs/docs/1.7.3/api/exploring-data-lake.md New REST API doc: discovery endpoints (datasets/tables/schemas/functions).
docs/.vitepress/theme/components/GetStartedCta.vue Updates CTA link to /docs/1.7.3/getting-started.
docs/.vitepress/config.mts Moves “latest” docs to 1.7.3 and wires new sidebar structure/content.
Cargo.lock Workspace lockfile updated for v1.7.3 crate versions.
beacon-object-storage/Cargo.toml Bumps crate version to 1.7.3.
beacon-iceberg/Cargo.toml Bumps crate version to 1.7.3.
beacon-functions/Cargo.toml Bumps crate version to 1.7.3.
beacon-file-formats/beacon-arrow-zarr/Cargo.toml Bumps crate version to 1.7.3.
beacon-file-formats/beacon-arrow-parquet/Cargo.toml Bumps crate version to 1.7.3.
beacon-file-formats/beacon-arrow-odv/Cargo.toml Bumps crate version to 1.7.3.
beacon-file-formats/beacon-arrow-netcdf/Cargo.toml Bumps crate version to 1.7.3.
beacon-file-formats/beacon-arrow-ipc/Cargo.toml Bumps crate version to 1.7.3.
beacon-file-formats/beacon-arrow-geoparquet/Cargo.toml Bumps crate version to 1.7.3.
beacon-file-formats/beacon-arrow-csv/Cargo.toml Bumps crate version to 1.7.3.
beacon-file-formats/beacon-arrow-bbf/Cargo.toml Bumps crate version to 1.7.3.
beacon-datafusion-ext/Cargo.toml Bumps crate version to 1.7.3.
beacon-data-lake/Cargo.toml Bumps crate version to 1.7.3.
beacon-core/Cargo.toml Bumps crate version to 1.7.3.
beacon-config/Cargo.toml Bumps crate version to 1.7.3.
beacon-common/Cargo.toml Bumps crate version to 1.7.3.
beacon-api/Cargo.toml Bumps crate version to 1.7.3.

💡 Add Copilot custom instructions for smarter, more guided reviews. Learn how to get started.

@robinskil robinskil self-assigned this Jun 19, 2026
@robinskil robinskil merged commit 0de066b into main Jun 19, 2026
3 checks passed
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

None yet

Projects

None yet

Development

Successfully merging this pull request may close these issues.

2 participants