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: 30e67e965c46
Choose a base ref
...
head repository: NixOS/nixpkgs
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: 3b28e23a04cb
Choose a head ref
  • 2 commits
  • 1 file changed
  • 2 contributors

Commits on Nov 11, 2020

  1. nats-server: 2.1.0 -> 2.1.7

    (cherry picked from commit 47d8d4a)
    r-ryantm authored and ehmry committed Nov 11, 2020

    Verified

    This commit was signed with the committer’s verified signature. The key has expired.
    andir Andreas Rammhold
    Copy the full SHA
    f341eb2 View commit details
  2. nats-server: 2.1.7 -> 2.1.9

    Fixes: CVE-2020-26521, CVE-2020-26892
    (cherry picked from commit b2a20c2)
    mweinelt authored and ehmry committed Nov 11, 2020

    Verified

    This commit was signed with the committer’s verified signature. The key has expired.
    andir Andreas Rammhold
    Copy the full SHA
    3b28e23 View commit details
Showing with 2 additions and 2 deletions.
  1. +2 −2 pkgs/servers/nats-server/default.nix
4 changes: 2 additions & 2 deletions pkgs/servers/nats-server/default.nix
Original file line number Diff line number Diff line change
@@ -4,15 +4,15 @@ with lib;

buildGoPackage rec {
pname = "nats-server";
version = "2.1.0";
version = "2.1.9";

goPackagePath = "github.com/nats-io/${pname}";

src = fetchFromGitHub {
rev = "v${version}";
owner = "nats-io";
repo = pname;
sha256 = "1zp43v69cawbp6bpby1vx51z6nyv8gxnnl2qkhwr9zrgnhlcflnl";
sha256 = "0y92isca1dlvprik0lbiz8ny1w84svy4zn73brqhzrkxnqppcxi2";
};

meta = {