This is an automated email from the ASF dual-hosted git repository. bobbai00 pushed a commit to branch release/1.1.0-incubating-download-page in repository https://gitbox.apache.org/repos/asf/incubator-texera-site.git
commit dc861a968a4ea58b60f43aa4aee791bfb4ebba97 Author: Bob Bai <[email protected]> AuthorDate: Sun May 17 16:20:14 2026 -0700 Add download page for 1.1.0-incubating release First Apache Incubator release of Apache Texera. Adds /downloads/ page linking to the official source distribution on Apache mirrors, KEYS file, container images, and verification instructions. Addresses the missing download-page feedback from the IPMC vote review (https://lists.apache.org/thread/7syw2y2q4sl6jfz22coz847ccnv5m6w5). Co-Authored-By: Claude Opus 4.7 (1M context) <[email protected]> --- content/en/downloads/_index.md | 80 ++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 80 insertions(+) diff --git a/content/en/downloads/_index.md b/content/en/downloads/_index.md new file mode 100644 index 0000000..8f12562 --- /dev/null +++ b/content/en/downloads/_index.md @@ -0,0 +1,80 @@ +--- +title: Download +menu: {main: {weight: 30}} +--- + +## Latest release: 1.1.0-incubating + +This is the first release of Apache Texera (Incubating) as an Apache Incubator project. + +**Highlights:** + +- **TexeraAgent** — an LLM agent that helps users construct workflows using natural-language instructions ([#4034](https://github.com/apache/texera/issues/4034)). +- **Repository & license compliance** — added ASF license headers, `asf.yaml`, `NOTICE`, and `DISCLAIMER`; resolved outstanding license issues. +- **System repositioning** — revised to "Human-AI Collaborative Data Science Using Visual Workflows". + +Full release notes: [v1.1.0-incubating on GitHub](https://github.com/apache/texera/releases/tag/v1.1.0-incubating). + +## Source distribution + +The official source release is published on the Apache mirrors at: + +**[https://downloads.apache.org/incubator/texera/1.1.0-incubating/](https://downloads.apache.org/incubator/texera/1.1.0-incubating/)** + +| File | Signature | Checksum | +|---|---|---| +| `apache-texera-1.1.0-incubating-src.tar.gz` | `.asc` | `.sha512` | +| `apache-texera-1.1.0-incubating-docker-compose.tar.gz` | `.asc` | `.sha512` | + +KEYS file: [https://downloads.apache.org/incubator/texera/KEYS](https://downloads.apache.org/incubator/texera/KEYS) + +## Container images + +Multi-architecture (`linux/amd64`, `linux/arm64`) Docker images are available on Docker Hub, all tagged `1.1.0-incubating`: + +- `apache/texera-dashboard-service` +- `apache/texera-workflow-execution-coordinator` +- `apache/texera-workflow-compiling-service` +- `apache/texera-file-service` +- `apache/texera-config-service` +- `apache/texera-access-control-service` +- `apache/texera-workflow-computing-unit-managing-service` + +These images are built from the source tarball included in this release. + +## Verifying a release + +Apache release artifacts are signed with the project's release signing keys. Before using a release, please verify the signature and checksum. + +### 1. Import the release signing keys + +```bash +curl https://downloads.apache.org/incubator/texera/KEYS | gpg --import +``` + +### 2. Verify the GPG signature + +```bash +gpg --verify apache-texera-1.1.0-incubating-src.tar.gz.asc \ + apache-texera-1.1.0-incubating-src.tar.gz +``` + +You should see a `Good signature` line. The `WARNING: This key is not certified with a trusted signature` warning is expected unless you have explicitly trusted the signing key. + +### 3. Verify the SHA-512 checksum + +```bash +sha512sum -c apache-texera-1.1.0-incubating-src.tar.gz.sha512 +``` + +(On macOS, use `shasum -a 512 -c ...`.) + +## Getting started + +Once verified, see [Install Texera](/docs/getting-started/install-texera/) for installation options, including [Docker Compose](/docs/getting-started/installing-using-docker/) for single-node deployment and [Kubernetes](/docs/getting-started/run-on-kubernetes/) for production deployment. + +## Older releases + +Older releases are kept in the [Apache archive](https://archive.apache.org/dist/incubator/texera/) for historical reference. + +Note: The pre-incubation `1.0.0` release is **not** an Apache Software Foundation release and is not available on Apache mirrors.
