summary refs log tree commit diff
path: root/pkgs
diff options
context:
space:
mode:
author0x4A6F <0x4A6F@users.noreply.github.com>2020-12-29 20:20:50 +0000
committer0x4A6F <0x4A6F@users.noreply.github.com>2020-12-29 20:23:47 +0000
commitf41125d2cfc99b062de51528efe63d38a4975f85 (patch)
tree240dfafa0c700306c99daeca5e710ef9b930c3f9 /pkgs
parente71df047a0e0244a6b84bba506d0284fd093deb5 (diff)
downloadnixpkgs-f41125d2cfc99b062de51528efe63d38a4975f85.tar
nixpkgs-f41125d2cfc99b062de51528efe63d38a4975f85.tar.gz
nixpkgs-f41125d2cfc99b062de51528efe63d38a4975f85.tar.bz2
nixpkgs-f41125d2cfc99b062de51528efe63d38a4975f85.tar.lz
nixpkgs-f41125d2cfc99b062de51528efe63d38a4975f85.tar.xz
nixpkgs-f41125d2cfc99b062de51528efe63d38a4975f85.tar.zst
nixpkgs-f41125d2cfc99b062de51528efe63d38a4975f85.zip
promscale: 0.1.3 -> 0.1.4
This release contains official support for TimescaleDB 2.0 (single-node) as well as various bug fixes and code cleanup.

Please note that multinode support is still in alpha and automatic upgrades of multinode deployments to future versions is not yet guaranteed (we hope to support this starting with the next release). Please only use multimode deployments for testing only.

Notes for people upgrading from 0.1.3:
- The dropChunk property in the Promscale Helm chart is renamed to maintenance. The drop-chunks CRON job is now renamed to maintenance, you will need to replace the dropChunk.schedule value with maintenance.schedule.

Notes for multinode deployments
- This should only be used for testing, not production deployments
  - In particular, we are not guaranteeing upgrades from 0.1.4 to future versions in multinode deployments.
- All nodes have to be added to the cluster before starting Promscale; adding nodes afterwards is not yet supported.
Diffstat (limited to 'pkgs')
-rw-r--r--pkgs/servers/monitoring/prometheus/promscale.nix6
1 files changed, 3 insertions, 3 deletions
diff --git a/pkgs/servers/monitoring/prometheus/promscale.nix b/pkgs/servers/monitoring/prometheus/promscale.nix
index ccc096fb72c..081c7c8352e 100644
--- a/pkgs/servers/monitoring/prometheus/promscale.nix
+++ b/pkgs/servers/monitoring/prometheus/promscale.nix
@@ -5,16 +5,16 @@
 
 buildGoModule rec {
   pname = "promscale";
-  version = "0.1.3";
+  version = "0.1.4";
 
   src = fetchFromGitHub {
     owner = "timescale";
     repo = pname;
     rev = version;
-    sha256 = "sha256-xkVT7Kn7mW23p8oGU4AsmB66lNd4QLnhEW7J66ldFHM=";
+    sha256 = "0179sw5zx552y14lr56adxcgas642xvxpqly6y4m9pi33r1gs8lj";
   };
 
-  vendorSha256 = "sha256:1wfyawbdbabyp9nyhzfp632hg9rvwdyagsdqvvq6gv8bn5xfcjvh";
+  vendorSha256 = "sha256:04gzf0siz96ar4qdkcw6daswy14i1zvl7ir200adhw1c5phppab6";
 
   buildFlagsArray = [ "-ldflags=-s -w -X github.com/timescale/promscale/pkg/version.Version=${version} -X github.com/timescale/promscale/pkg/version.CommitHash=${src.rev}" ];