postgresqlPackages.timescaledb-apache: 2.28.3 -> 2.29.0

Diff: https://github.com/timescale/timescaledb/compare/2.28.3...2.29.0
Changelog: https://github.com/timescale/timescaledb/blob/2.29.0/CHANGELOG.md
This commit is contained in:
Kirill Radzikhovskyy
2026-07-29 13:03:01 +10:00
parent a915e2cb00
commit 7146de4bbc
@@ -13,13 +13,13 @@
postgresqlBuildExtension (finalAttrs: {
pname = "timescaledb${lib.optionalString (!enableUnfree) "-apache"}";
version = "2.28.3";
version = "2.29.0";
src = fetchFromGitHub {
owner = "timescale";
repo = "timescaledb";
tag = finalAttrs.version;
hash = "sha256-SoieJvdZQXazi2oJVShifYy0XXD1vdq/u2/Pw+KF2rU=";
hash = "sha256-N5RYIKc467zHNgvmXrp+KltRZcTPo3fiv4KASU8i8L0=";
};
nativeBuildInputs = [ cmake ];
@@ -102,10 +102,10 @@ postgresqlBuildExtension (finalAttrs: {
platforms = postgresql.meta.platforms;
license = with lib.licenses; if enableUnfree then tsl else asl20;
broken =
lib.versionOlder postgresql.version "15"
lib.versionOlder postgresql.version "16"
||
# Check after next package update.
lib.warnIf (finalAttrs.version != "2.28.3") "Is postgresql19Packages.timescaledb still broken?" (
lib.warnIf (finalAttrs.version != "2.29.0") "Is postgresql19Packages.timescaledb still broken?" (
lib.versionAtLeast postgresql.version "19"
);
};