<@U0A71G31CDV> release note 4.0.11 is not availabl...
# questions-and-troubleshooting
a
@Rocky release note 4.0.11 is not available. Can you share it?
r
Based on the information available as of June 5, 2026, official release notes for StarRocks 4.0.11 have not yet been published. The most recent patch release in the 4.0 series is version 4.0.10, which was released on May 9, 2026. Status of Version 4.0.11 * Likely Timeline: Given StarRocks' typical patch release cycle of every 2–3 weeks, version 4.0.11 is expected to be released around late May or early June. * Current Activity: Recent activity on the StarRocks GitHub repository (as of June 4, 2026) shows that bug fixes and enhancements are still being backported to the
branch-4.0
and
branch-4.1
branches. * Availability: If you have seen a "4.0.11" tag or container image, it may be a pre-release or the documentation is still in the process of being synchronized to the website. Where to check for updates You can monitor the following pages for the official announcement: 1. StarRocks GitHub Releases: This is the first place new versions are officially tagged with full changelogs. 2. Official Release Notes Documentation: The documentation site is usually updated shortly after the GitHub release. 3. StarRocks Community Slack: Major patch releases are typically announced in the
#announcement
or
#general
channels. If you are looking for a specific fix that you believe was intended for 4.0.11, I recommend checking the GitHub Pull Requests filtered by the
4.0
label to see if it has been merged. Referencesrelease_notes/release-4.0.md
a
@Rocky how do i download 4.0.10 ?
r
You can download StarRocks 4.0.10 (released May 9, 2026) using the following methods: 1. Direct Download (Binary) You can use
wget
to download the tarball for your specific operating system (x86_64/amd64). Replace
<OS>
with
centos
or `ubuntu`:
Copy code
bash
# For CentOS/RHEL
wget <https://releases.starrocks.io/starrocks/StarRocks-4.0.10-centos-amd64.tar.gz>

# For Ubuntu
wget <https://releases.starrocks.io/starrocks/StarRocks-4.0.10-ubuntu-amd64.tar.gz>
2. Docker Images If you prefer using containers or are deploying on ARM-based CPUs, pull the image from Docker Hub:
Copy code
bash
# Pull the CentOS-based image
docker pull starrocks/artifacts-centos7:4.0.10

# Pull the Ubuntu-based image
docker pull starrocks/artifacts-ubuntu:4.0.10
3. Official Website & GitHub * Download Page: You can select the version manually at the StarRocks Download Center. * GitHub Releases: The source code and release assets are also available on the StarRocks GitHub Releases page. Deployment Files Note Once you download the package, the
fe/
and
be/
directories contain the necessary files for the Frontend and Backend nodes, respectively. If you are using the Docker artifacts to get binary files for an ARM deployment, you can extract them using:
Copy code
bash
docker run --rm starrocks/artifacts-ubuntu:4.0.10 tar -cf - -C /release . | tar -xvf -
Referencesdeployment/prepare_deployment_files.mdrelease_notes/release-4.0.md Referencesdeployment/prepare_deployment_files.mdrelease_notes/release-4.0.md