Skip to content

Commit 86c8a07

Browse files
committed
Platform version bump to 25.3.0, lolor bump to 1.2.1
1 parent 6cf3544 commit 86c8a07

File tree

4 files changed

+21
-17
lines changed

4 files changed

+21
-17
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.2.2"
6+
VER = "25.3.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.2.2"
7+
MY_VERSION = "25.3.0"
88
MY_CODENAME = ""
99

1010
DEFAULT_PG = "17"

env.sh

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

44
aceV=$hubV
55
kirkV=$hubV
@@ -10,7 +10,7 @@ ctlibsV=1.7
1010

1111
spock60V=6.0.0-devel-1
1212

13-
spock50V=5.0.2-1
13+
spock50V=5.0.4-1
1414

1515
spock40V=4.0.10-1
1616

@@ -20,7 +20,7 @@ spock33V=3.3.6-1
2020
# This variable is ignored in current mode builds, which include all components.
2121
removeComponentFromOut=spock60
2222

23-
lolorV=1.2-2
23+
lolorV=1.2.1-1
2424
snwflkV=2.2-2
2525

2626
P17=17.6-1

src/conf/versions.sql

Lines changed: 15 additions & 11 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.2.2', '', '20250918');
4+
INSERT INTO hub VALUES ('25.3.0', '', '20251020');
55

66
DROP VIEW IF EXISTS v_versions;
77
DROP VIEW IF EXISTS v_products;
@@ -335,28 +335,32 @@ INSERT INTO releases VALUES ('spock50-pg15', 4, 'spock', 'Spock', '', 'prod', ''
335335
INSERT INTO releases VALUES ('spock50-pg16', 4, 'spock', 'Spock', '', 'prod', '', 1, 'POSTGRES', '', '');
336336
INSERT INTO releases VALUES ('spock50-pg17', 4, 'spock', 'Spock', '', 'prod', '', 1, 'POSTGRES', '', '');
337337

338-
INSERT INTO versions VALUES ('spock50-pg15', '5.0.2-1', 'amd, arm', 1, '20250918', 'pg15', '', '');
339-
INSERT INTO versions VALUES ('spock50-pg16', '5.0.2-1', 'amd, arm', 1, '20250918', 'pg16', '', '');
340-
INSERT INTO versions VALUES ('spock50-pg17', '5.0.2-1', 'amd, arm', 1, '20250918', 'pg17', '', '');
338+
INSERT INTO versions VALUES ('spock50-pg15', '5.0.4-1', 'amd, arm', 1, '20251020', 'pg15', '', '');
339+
INSERT INTO versions VALUES ('spock50-pg16', '5.0.4-1', 'amd, arm', 1, '20251020', 'pg16', '', '');
340+
INSERT INTO versions VALUES ('spock50-pg17', '5.0.4-1', 'amd, arm', 1, '20251020', 'pg17', '', '');
341+
342+
INSERT INTO versions VALUES ('spock50-pg15', '5.0.2-1', 'amd, arm', 0, '20250918', 'pg15', '', '');
343+
INSERT INTO versions VALUES ('spock50-pg16', '5.0.2-1', 'amd, arm', 0, '20250918', 'pg16', '', '');
344+
INSERT INTO versions VALUES ('spock50-pg17', '5.0.2-1', 'amd, arm', 0, '20250918', 'pg17', '', '');
341345

342346
INSERT INTO versions VALUES ('spock50-pg15', '5.0.1-1', 'amd, arm', 0, '20250827', 'pg15', '', '');
343347
INSERT INTO versions VALUES ('spock50-pg16', '5.0.1-1', 'amd, arm', 0, '20250827', 'pg16', '', '');
344348
INSERT INTO versions VALUES ('spock50-pg17', '5.0.1-1', 'amd, arm', 0, '20250827', 'pg17', '', '');
345349

346-
INSERT INTO versions VALUES ('spock50-pg15', '5.0.0-1', 'amd, arm', 0, '20250715', 'pg15', '', '');
347-
INSERT INTO versions VALUES ('spock50-pg16', '5.0.0-1', 'amd, arm', 0, '20250715', 'pg16', '', '');
348-
INSERT INTO versions VALUES ('spock50-pg17', '5.0.0-1', 'amd, arm', 0, '20250715', 'pg17', '', '');
349-
350350
-- ## LOLOR #############################
351351
INSERT INTO projects VALUES ('lolor', 'pge', 4, 0, '', 1, 'https://github.com/pgedge/lolor/tags',
352352
'spock', 1, 'spock.png', 'Logical Replication of Large Objects', 'https://github.com/pgedge/lolor/#spock', 'lola, lolah, kinks');
353353
INSERT INTO releases VALUES ('lolor-pg15', 4, 'lolor', 'LgObjLOgicalRep', '', 'prod', '', 1, 'POSTGRES', '', '');
354354
INSERT INTO releases VALUES ('lolor-pg16', 4, 'lolor', 'LgObjLOgicalRep', '', 'prod', '', 1, 'POSTGRES', '', '');
355355
INSERT INTO releases VALUES ('lolor-pg17', 4, 'lolor', 'LgObjLOgicalRep', '', 'prod', '', 1, 'POSTGRES', '', '');
356356

357-
INSERT INTO versions VALUES ('lolor-pg15', '1.2-2', 'amd, arm', 1, '20250815', 'pg15', '', '');
358-
INSERT INTO versions VALUES ('lolor-pg16', '1.2-2', 'amd, arm', 1, '20250815', 'pg16', '', '');
359-
INSERT INTO versions VALUES ('lolor-pg17', '1.2-2', 'amd, arm', 1, '20250815', 'pg17', '', '');
357+
INSERT INTO versions VALUES ('lolor-pg15', '1.2.1-1', 'amd, arm', 1, '20251020', 'pg15', '', '');
358+
INSERT INTO versions VALUES ('lolor-pg16', '1.2.1-1', 'amd, arm', 1, '20251020', 'pg16', '', '');
359+
INSERT INTO versions VALUES ('lolor-pg17', '1.2.1-1', 'amd, arm', 1, '20251020', 'pg17', '', '');
360+
361+
INSERT INTO versions VALUES ('lolor-pg15', '1.2-2', 'amd, arm', 0, '20250815', 'pg15', '', '');
362+
INSERT INTO versions VALUES ('lolor-pg16', '1.2-2', 'amd, arm', 0, '20250815', 'pg16', '', '');
363+
INSERT INTO versions VALUES ('lolor-pg17', '1.2-2', 'amd, arm', 0, '20250815', 'pg17', '', '');
360364

361365
-- ## PERMISSIONS #######################
362366
INSERT INTO projects VALUES ('permissions', 'ext', 4, 1, '', 3, 'https://github.com/cybertec-postgresql/permissions',

0 commit comments

Comments
 (0)