Unverified Commit f015aad0 authored by Wolfgang Walther's avatar Wolfgang Walther Committed by GitHub
Browse files

postgresqlPackages.timescaledb: 2.22.1 -> 2.23.0 (#457064)

parents 78324291 47a38d48
Loading
Loading
Loading
Loading
+3 −10
Original line number Diff line number Diff line
@@ -13,13 +13,13 @@

postgresqlBuildExtension (finalAttrs: {
  pname = "timescaledb${lib.optionalString (!enableUnfree) "-apache"}";
  version = "2.22.1";
  version = "2.23.0";

  src = fetchFromGitHub {
    owner = "timescale";
    repo = "timescaledb";
    tag = finalAttrs.version;
    hash = "sha256-SEuxHbSxgTC4Uk6nnznVzUqvoZMGgF+KSMNzkYfgfpI=";
    hash = "sha256-wgRaWxGr48p8xMc+yOQEN196KAKyptMCk/UFKn23cos=";
  };

  nativeBuildInputs = [ cmake ];
@@ -101,13 +101,6 @@ postgresqlBuildExtension (finalAttrs: {
    maintainers = with lib.maintainers; [ kirillrdy ];
    platforms = postgresql.meta.platforms;
    license = with lib.licenses; if enableUnfree then tsl else asl20;
    broken =
      lib.versionOlder postgresql.version "15"
      ||
        # PostgreSQL 18 support issue upstream: https://github.com/timescale/timescaledb/issues/8233
        # Check after next package update.
        lib.warnIf (finalAttrs.version != "2.22.1") "Is postgresql18Packages.timescaledb still broken?" (
          lib.versionAtLeast postgresql.version "18"
        );
    broken = lib.versionOlder postgresql.version "15";
  };
})