diff --git a/cli/scripts/install.py b/cli/scripts/install.py
index 797abd4e..62b6b409 100644
--- a/cli/scripts/install.py
+++ b/cli/scripts/install.py
@@ -3,7 +3,7 @@
import sys, os, tarfile, platform
-VER = "25.3.0"
+VER = "25.4.0"
REPO = os.getenv("REPO", "https://downloads.pgedge.com/platform/repos/download")
if sys.version_info < (3, 9):
diff --git a/cli/scripts/util.py b/cli/scripts/util.py
index 8c62527d..bcc0fff0 100644
--- a/cli/scripts/util.py
+++ b/cli/scripts/util.py
@@ -4,7 +4,7 @@
import os
import time
-MY_VERSION = "25.3.0"
+MY_VERSION = "25.4.0"
MY_CODENAME = ""
DEFAULT_PG = "17"
diff --git a/env.sh b/env.sh
index 45bf8d2b..1797f3ab 100755
--- a/env.sh
+++ b/env.sh
@@ -1,5 +1,5 @@
-hubV=25.3.0
-hubVV=25.3.0
+hubV=25.4.0
+hubVV=25.4.0
aceV=$hubV
kirkV=$hubV
@@ -23,13 +23,13 @@ removeComponentFromOut=spock60
lolorV=1.2.1-1
snwflkV=2.2-2
-P17=17.6-1
+P17=17.7-1
P171=17.0-1
-P16=16.10-1
+P16=16.11-1
P161=16.4-2
-P15=15.14-1
+P15=15.15-1
P151=15.8-2
vectorV=0.8.0-2
diff --git a/src/conf/versions.sql b/src/conf/versions.sql
index 67755a67..2d860c4b 100644
--- a/src/conf/versions.sql
+++ b/src/conf/versions.sql
@@ -1,7 +1,7 @@
DROP TABLE IF EXISTS hub;
CREATE TABLE hub(v TEXT NOT NULL PRIMARY KEY, c TEXT NOT NULL, d TEXT NOT NULL);
-INSERT INTO hub VALUES ('25.3.0', '', '20251020');
+INSERT INTO hub VALUES ('25.4.0', '', '20251113');
DROP VIEW IF EXISTS v_versions;
DROP VIEW IF EXISTS v_products;
@@ -152,17 +152,20 @@ INSERT INTO projects VALUES ('pg', 'pge', 1, 5432, '', 1, 'https://github.com/po
INSERT INTO releases VALUES ('pg15', 2, 'pg', '', '', 'prod',
'New in 2022', 1, 'POSTGRES', '', '');
-INSERT INTO versions VALUES ('pg15', '15.14-1', 'amd, arm', 1, '20250815','', '', '');
+INSERT INTO versions VALUES ('pg15', '15.15-1', 'amd, arm', 1, '20251113','', '', '');
+INSERT INTO versions VALUES ('pg15', '15.14-1', 'amd, arm', 0, '20250815','', '', '');
INSERT INTO versions VALUES ('pg15', '15.13-2', 'amd, arm', 0, '20250715','', '', '');
INSERT INTO releases VALUES ('pg16', 2, 'pg', '', '', 'prod',
'New in 2023!', 1, 'POSTGRES', '', '');
-INSERT INTO versions VALUES ('pg16', '16.10-1', 'amd, arm', 1, '20250815','', '', '');
+INSERT INTO versions VALUES ('pg16', '16.11-1', 'amd, arm', 1, '20251113','', '', '');
+INSERT INTO versions VALUES ('pg16', '16.10-1', 'amd, arm', 0, '20250815','', '', '');
INSERT INTO versions VALUES ('pg16', '16.9-2', 'amd, arm', 0, '20250715','', '', '');
INSERT INTO releases VALUES ('pg17', 2, 'pg', '', '', 'prod',
'New in 2024!', 1, 'POSTGRES', '', '');
-INSERT INTO versions VALUES ('pg17', '17.6-1', 'amd, arm', 1, '20250815','', '', '');
+INSERT INTO versions VALUES ('pg17', '17.7-1', 'amd, arm', 1, '20251113','', '', '');
+INSERT INTO versions VALUES ('pg17', '17.6-1', 'amd, arm', 0, '20250815','', '', '');
INSERT INTO versions VALUES ('pg17', '17.5-2', 'amd, arm', 0, '20250715','', '', '');
-- ## ORAFCE #############################