Skip to content

Commit 244ef11

Browse files
committed
Platform version bump to 25.4.0. PG versions bumped to 17.7, 16.11 and 15.15
1 parent ed23935 commit 244ef11

File tree

4 files changed

+14
-11
lines changed

4 files changed

+14
-11
lines changed

cli/scripts/install.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33

44
import sys, os, tarfile, platform
55

6-
VER = "25.3.0"
6+
VER = "25.4.0"
77
REPO = os.getenv("REPO", "https://downloads.pgedge.com/platform/repos/download")
88

99
if sys.version_info < (3, 9):

cli/scripts/util.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
import os
55
import time
66

7-
MY_VERSION = "25.3.0"
7+
MY_VERSION = "25.4.0"
88
MY_CODENAME = ""
99

1010
DEFAULT_PG = "17"

env.sh

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
1-
hubV=25.3.0
2-
hubVV=25.3.0
1+
hubV=25.4.0
2+
hubVV=25.4.0
33

44
aceV=$hubV
55
kirkV=$hubV
@@ -23,13 +23,13 @@ removeComponentFromOut=spock60
2323
lolorV=1.2.1-1
2424
snwflkV=2.2-2
2525

26-
P17=17.6-1
26+
P17=17.7-1
2727
P171=17.0-1
2828

29-
P16=16.10-1
29+
P16=16.11-1
3030
P161=16.4-2
3131

32-
P15=15.14-1
32+
P15=15.15-1
3333
P151=15.8-2
3434

3535
vectorV=0.8.0-2

src/conf/versions.sql

Lines changed: 7 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11

22
DROP TABLE IF EXISTS hub;
33
CREATE TABLE hub(v TEXT NOT NULL PRIMARY KEY, c TEXT NOT NULL, d TEXT NOT NULL);
4-
INSERT INTO hub VALUES ('25.3.0', '', '20251020');
4+
INSERT INTO hub VALUES ('25.4.0', '', '20251113');
55

66
DROP VIEW IF EXISTS v_versions;
77
DROP VIEW IF EXISTS v_products;
@@ -152,17 +152,20 @@ INSERT INTO projects VALUES ('pg', 'pge', 1, 5432, '', 1, 'https://github.com/po
152152

153153
INSERT INTO releases VALUES ('pg15', 2, 'pg', '', '', 'prod',
154154
'<font size=-1>New in <a href=https://www.postgresql.org/docs/15/release-15.html>2022</a></font>', 1, 'POSTGRES', '', '');
155-
INSERT INTO versions VALUES ('pg15', '15.14-1', 'amd, arm', 1, '20250815','', '', '');
155+
INSERT INTO versions VALUES ('pg15', '15.15-1', 'amd, arm', 1, '20251113','', '', '');
156+
INSERT INTO versions VALUES ('pg15', '15.14-1', 'amd, arm', 0, '20250815','', '', '');
156157
INSERT INTO versions VALUES ('pg15', '15.13-2', 'amd, arm', 0, '20250715','', '', '');
157158

158159
INSERT INTO releases VALUES ('pg16', 2, 'pg', '', '', 'prod',
159160
'<font size=-1>New in <a href=https://www.postgresql.org/docs/16/release-16.html>2023!</a></font>', 1, 'POSTGRES', '', '');
160-
INSERT INTO versions VALUES ('pg16', '16.10-1', 'amd, arm', 1, '20250815','', '', '');
161+
INSERT INTO versions VALUES ('pg16', '16.11-1', 'amd, arm', 1, '20251113','', '', '');
162+
INSERT INTO versions VALUES ('pg16', '16.10-1', 'amd, arm', 0, '20250815','', '', '');
161163
INSERT INTO versions VALUES ('pg16', '16.9-2', 'amd, arm', 0, '20250715','', '', '');
162164

163165
INSERT INTO releases VALUES ('pg17', 2, 'pg', '', '', 'prod',
164166
'<font size=-1>New in <a href=https://www.postgresql.org/docs/17/release-17.html>2024!</a></font>', 1, 'POSTGRES', '', '');
165-
INSERT INTO versions VALUES ('pg17', '17.6-1', 'amd, arm', 1, '20250815','', '', '');
167+
INSERT INTO versions VALUES ('pg17', '17.7-1', 'amd, arm', 1, '20251113','', '', '');
168+
INSERT INTO versions VALUES ('pg17', '17.6-1', 'amd, arm', 0, '20250815','', '', '');
166169
INSERT INTO versions VALUES ('pg17', '17.5-2', 'amd, arm', 0, '20250715','', '', '');
167170

168171
-- ## ORAFCE #############################

0 commit comments

Comments
 (0)