Skip to content
Permalink

Comparing changes

Choose two branches to see what’s changed or to start a new pull request. If you need to, you can also or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: NixOS/nixpkgs
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: 6ff80e7ac395
Choose a base ref
...
head repository: NixOS/nixpkgs
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: 6884da4784df
Choose a head ref
  • 2 commits
  • 1 file changed
  • 2 contributors

Commits on Oct 29, 2020

  1. promscale: 0.1.0 -> 0.1.1

    Changelog:
     - Add QueryRow to our connection interface
     - Add SQL API for managing metric compression setting
     - Add code documentation for query/read path of the connector
     - Adds support for checking pg version on startup
     - BUGFIX reset pendingBuffer epoch when we're done
     - Epoch-Based cache validation
     - First pass documenting the write path
     - Fix bug with deletion of metric name labels.
     - Fix erroneous PromQL query in end-to-end tests
     - Fix error reporting to prevent panic
     - Fix golden file tests
     - Fix logging output to match rest of the project
     - Fix views on Vanilla PG and add tests
     - Make example docker-compose clearer (#305)
     - Mask password while printing config
     - Prepare for the 0.1.1 release
     - Prepare for the next development cycle
     - REFACTOR rearrange mocks
     - REFACTOR switch TestPGXInserterInsertData to the new mock
     - REFACTOR switch TestPGXInserterInsertSeries to the new mock
     - Start a pgmodel Readme
    
    Source: https://github.com/timescale/promscale/releases/tag/0.1.1
    andir committed Oct 29, 2020

    Unverified

    This commit is not signed, but one or more authors requires that any commit attributed to them is signed.
    Copy the full SHA
    b64d91e View commit details
  2. Merge pull request #102013 from andir/promscale

    promscale: 0.1.0 -> 0.1.1
    marsam authored Oct 29, 2020

    Unverified

    This commit is not signed, but one or more authors requires that any commit attributed to them is signed.
    Copy the full SHA
    6884da4 View commit details
Showing with 3 additions and 3 deletions.
  1. +3 −3 pkgs/servers/monitoring/prometheus/promscale.nix
6 changes: 3 additions & 3 deletions pkgs/servers/monitoring/prometheus/promscale.nix
Original file line number Diff line number Diff line change
@@ -5,20 +5,20 @@

buildGoModule rec {
pname = "promscale";
version = "0.1.0";
version = "0.1.1";

src = fetchFromGitHub {
owner = "timescale";
repo = pname;
rev = "${version}";
sha256 = "sha256:0535sq640b9x9vi2sfazi9qs6arwjdn7nff16km2agncvs449dn4";
sha256 = "sha256:00mhkp3nf6h2zsvmmwyza1lahvmm05isfi7rqkx24c0dmkmif3x9";
};

vendorSha256 = "sha256:1ilciwf08678sciwwrjalwvcs5bp7x254nxc3nhdf88cf0bp2nxi";

buildFlagsArray = [ "-ldflags=-s -w -X github.com/timescale/promscale/pkg/version.Version=${version} -X github.com/timescale/promscale/pkg/version.CommitHash=${src.rev}" ];

doCheck = false;
doCheck = false; # Requires access to a docker daemon

meta = with stdenv.lib; {
description = "An open-source analytical platform for Prometheus metrics";