diff --git a/_data/shared_chrome.json b/_data/shared_chrome.json
index 70b036fc07..bd5c9b2f27 100644
--- a/_data/shared_chrome.json
+++ b/_data/shared_chrome.json
@@ -1,7 +1,7 @@
{
"$schema": "https://www.metabase.com/shared/chrome.schema.json",
"version": 1,
- "generated_at": "2026-07-14T21:52:03+00:00",
+ "generated_at": "2026-07-15T20:23:58+00:00",
"origin": "https://www.metabase.com",
"stylesheets": [
{
@@ -172,6 +172,6 @@
}
}
],
- "header_html": "\n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n",
+ "header_html": "\n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n",
"footer_html": "\n \n
\n \n
\n\n\n\n\n\n\n\n\n\n\n"
}
diff --git a/_docs/latest/developers-guide/build.md b/_docs/latest/developers-guide/build.md
index 104f08e903..71f84f9724 100644
--- a/_docs/latest/developers-guide/build.md
+++ b/_docs/latest/developers-guide/build.md
@@ -27,7 +27,7 @@ To complete any build of the Metabase code, you'll need to install the following
1. [Clojure (https://clojure.org)](https://clojure.org/guides/getting_started) - install the latest release by following the guide depending on your OS
-2. [Java Development Kit JDK (https://adoptopenjdk.net/releases.html)](https://adoptopenjdk.net/releases.html) - you need to install JDK 21 ([more info on Java versions](../installation-and-operation/running-the-metabase-jar-file))
+2. [Java Development Kit JDK (https://adoptopenjdk.net/releases.html)](https://adoptopenjdk.net/releases.html) - you need to install JDK 25 ([more info on Java versions](../installation-and-operation/running-the-metabase-jar-file))
3. [Node.js (https://nodejs.org/)](https://nodejs.org/) - latest LTS release
@@ -42,7 +42,7 @@ curl -fsSL https://bun.sh/install | bash
On a most recent stable Ubuntu/Debian, all the tools above, with the exception of Clojure and Bun, can be installed by using:
```
-sudo apt install openjdk-21-jdk nodejs
+sudo apt install openjdk-25-jdk nodejs
```
If you have multiple JDK versions installed in your machine, be sure to switch your JDK before building with:
@@ -51,7 +51,7 @@ If you have multiple JDK versions installed in your machine, be sure to switch y
sudo update-alternatives --config java
```
-Then select Java 21 in the menu.
+Then select Java 25 in the menu.
### Running on M1 Apple computers
diff --git a/_docs/latest/installation-and-operation/running-the-metabase-jar-file.md b/_docs/latest/installation-and-operation/running-the-metabase-jar-file.md
index 93b8a455cd..1e4a0a9e53 100644
--- a/_docs/latest/installation-and-operation/running-the-metabase-jar-file.md
+++ b/_docs/latest/installation-and-operation/running-the-metabase-jar-file.md
@@ -54,7 +54,7 @@ You may already have Java installed. To check the version, open a terminal and r
java -version
```
-If Java isn't installed, you'll need to install Java before you can run Metabase. We recommend version 21 of JRE from [Eclipse Temurin](https://adoptium.net/) with HotSpot JVM. You can run Metabase wherever Java 21 runs. Earlier Java versions aren't supported. The particular processor architecture shouldn't matter (although we only test Metabase for x86 and ARM).
+If Java isn't installed, you'll need to install Java before you can run Metabase. We recommend version 25 of JRE from [Eclipse Temurin](https://adoptium.net/) with HotSpot JVM. You can run Metabase wherever Java 25 runs. Earlier Java versions aren't supported. The particular processor architecture shouldn't matter (although we only test Metabase for x86 and ARM).
### 2. Download Metabase
diff --git a/_docs/latest/troubleshooting-guide/running.md b/_docs/latest/troubleshooting-guide/running.md
index 98ee232f79..fb3e319cd1 100644
--- a/_docs/latest/troubleshooting-guide/running.md
+++ b/_docs/latest/troubleshooting-guide/running.md
@@ -17,9 +17,9 @@ Metabase runs on the Java Virtual Machine (JVM), and depending on how it's confi
## Java version
-Metabase should be run on Java version 21 (older versions are unsupported).
+Metabase should be run on Java version 25 (older versions are unsupported).
-When searching for versions of Java, always use the latest minor version of the major version you're choosing. E.g., when choosing between Java 21.0.1 and Java 21.0.4, choose the latest version (in this case, 21.0.4).
+When searching for versions of Java, always use the latest minor version of the major version you're choosing. E.g., when choosing between Java 25.0.1 and Java 25.0.3, choose the latest version (in this case, 25.0.3).
We recommend running only one version of Java on a single server, because running more than one version of Java on a single server can cause application problems. If you need to run multiple applications that each require a different java version, consider using containers (as containers were meant to solve this problem). Otherwise, just make sure that you can run all your applications with a single Java version.
diff --git a/_docs/v0.62/developers-guide/build.md b/_docs/v0.62/developers-guide/build.md
index 808e42b63e..316631e9ae 100644
--- a/_docs/v0.62/developers-guide/build.md
+++ b/_docs/v0.62/developers-guide/build.md
@@ -25,7 +25,7 @@ To complete any build of the Metabase code, you'll need to install the following
1. [Clojure (https://clojure.org)](https://clojure.org/guides/getting_started) - install the latest release by following the guide depending on your OS
-2. [Java Development Kit JDK (https://adoptopenjdk.net/releases.html)](https://adoptopenjdk.net/releases.html) - you need to install JDK 21 ([more info on Java versions](../installation-and-operation/running-the-metabase-jar-file))
+2. [Java Development Kit JDK (https://adoptopenjdk.net/releases.html)](https://adoptopenjdk.net/releases.html) - you need to install JDK 25 ([more info on Java versions](../installation-and-operation/running-the-metabase-jar-file))
3. [Node.js (https://nodejs.org/)](https://nodejs.org/) - latest LTS release
@@ -40,7 +40,7 @@ curl -fsSL https://bun.sh/install | bash
On a most recent stable Ubuntu/Debian, all the tools above, with the exception of Clojure and Bun, can be installed by using:
```
-sudo apt install openjdk-21-jdk nodejs
+sudo apt install openjdk-25-jdk nodejs
```
If you have multiple JDK versions installed in your machine, be sure to switch your JDK before building with:
@@ -49,7 +49,7 @@ If you have multiple JDK versions installed in your machine, be sure to switch y
sudo update-alternatives --config java
```
-Then select Java 21 in the menu.
+Then select Java 25 in the menu.
### Running on M1 Apple computers
diff --git a/_docs/v0.62/installation-and-operation/running-the-metabase-jar-file.md b/_docs/v0.62/installation-and-operation/running-the-metabase-jar-file.md
index 4210713044..f4120437ab 100644
--- a/_docs/v0.62/installation-and-operation/running-the-metabase-jar-file.md
+++ b/_docs/v0.62/installation-and-operation/running-the-metabase-jar-file.md
@@ -52,7 +52,7 @@ You may already have Java installed. To check the version, open a terminal and r
java -version
```
-If Java isn't installed, you'll need to install Java before you can run Metabase. We recommend version 21 of JRE from [Eclipse Temurin](https://adoptium.net/) with HotSpot JVM. You can run Metabase wherever Java 21 runs. Earlier Java versions aren't supported. The particular processor architecture shouldn't matter (although we only test Metabase for x86 and ARM).
+If Java isn't installed, you'll need to install Java before you can run Metabase. We recommend version 25 of JRE from [Eclipse Temurin](https://adoptium.net/) with HotSpot JVM. You can run Metabase wherever Java 25 runs. Earlier Java versions aren't supported. The particular processor architecture shouldn't matter (although we only test Metabase for x86 and ARM).
### 2. Download Metabase
diff --git a/_docs/v0.62/troubleshooting-guide/running.md b/_docs/v0.62/troubleshooting-guide/running.md
index 2dc859db13..a2709c022c 100644
--- a/_docs/v0.62/troubleshooting-guide/running.md
+++ b/_docs/v0.62/troubleshooting-guide/running.md
@@ -15,9 +15,9 @@ Metabase runs on the Java Virtual Machine (JVM), and depending on how it's confi
## Java version
-Metabase should be run on Java version 21 (older versions are unsupported).
+Metabase should be run on Java version 25 (older versions are unsupported).
-When searching for versions of Java, always use the latest minor version of the major version you're choosing. E.g., when choosing between Java 21.0.1 and Java 21.0.4, choose the latest version (in this case, 21.0.4).
+When searching for versions of Java, always use the latest minor version of the major version you're choosing. E.g., when choosing between Java 25.0.1 and Java 25.0.3, choose the latest version (in this case, 25.0.3).
We recommend running only one version of Java on a single server, because running more than one version of Java on a single server can cause application problems. If you need to run multiple applications that each require a different java version, consider using containers (as containers were meant to solve this problem). Otherwise, just make sure that you can run all your applications with a single Java version.