Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
36 commits
Select commit Hold shift + click to select a range
6821163
Bump v10.11 download link to v10.11.22
amyblais Jul 7, 2026
3e1743a
Add v10.11.22 dot release changelog entry
amyblais Jul 7, 2026
cb72551
Add v10.11.22 to version archive
amyblais Jul 7, 2026
eb2f7a3
Bump v11.7 download link to v11.7.7
amyblais Jul 8, 2026
7c1e44a
Add v11.7.7 dot release changelog entry
amyblais Jul 8, 2026
537f870
Add v11.7.7 to version archive
amyblais Jul 8, 2026
d45a636
Bump current ESR to v11.7.7
amyblais Jul 8, 2026
23ebcb7
Bump current ESR to v11.7.7
amyblais Jul 8, 2026
5222527
Add v11.8.4 placeholder changelog entry
amyblais Jul 8, 2026
96d13f4
Merge branch 'master' into dot-release-docs-10.11.22
amyblais Jul 8, 2026
733cdec
Update deploy-rhel.rst
amyblais Jul 8, 2026
ee5e615
Update deploy-tar.rst
amyblais Jul 8, 2026
b24b6d6
Update mattermost-server-releases.md
amyblais Jul 8, 2026
8767ab5
Update version-archive.rst
amyblais Jul 8, 2026
d300c40
Update mattermost-v11-changelog.md
amyblais Jul 8, 2026
3a76b3c
Update mattermost-v11-changelog.md
amyblais Jul 8, 2026
3cb82ef
Update source/product-overview/version-archive.rst
amyblais Jul 8, 2026
041fcb9
Merge branch 'master' into dot-release-docs-10.11.22
amyblais Jul 8, 2026
7ca5e9c
Merge branch 'master' into dot-release-docs-10.11.22
amyblais Jul 9, 2026
22985ae
Update mattermost-v11-changelog.md
amyblais Jul 9, 2026
75b7784
Merge branch 'master' into dot-release-docs-10.11.22
amyblais Jul 13, 2026
6701478
Merge branch 'master' into dot-release-docs-10.11.22
amyblais Jul 14, 2026
e0cf4f1
Update mattermost-v11-changelog.md
amyblais Jul 15, 2026
7894bcb
Update mattermost-v11-changelog.md
amyblais Jul 15, 2026
b5a05ae
Merge branch 'master' into dot-release-docs-10.11.22
amyblais Jul 16, 2026
d1f1de3
Merge branch 'master' into dot-release-docs-10.11.22
amyblais Jul 16, 2026
fe45354
Update mattermost-v10-changelog.md
amyblais Jul 16, 2026
1261546
Update mattermost-v11-changelog.md
amyblais Jul 16, 2026
4562bf1
Update mattermost-v11-changelog.md
amyblais Jul 16, 2026
1ec89b2
Update mattermost-mobile-releases.md
amyblais Jul 17, 2026
bb374d3
Update generate_changelog.py (#9099)
amyblais Jul 17, 2026
4dadc65
Update mobile-app-changelog.md
amyblais Jul 17, 2026
185ce4e
Merge branch 'master' into dot-release-docs-10.11.22
amyblais Jul 17, 2026
9f03fc5
Update mattermost-v10-changelog.md
amyblais Jul 17, 2026
3af800b
Update mattermost-v11-changelog.md
amyblais Jul 17, 2026
8663ec1
Update version-archive.rst
amyblais Jul 17, 2026
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 6 additions & 4 deletions .github/scripts/generate_changelog.py
Original file line number Diff line number Diff line change
Expand Up @@ -72,7 +72,7 @@

Adapt the plan name (e.g. "Changes to All plans:", "Changes to Enterprise plan:", "Changes to Enterprise Advanced plan:") and list each setting change as a bullet under the appropriate plan heading.
- `#### Compatibility` — minimum version requirement changes for browsers, OS, or clients. Example: "Updated minimum Edge and Chrome versions to 146+."
- `### Improvements` — for new features and enhancements only. Do NOT place items beginning with "Fixed..." here — those belong in Bug Fixes. Begin this section with the line `See [this blog post](BLOG_POST_URL) on the highlights in our latest release.` (use the exact placeholder `BLOG_POST_URL` — it will be replaced automatically), followed by a blank line before the first `####` subsection heading. Then add subsections as applicable:
- `### Improvements` — for new features and enhancements only. Do NOT place items beginning with "Fixed..." here — those belong in Bug Fixes. Begin this section with the line `See BLOG_POST_LINK on the highlights in our latest release.` (use the exact placeholder `BLOG_POST_LINK` — it will be replaced automatically with a Markdown link), followed by a blank line before the first `####` subsection heading. Then add subsections as applicable:
- `#### User Interface` — user interface and UX changes and new visual features. Pre-packaged plugin version updates go at the TOP of this subsection, before other items. Always write "user interface" in full — never abbreviate as "UI".
- `#### Plugins/Integrations` — plugin and integration improvements (use as a separate subsection when there are enough items to warrant it)
- `#### Administration` — System Console features, logging, support packet changes
Expand Down Expand Up @@ -391,11 +391,13 @@ def main():
polished = polish_with_ai(all_notes)
blog_url = os.environ.get("BLOG_POST_URL", "").strip()
if not blog_url:
# Auto-construct from version: v11.7.0 → https://mattermost.com/blog/mattermost-v11-7-0-is-now-available/
version_slug = VERSION.lstrip("v").replace(".", "-")
# Auto-construct short URL (no patch suffix): v11.6.0 → mattermost-v11-6-is-now-available
version_slug = re.sub(r"-\d+$", "", VERSION.lstrip("v").replace(".", "-"))
blog_url = f"https://mattermost.com/blog/mattermost-v{version_slug}-is-now-available/"
print(f"ℹ️ No blog post URL provided — using auto-constructed URL: {blog_url}")
polished = polished.replace("BLOG_POST_URL", blog_url)
# Format as a Markdown link matching existing changelog style: [this blog post](url)
blog_link = f"[this blog post]({blog_url})"
polished = polished.replace("BLOG_POST_LINK", blog_link)
# Inject the Go Version section: replace the placeholder heading the AI outputs,
# or insert it before ### Open Source Components / ### Security to preserve
# section order, or append at the end if neither anchor exists.
Expand Down
2 changes: 1 addition & 1 deletion source/deployment-guide/server/linux/deploy-rhel.rst
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,7 @@ In a terminal window, ssh onto the system that will host the Mattermost Server.

.. code-block:: sh
wget https://releases.mattermost.com/11.7.6/mattermost-11.7.6-linux-amd64.tar.gz
wget https://releases.mattermost.com/11.7.7/mattermost-11.7.7-linux-amd64.tar.gz
.. tab:: Older releases

Expand Down
2 changes: 1 addition & 1 deletion source/deployment-guide/server/linux/deploy-tar.rst
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,7 @@ In a terminal window, ssh onto the system that will host the Mattermost Server.

.. code-block:: sh
wget https://releases.mattermost.com/11.7.6/mattermost-11.7.6-linux-amd64.tar.gz
wget https://releases.mattermost.com/11.7.7/mattermost-11.7.7-linux-amd64.tar.gz
.. tab:: Older releases

Expand Down
2 changes: 1 addition & 1 deletion source/product-overview/mattermost-mobile-releases.md
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ We strongly recommend using the latest mobile app release available that contain

| **Release** | **Support** | **Compatible with** |
|:---|:---|:---|
| v2.42 {ref}`FEATURE <release-v2-42-0>` \| [Download](https://github.com/mattermost/mattermost-mobile/releases/tag/v2.42.0) \| {ref}`Changelog <release-v2-42-0>` \| [SBOM download](https://github.com/mattermost/mattermost-mobile/releases/download/v2.42.0/sbom-mattermost-mobile-v2.42.0.json) | Released: 2026-07-16<br/>Support Ends: 2026-08-15 | {ref}`v11.9 <release-v11.9-feature-release>`, {ref}`v11.8 <release-v11.8-feature-release>`, {ref}`v11.7 <release-v11.7-extended-support-release>`, {ref}`v10.11 <release-v10.11-extended-support-release>` |
| v2.42 {ref}`FEATURE <release-v2-42-1>` \| [Download](https://github.com/mattermost/mattermost-mobile/releases/tag/v2.42.1) \| {ref}`Changelog <release-v2-42-1>` \| [SBOM download](https://github.com/mattermost/mattermost-mobile/releases/download/v2.42.1/sbom-mattermost-mobile-v2.42.1.json) | Released: 2026-07-16<br/>Support Ends: 2026-08-15 | {ref}`v11.9 <release-v11.9-feature-release>`, {ref}`v11.8 <release-v11.8-feature-release>`, {ref}`v11.7 <release-v11.7-extended-support-release>`, {ref}`v10.11 <release-v10.11-extended-support-release>` |
| v2.41 {ref}`FEATURE <release-v2-41-3>` \| [Download](https://github.com/mattermost/mattermost-mobile/releases/tag/v2.41.3) \| {ref}`Changelog <release-v2-41-3>` \| [SBOM download](https://github.com/mattermost/mattermost-mobile/releases/download/v2.41.3/sbom-mattermost-mobile-v2.41.3.json) | Released: 2026-06-16<br/>Support Ends: 2026-07-15 | {ref}`v11.8 <release-v11.8-feature-release>`, {ref}`v11.7 <release-v11.7-extended-support-release>`, {ref}`v11.6 <release-v11.6-feature-release>`, {ref}`v10.11 <release-v10.11-extended-support-release>` |
| v2.40 {ref}`FEATURE <release-v2-40-0>` \| [Download](https://github.com/mattermost/mattermost-mobile/releases/tag/v2.40.0) \| {ref}`Changelog <release-v2-40-0>` \| [SBOM download](https://github.com/mattermost/mattermost-mobile/releases/download/v2.40.0/sbom-mattermost-mobile-v2.40.0.json) | Released: 2026-05-15<br/>Support Ends: 2026-06-15 | {ref}`v11.7 <release-v11.7-extended-support-release>`, {ref}`v11.6 <release-v11.6-feature-release>`, {ref}`v11.5 <release-v11.5-feature-release>`, {ref}`v10.11 <release-v10.11-extended-support-release>` |
| v2.39 {ref}`FEATURE <release-v2-39-0>` \| [Download](https://github.com/mattermost/mattermost-mobile/releases/tag/v2.39.0) \| {ref}`Changelog <release-v2-39-0>` \| [SBOM download](https://github.com/mattermost/mattermost-mobile/releases/download/v2.39.0/sbom-mattermost-mobile-v2.39.0.json) | Released: 2026-04-16<br/>Support Ends: 2026-05-15 | {ref}`v11.6 <release-v11.6-feature-release>`, {ref}`v11.5 <release-v11.5-feature-release>`, {ref}`v11.4 <release-v11.4-feature-release>`, {ref}`v10.11 <release-v10.11-extended-support-release>` |
Expand Down
6 changes: 3 additions & 3 deletions source/product-overview/mattermost-server-releases.md
Original file line number Diff line number Diff line change
Expand Up @@ -20,8 +20,8 @@ Mattermost releases a new server version on the 16th of each month in [binary fo
| **Release** | **Released on** | **Support ends** |
|:---|:---|:---|
| v11.9 [Download](https://releases.mattermost.com/11.9.0/mattermost-11.9.0-linux-amd64.tar.gz) \| {ref}`Changelog <release-v11.9-feature-release>` \| <details class="mm-sbom"><summary>SBOM</summary><ul><li><a href="https://github.com/mattermost/mattermost/releases/download/v11.9.0/sbom-mattermost-v11.9.0.json">Team Edition</a></li><li><a href="https://releases.mattermost.com/11.9.0/sbom-enterprise-v11.9.0.json">Enterprise</a></li></ul></details> | 2026-07-16 | 2026-10-15 |
| v11.8 [Download](https://releases.mattermost.com/11.8.3/mattermost-11.8.3-linux-amd64.tar.gz) \| {ref}`Changelog <release-v11.8-feature-release>` \| <details class="mm-sbom"><summary>SBOM</summary><ul><li><a href="https://github.com/mattermost/mattermost/releases/download/v11.8.3/sbom-mattermost-v11.8.3.json">Team Edition</a></li><li><a href="https://releases.mattermost.com/11.8.3/sbom-enterprise-v11.8.3.json">Enterprise</a></li></ul></details> | 2026-06-16 | 2026-09-15 |
| v11.7 [Download](https://releases.mattermost.com/11.7.6/mattermost-11.7.6-linux-amd64.tar.gz) \| {ref}`Changelog <release-v11.7-extended-support-release>` \| <details class="mm-sbom"><summary>SBOM</summary><ul><li><a href="https://github.com/mattermost/mattermost/releases/download/v11.7.6/sbom-mattermost-v11.7.6.json">Team Edition</a></li><li><a href="https://releases.mattermost.com/11.7.6/sbom-enterprise-v11.7.6.json">Enterprise</a></li></ul></details> | 2026-05-15 | 2027-05-15 {ref}`EXTENDED <release-types>` |
| v11.8 [Download](https://releases.mattermost.com/11.8.4/mattermost-11.8.4-linux-amd64.tar.gz) \| {ref}`Changelog <release-v11.8-feature-release>` \| <details class="mm-sbom"><summary>SBOM</summary><ul><li><a href="https://github.com/mattermost/mattermost/releases/download/v11.8.4/sbom-mattermost-v11.8.4.json">Team Edition</a></li><li><a href="https://releases.mattermost.com/11.8.4/sbom-enterprise-v11.8.4.json">Enterprise</a></li></ul></details> | 2026-06-16 | 2026-09-15 |
| v11.7 [Download](https://releases.mattermost.com/11.7.7/mattermost-11.7.7-linux-amd64.tar.gz) \| {ref}`Changelog <release-v11.7-extended-support-release>` \| <details class="mm-sbom"><summary>SBOM</summary><ul><li><a href="https://github.com/mattermost/mattermost/releases/download/v11.7.7/sbom-mattermost-v11.7.7.json">Team Edition</a></li><li><a href="https://releases.mattermost.com/11.7.7/sbom-enterprise-v11.7.7.json">Enterprise</a></li></ul></details> | 2026-05-15 | 2027-05-15 {ref}`EXTENDED <release-types>` |
| v11.6 [Download](https://releases.mattermost.com/11.6.6/mattermost-11.6.6-linux-amd64.tar.gz) \| {ref}`Changelog <release-v11.6-feature-release>` \| <details class="mm-sbom"><summary>SBOM</summary><ul><li><a href="https://github.com/mattermost/mattermost/releases/download/v11.6.6/sbom-mattermost-v11.6.6.json">Team Edition</a></li><li><a href="https://releases.mattermost.com/11.6.6/sbom-enterprise-v11.6.6.json">Enterprise</a></li></ul></details> | 2026-04-16 | 2026-07-15 |
| v11.5 [Download](https://releases.mattermost.com/11.5.7/mattermost-11.5.7-linux-amd64.tar.gz) \| {ref}`Changelog <release-v11.5-feature-release>` \| <details class="mm-sbom"><summary>SBOM</summary><ul><li><a href="https://github.com/mattermost/mattermost/releases/download/v11.5.7/sbom-mattermost-v11.5.7.json">Team Edition</a></li><li><a href="https://releases.mattermost.com/11.5.7/sbom-enterprise-v11.5.7.json">Enterprise</a></li></ul></details> | 2026-03-16 | 2026-06-15 |
| v11.4 [Download](https://releases.mattermost.com/11.4.5/mattermost-11.4.5-linux-amd64.tar.gz) \| {ref}`Changelog <release-v11.4-feature-release>` \| <details class="mm-sbom"><summary>SBOM</summary><ul><li><a href="https://github.com/mattermost/mattermost/releases/download/v11.4.5/sbom-mattermost-v11.4.5.json">Team Edition</a></li><li><a href="https://releases.mattermost.com/11.4.5/sbom-enterprise-v11.4.5.json">Enterprise</a></li></ul></details> | 2026-02-16 | 2026-05-15 |
Expand All @@ -30,7 +30,7 @@ Mattermost releases a new server version on the 16th of each month in [binary fo
| v11.1 [Download](https://releases.mattermost.com/11.1.3/mattermost-11.1.3-linux-amd64.tar.gz) \| {ref}`Changelog <release-v11.1-feature-release>` \| <details class="mm-sbom"><summary>SBOM</summary><ul><li><a href="https://github.com/mattermost/mattermost/releases/download/v11.1.3/sbom-mattermost-v11.1.3.json">Team Edition</a></li><li><a href="https://releases.mattermost.com/11.1.3/sbom-enterprise-v11.1.3.json">Enterprise</a></li></ul></details> | 2025-11-14 | 2026-02-15 |
| v11.0 [Download](https://releases.mattermost.com/11.0.7/mattermost-11.0.7-linux-amd64.tar.gz) \| {ref}`Changelog <release-v11.0-major-release>` \| <details class="mm-sbom"><summary>SBOM</summary><ul><li><a href="https://github.com/mattermost/mattermost/releases/download/v11.0.7/sbom-mattermost-v11.0.7.json">Team Edition</a></li><li><a href="https://releases.mattermost.com/11.0.7/sbom-enterprise-v11.0.7.json">Enterprise</a></li></ul></details> | 2025-10-16 | 2026-01-15 |
| v10.12 [Download](https://releases.mattermost.com/10.12.4/mattermost-10.12.4-linux-amd64.tar.gz) \| {ref}`Changelog <release-v10.12-feature-release>` \| <details class="mm-sbom"><summary>SBOM</summary><ul><li><a href="https://github.com/mattermost/mattermost/releases/download/v10.12.4/sbom-mattermost-v10.12.4.json">Team Edition</a></li><li><a href="https://releases.mattermost.com/10.12.4/sbom-enterprise-v10.12.4.json">Enterprise</a></li></ul></details> | 2025-09-16 | 2025-12-15 |
| v10.11 [Download](https://releases.mattermost.com/10.11.21/mattermost-10.11.21-linux-amd64.tar.gz) \| {ref}`Changelog <release-v10.11-extended-support-release>` \| <details class="mm-sbom"><summary>SBOM</summary><ul><li><a href="https://github.com/mattermost/mattermost/releases/download/v10.11.21/sbom-mattermost-v10.11.21.json">Team Edition</a></li><li><a href="https://releases.mattermost.com/10.11.21/sbom-enterprise-v10.11.21.json">Enterprise</a></li></ul></details> | 2025-08-15 | 2026-08-15 {ref}`EXTENDED <release-types>` |
| v10.11 [Download](https://releases.mattermost.com/10.11.22/mattermost-10.11.22-linux-amd64.tar.gz) \| {ref}`Changelog <release-v10.11-extended-support-release>` \| <details class="mm-sbom"><summary>SBOM</summary><ul><li><a href="https://github.com/mattermost/mattermost/releases/download/v10.11.22/sbom-mattermost-v10.11.22.json">Team Edition</a></li><li><a href="https://releases.mattermost.com/10.11.22/sbom-enterprise-v10.11.22.json">Enterprise</a></li></ul></details> | 2025-08-15 | 2026-08-15 {ref}`EXTENDED <release-types>` |
Comment thread
amyblais marked this conversation as resolved.
| v10.10 [Download](https://releases.mattermost.com/10.10.3/mattermost-10.10.3-linux-amd64.tar.gz) \| {ref}`Changelog <release-v10.10-feature-release>` \| <details class="mm-sbom"><summary>SBOM</summary><ul><li><a href="https://github.com/mattermost/mattermost/releases/download/v10.10.3/sbom-mattermost-v10.10.3.json">Team Edition</a></li><li><a href="https://releases.mattermost.com/10.10.3/sbom-enterprise-v10.10.3.json">Enterprise</a></li></ul></details> | 2025-07-16 | 2025-10-15 |
| v10.9 [Download](https://releases.mattermost.com/10.9.5/mattermost-10.9.5-linux-amd64.tar.gz) \| {ref}`Changelog <release-v10.9-feature-release>` \| <details class="mm-sbom"><summary>SBOM</summary><ul><li><a href="https://github.com/mattermost/mattermost/releases/download/v10.9.5/sbom-mattermost-v10.9.5.json">Team Edition</a></li><li><a href="https://releases.mattermost.com/10.9.5/sbom-enterprise-v10.9.5.json">Enterprise</a></li></ul></details> | 2025-06-16 | 2025-09-15 |
| v10.8 [Download](https://releases.mattermost.com/10.8.4/mattermost-10.8.4-linux-amd64.tar.gz) \| {ref}`Changelog <release-v10.8-feature-release>` \| <details class="mm-sbom"><summary>SBOM</summary><ul><li><a href="https://github.com/mattermost/mattermost/releases/download/v10.8.4/sbom-mattermost-v10.8.4.json">Team Edition</a></li><li><a href="https://releases.mattermost.com/10.8.4/sbom-enterprise-v10.8.4.json">Enterprise</a></li></ul></details> | 2025-05-16 | 2025-08-15 |
Expand Down
8 changes: 8 additions & 0 deletions source/product-overview/mattermost-v10-changelog.md
Original file line number Diff line number Diff line change
Expand Up @@ -85,6 +85,14 @@ If you upgrade from a release earlier than v10.10, please read the other [Import
- Customers should not upgrade from ``>=10.11.17`` to ``<=11.7.2`` due to a bug that causes an issue with database migration numbers. The bug is fixed in v11.7.3.
```

- **10.11.22, released 2026-07-17**
- Mattermost v10.11.22 contains low to high severity level security fixes. [Upgrading](https://docs.mattermost.com/upgrade/upgrading-mattermost-server.html) to this release is recommended. Details will be posted on our [security updates page](https://mattermost.com/security-updates/) 30 days after release as per the [Mattermost Responsible Disclosure Policy](https://mattermost.com/security-vulnerability-report/).
- Pre-packaged Playbooks plugin version [v2.4.7](https://github.com/mattermost/mattermost-plugin-playbooks/releases/tag/v2.4.7).
- Pre-packaged Jira plugin version [v4.7.1](https://github.com/mattermost/mattermost-plugin-jira/releases/tag/v4.7.1).
- Pre-packaged Boards plugin version [v9.2.6](https://github.com/mattermost/mattermost-plugin-boards/releases/tag/v9.2.6).
- Tightened validation when updating channel member roles via the API.
- Tightened authorization on the OAuth deauthorization and personal access token management endpoints.
- Mattermost v10.11.22 contains no database or functional changes.
Comment thread
amyblais marked this conversation as resolved.
- **10.11.21, released 2026-06-26**
- Mattermost v10.11.21 contains low to medium severity level security fixes. [Upgrading](https://docs.mattermost.com/upgrade/upgrading-mattermost-server.html) to this release is recommended. Details will be posted on our [security updates page](https://mattermost.com/security-updates/) 30 days after release as per the [Mattermost Responsible Disclosure Policy](https://mattermost.com/security-vulnerability-report/).
- Pre-packaged GitLab plugin version [v1.12.3](https://github.com/mattermost/mattermost-plugin-gitlab/releases/tag/v1.12.3).
Expand Down
Loading
Loading