All of lore.kernel.org
 help / color / mirror / Atom feed
* [Buildroot] [PATCH/next 1/3] package/timescaledb: bump version to 2.5.0
@ 2021-11-13 17:07 Bernd Kuhls
  2021-11-13 17:07 ` [Buildroot] [PATCH/next v2 2/3] package/postgresql: security bump version to 13.5 Bernd Kuhls
                   ` (2 more replies)
  0 siblings, 3 replies; 4+ messages in thread
From: Bernd Kuhls @ 2021-11-13 17:07 UTC (permalink / raw)
  To: buildroot; +Cc: Maxim Kochetkov, Peter Seiderer, Will Newton

This version adds support for PostgreSQL 14.

Release notes:
https://github.com/timescale/timescaledb/releases/tag/2.5.0

Signed-off-by: Bernd Kuhls <bernd.kuhls@t-online.de>
---
Forgot to add this patch to initial series.

 package/timescaledb/timescaledb.hash | 2 +-
 package/timescaledb/timescaledb.mk   | 2 +-
 2 files changed, 2 insertions(+), 2 deletions(-)

diff --git a/package/timescaledb/timescaledb.hash b/package/timescaledb/timescaledb.hash
index 4e3e91e152..88390bc674 100644
--- a/package/timescaledb/timescaledb.hash
+++ b/package/timescaledb/timescaledb.hash
@@ -1,3 +1,3 @@
 # Locally calculated
-sha256  b206a376251259eb745eee819e7a853b3fbab9dc8443303714484a0fef89a2a4  timescaledb-2.4.2.tar.gz
+sha256  9d67fe70aa01cea5feceb084adc01eca8a082d847f917e68e073ab67e497af76  timescaledb-2.5.0.tar.gz
 sha256  0378e0948feefd85f579319c74d6e2b671194037f550c7176ef26649d94c895b  LICENSE
diff --git a/package/timescaledb/timescaledb.mk b/package/timescaledb/timescaledb.mk
index 4adf2bdbb3..39ba9e6ef4 100644
--- a/package/timescaledb/timescaledb.mk
+++ b/package/timescaledb/timescaledb.mk
@@ -4,7 +4,7 @@
 #
 ################################################################################
 
-TIMESCALEDB_VERSION = 2.4.2
+TIMESCALEDB_VERSION = 2.5.0
 TIMESCALEDB_SITE = $(call github,timescale,timescaledb,$(TIMESCALEDB_VERSION))
 TIMESCALEDB_LICENSE = Apache-2.0
 TIMESCALEDB_LICENSE_FILES = LICENSE
-- 
2.30.2

_______________________________________________
buildroot mailing list
buildroot@buildroot.org
https://lists.buildroot.org/mailman/listinfo/buildroot

^ permalink raw reply related	[flat|nested] 4+ messages in thread

* [Buildroot] [PATCH/next v2 2/3] package/postgresql: security bump version to 13.5
  2021-11-13 17:07 [Buildroot] [PATCH/next 1/3] package/timescaledb: bump version to 2.5.0 Bernd Kuhls
@ 2021-11-13 17:07 ` Bernd Kuhls
  2021-11-13 17:07 ` [Buildroot] [PATCH/next v2 3/3] package/postgresql: bump version to 14.1 Bernd Kuhls
  2021-11-14 13:53 ` [Buildroot] [PATCH/next 1/3] package/timescaledb: bump version to 2.5.0 Thomas Petazzoni
  2 siblings, 0 replies; 4+ messages in thread
From: Bernd Kuhls @ 2021-11-13 17:07 UTC (permalink / raw)
  To: buildroot; +Cc: Maxim Kochetkov, Peter Seiderer, Will Newton

Release notes:
https://www.postgresql.org/about/news/postgresql-141-135-129-1114-1019-and-9624-released-2349/

Fixes CVE-2021-23214 and CVE-2021-23222.

Signed-off-by: Bernd Kuhls <bernd.kuhls@t-online.de>
---
v2: no changes, added bump for timescaledb to patch series.

 package/postgresql/postgresql.hash | 4 ++--
 package/postgresql/postgresql.mk   | 2 +-
 2 files changed, 3 insertions(+), 3 deletions(-)

diff --git a/package/postgresql/postgresql.hash b/package/postgresql/postgresql.hash
index 2dcc1823d6..7e25c08aad 100644
--- a/package/postgresql/postgresql.hash
+++ b/package/postgresql/postgresql.hash
@@ -1,5 +1,5 @@
-# From https://ftp.postgresql.org/pub/source/v13.4/postgresql-13.4.tar.bz2.sha256
-sha256  ea93e10390245f1ce461a54eb5f99a48d8cabd3a08ce4d652ec2169a357bc0cd  postgresql-13.4.tar.bz2
+# From https://ftp.postgresql.org/pub/source/v13.5/postgresql-13.5.tar.bz2.sha256
+sha256  9b81067a55edbaabc418aacef457dd8477642827499560b00615a6ea6c13f6b3  postgresql-13.5.tar.bz2
 
 # License file, Locally calculated
 sha256  31ccadc0a70e8e0e8a35c5833567b64388dfe34987d962e1911554e271294105  COPYRIGHT
diff --git a/package/postgresql/postgresql.mk b/package/postgresql/postgresql.mk
index 3b6c6e21e7..e40ab45c20 100644
--- a/package/postgresql/postgresql.mk
+++ b/package/postgresql/postgresql.mk
@@ -4,7 +4,7 @@
 #
 ################################################################################
 
-POSTGRESQL_VERSION = 13.4
+POSTGRESQL_VERSION = 13.5
 POSTGRESQL_SOURCE = postgresql-$(POSTGRESQL_VERSION).tar.bz2
 POSTGRESQL_SITE = https://ftp.postgresql.org/pub/source/v$(POSTGRESQL_VERSION)
 POSTGRESQL_LICENSE = PostgreSQL
-- 
2.30.2

_______________________________________________
buildroot mailing list
buildroot@buildroot.org
https://lists.buildroot.org/mailman/listinfo/buildroot

^ permalink raw reply related	[flat|nested] 4+ messages in thread

* [Buildroot] [PATCH/next v2 3/3] package/postgresql: bump version to 14.1
  2021-11-13 17:07 [Buildroot] [PATCH/next 1/3] package/timescaledb: bump version to 2.5.0 Bernd Kuhls
  2021-11-13 17:07 ` [Buildroot] [PATCH/next v2 2/3] package/postgresql: security bump version to 13.5 Bernd Kuhls
@ 2021-11-13 17:07 ` Bernd Kuhls
  2021-11-14 13:53 ` [Buildroot] [PATCH/next 1/3] package/timescaledb: bump version to 2.5.0 Thomas Petazzoni
  2 siblings, 0 replies; 4+ messages in thread
From: Bernd Kuhls @ 2021-11-13 17:07 UTC (permalink / raw)
  To: buildroot; +Cc: Maxim Kochetkov, Peter Seiderer, Will Newton

Release notes:
https://www.postgresql.org/about/news/postgresql-14-released-2318/
https://www.postgresql.org/about/news/postgresql-141-135-129-1114-1019-and-9624-released-2349/

Signed-off-by: Bernd Kuhls <bernd.kuhls@t-online.de>
---
v2: no changes, added bump for timescaledb to patch series.

 package/postgresql/postgresql.hash | 4 ++--
 package/postgresql/postgresql.mk   | 2 +-
 2 files changed, 3 insertions(+), 3 deletions(-)

diff --git a/package/postgresql/postgresql.hash b/package/postgresql/postgresql.hash
index 7e25c08aad..c2017a1226 100644
--- a/package/postgresql/postgresql.hash
+++ b/package/postgresql/postgresql.hash
@@ -1,5 +1,5 @@
-# From https://ftp.postgresql.org/pub/source/v13.5/postgresql-13.5.tar.bz2.sha256
-sha256  9b81067a55edbaabc418aacef457dd8477642827499560b00615a6ea6c13f6b3  postgresql-13.5.tar.bz2
+# From https://ftp.postgresql.org/pub/source/v14.1/postgresql-14.1.tar.bz2.sha256
+sha256  4d3c101ea7ae38982f06bdc73758b53727fb6402ecd9382006fa5ecc7c2ca41f  postgresql-14.1.tar.bz2
 
 # License file, Locally calculated
 sha256  31ccadc0a70e8e0e8a35c5833567b64388dfe34987d962e1911554e271294105  COPYRIGHT
diff --git a/package/postgresql/postgresql.mk b/package/postgresql/postgresql.mk
index e40ab45c20..32aef0c68c 100644
--- a/package/postgresql/postgresql.mk
+++ b/package/postgresql/postgresql.mk
@@ -4,7 +4,7 @@
 #
 ################################################################################
 
-POSTGRESQL_VERSION = 13.5
+POSTGRESQL_VERSION = 14.1
 POSTGRESQL_SOURCE = postgresql-$(POSTGRESQL_VERSION).tar.bz2
 POSTGRESQL_SITE = https://ftp.postgresql.org/pub/source/v$(POSTGRESQL_VERSION)
 POSTGRESQL_LICENSE = PostgreSQL
-- 
2.30.2

_______________________________________________
buildroot mailing list
buildroot@buildroot.org
https://lists.buildroot.org/mailman/listinfo/buildroot

^ permalink raw reply related	[flat|nested] 4+ messages in thread

* Re: [Buildroot] [PATCH/next 1/3] package/timescaledb: bump version to 2.5.0
  2021-11-13 17:07 [Buildroot] [PATCH/next 1/3] package/timescaledb: bump version to 2.5.0 Bernd Kuhls
  2021-11-13 17:07 ` [Buildroot] [PATCH/next v2 2/3] package/postgresql: security bump version to 13.5 Bernd Kuhls
  2021-11-13 17:07 ` [Buildroot] [PATCH/next v2 3/3] package/postgresql: bump version to 14.1 Bernd Kuhls
@ 2021-11-14 13:53 ` Thomas Petazzoni
  2 siblings, 0 replies; 4+ messages in thread
From: Thomas Petazzoni @ 2021-11-14 13:53 UTC (permalink / raw)
  To: Bernd Kuhls; +Cc: Maxim Kochetkov, Peter Seiderer, Will Newton, buildroot

On Sat, 13 Nov 2021 18:07:07 +0100
Bernd Kuhls <bernd.kuhls@t-online.de> wrote:

> This version adds support for PostgreSQL 14.
> 
> Release notes:
> https://github.com/timescale/timescaledb/releases/tag/2.5.0
> 
> Signed-off-by: Bernd Kuhls <bernd.kuhls@t-online.de>
> ---
> Forgot to add this patch to initial series.

Thanks, series applied to next!

Thomas
-- 
Thomas Petazzoni, CTO, Bootlin
Embedded Linux and Kernel engineering
https://bootlin.com
_______________________________________________
buildroot mailing list
buildroot@buildroot.org
https://lists.buildroot.org/mailman/listinfo/buildroot

^ permalink raw reply	[flat|nested] 4+ messages in thread

end of thread, other threads:[~2021-11-14 13:54 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2021-11-13 17:07 [Buildroot] [PATCH/next 1/3] package/timescaledb: bump version to 2.5.0 Bernd Kuhls
2021-11-13 17:07 ` [Buildroot] [PATCH/next v2 2/3] package/postgresql: security bump version to 13.5 Bernd Kuhls
2021-11-13 17:07 ` [Buildroot] [PATCH/next v2 3/3] package/postgresql: bump version to 14.1 Bernd Kuhls
2021-11-14 13:53 ` [Buildroot] [PATCH/next 1/3] package/timescaledb: bump version to 2.5.0 Thomas Petazzoni

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.