From 0c39e0fc45a1e1544b5b0c4aca3151acd003b1af Mon Sep 17 00:00:00 2001 From: Mehmet Yilmaz Date: Thu, 23 Jan 2025 07:27:39 +0000 Subject: [PATCH 1/5] Bump to citus 13.0.0 --- citus.spec | 7 +++++-- debian/changelog | 6 ++++++ pkgvars | 2 +- 3 files changed, 12 insertions(+), 3 deletions(-) diff --git a/citus.spec b/citus.spec index c7f29117..0c918c98 100644 --- a/citus.spec +++ b/citus.spec @@ -8,11 +8,11 @@ Summary: PostgreSQL-based distributed RDBMS Name: %{sname}%{?pkginfix}_%{pgmajorversion} Provides: %{sname}_%{pgmajorversion} Conflicts: %{sname}_%{pgmajorversion} -Version: 12.1.6.citus +Version: 13.0.0.citus Release: 1%{dist} License: AGPLv3 Group: Applications/Databases -Source0: https://github.com/citusdata/citus/archive/v12.1.6.tar.gz +Source0: https://github.com/citusdata/citus/archive/v13.0.0.tar.gz URL: https://github.com/citusdata/citus BuildRequires: postgresql%{pgmajorversion}-devel libcurl-devel Requires: postgresql%{pgmajorversion}-server @@ -112,6 +112,9 @@ fi %doc %{pginstdir}/doc/extension/NOTICE-%{sname} %changelog +* Thu Jan 23 2025 - Mehmet Yilmaz 13.0.0.citus-1 +- Official 13.0.0 release of Citus + * Tue Nov 26 2024 - Gurkan Indibay 12.1.6.citus-1 - Official 12.1.6 release of Citus diff --git a/debian/changelog b/debian/changelog index bebd3202..374586e9 100644 --- a/debian/changelog +++ b/debian/changelog @@ -1,3 +1,9 @@ +citus (13.0.0.citus-1) stable; urgency=low + + * Official 13.0.0 release of Citus + + -- Mehmet Yilmaz Thu, 23 Jan 2025 07:27:39 +0000 + citus (12.1.6.citus-1) stable; urgency=low * Official 12.1.6 release of Citus diff --git a/pkgvars b/pkgvars index 648fc402..5251c91b 100644 --- a/pkgvars +++ b/pkgvars @@ -1,5 +1,5 @@ pkgname=citus pkgdesc='Citus (Open-Source)' -pkglatest=12.1.6.citus-1 +pkglatest=13.0.0.citus-1 nightlyref=main versioning=fancy From 94e785438f37a1c9f779bcd22d7194961d6f2f51 Mon Sep 17 00:00:00 2001 From: Mehmet Yilmaz Date: Thu, 23 Jan 2025 10:41:36 +0300 Subject: [PATCH 2/5] Add support for PostgreSQL 17 in version 13.0 matrix --- postgres-matrix.yml | 2 ++ 1 file changed, 2 insertions(+) diff --git a/postgres-matrix.yml b/postgres-matrix.yml index 5e75b321..f4d6c37b 100644 --- a/postgres-matrix.yml +++ b/postgres-matrix.yml @@ -20,3 +20,5 @@ version_matrix: postgres_versions: [ 14, 15 ] - 12.1: postgres_versions: [ 14, 15, 16 ] + - 13.0: + postgres_versions: [ 14, 15, 16, 17 ] From a7da09386edbbc0b27be72e14e8c9f93f16bb2c4 Mon Sep 17 00:00:00 2001 From: Mehmet Yilmaz Date: Thu, 23 Jan 2025 10:52:03 +0300 Subject: [PATCH 3/5] Remove support for EL7 and OL7 platforms in CI workflows and exclusion lists --- .github/workflows/build-citus-community-nightlies.yml | 2 -- .github/workflows/build-package.yml | 2 -- pg_exclude.yml | 4 ---- 3 files changed, 8 deletions(-) diff --git a/.github/workflows/build-citus-community-nightlies.yml b/.github/workflows/build-citus-community-nightlies.yml index 75a39031..d99826ac 100644 --- a/.github/workflows/build-citus-community-nightlies.yml +++ b/.github/workflows/build-citus-community-nightlies.yml @@ -23,8 +23,6 @@ jobs: fail-fast: false matrix: platform: - - el/7 - - ol/7 - el/8 - debian/buster - debian/bullseye diff --git a/.github/workflows/build-package.yml b/.github/workflows/build-package.yml index de6be72a..60e815a6 100644 --- a/.github/workflows/build-package.yml +++ b/.github/workflows/build-package.yml @@ -23,10 +23,8 @@ jobs: fail-fast: false matrix: platform: - - el/7 - el/8 - el/9 - - ol/7 - ol/8 - ol/9 - debian/buster diff --git a/pg_exclude.yml b/pg_exclude.yml index 970615e7..00dcfbc5 100644 --- a/pg_exclude.yml +++ b/pg_exclude.yml @@ -1,7 +1,3 @@ exclude: nightly: - el/7: [16] - ol/7: [16] release: - el/7: [16] - ol/7: [16] From e3facfc58f91cb3e2a4a3f412531b30a45302f3e Mon Sep 17 00:00:00 2001 From: Mehmet Yilmaz Date: Thu, 23 Jan 2025 10:55:23 +0300 Subject: [PATCH 4/5] Add EL7 and OL7 exclusions for nightly and release in pg_exclude.yml --- pg_exclude.yml | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/pg_exclude.yml b/pg_exclude.yml index 00dcfbc5..970615e7 100644 --- a/pg_exclude.yml +++ b/pg_exclude.yml @@ -1,3 +1,7 @@ exclude: nightly: + el/7: [16] + ol/7: [16] release: + el/7: [16] + ol/7: [16] From c8a7c477adb8ea319e3c678fc1670fb7ebd361e7 Mon Sep 17 00:00:00 2001 From: Mehmet Yilmaz Date: Thu, 23 Jan 2025 10:56:22 +0300 Subject: [PATCH 5/5] Remove Ubuntu Bionic from CI workflows for nightly and package builds --- .github/workflows/build-citus-community-nightlies.yml | 1 - .github/workflows/build-package.yml | 1 - 2 files changed, 2 deletions(-) diff --git a/.github/workflows/build-citus-community-nightlies.yml b/.github/workflows/build-citus-community-nightlies.yml index d99826ac..f4797103 100644 --- a/.github/workflows/build-citus-community-nightlies.yml +++ b/.github/workflows/build-citus-community-nightlies.yml @@ -27,7 +27,6 @@ jobs: - debian/buster - debian/bullseye - debian/bookworm - - ubuntu/bionic - ubuntu/focal - ubuntu/jammy diff --git a/.github/workflows/build-package.yml b/.github/workflows/build-package.yml index 60e815a6..0e6e4682 100644 --- a/.github/workflows/build-package.yml +++ b/.github/workflows/build-package.yml @@ -30,7 +30,6 @@ jobs: - debian/buster - debian/bullseye - debian/bookworm - - ubuntu/bionic - ubuntu/focal - ubuntu/jammy