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

Commits on Jan 19, 2018

  1. minio: 2018-01-02T23-07-00Z -> 2018-01-18T20-33-21Z

    Critical security fix that fixes an issue that allows
    bypassing authentication.
    
    See: https://blog.minio.io/minio-release-jan-18-2018-security-advisory-4c64ca87721b
    bachp committed Jan 19, 2018
    Copy the full SHA
    e31e3ef View commit details

Commits on Jan 21, 2018

  1. Merge pull request #34056 from bachp/minio-security2-stable

    [17.09] Minio critical security update
    grahamc authored Jan 21, 2018
    Copy the full SHA
    013662f View commit details
Showing with 2 additions and 2 deletions.
  1. +2 −2 pkgs/servers/minio/default.nix
4 changes: 2 additions & 2 deletions pkgs/servers/minio/default.nix
Original file line number Diff line number Diff line change
@@ -3,13 +3,13 @@
buildGoPackage rec {
name = "minio-${version}";

version = "2018-01-02T23-07-00Z";
version = "2018-01-18T20-33-21Z";

src = fetchFromGitHub {
owner = "minio";
repo = "minio";
rev = "RELEASE.${version}";
sha256 = "1bpiy6q9782mxs5f5lzw6c7zx83s2i68rf5f65xa9z7cyl19si74";
sha256 = "102rilh1kjf9y6g6y83ikk42w7g1sbld11md3wm54hynyh956xrs";
};

goPackagePath = "github.com/minio/minio";