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

Commits on Jan 18, 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 18, 2018

    Verified

    This commit was created on GitHub.com and signed with GitHub’s verified signature. The key has expired.
    Copy the full SHA
    11e91c6 View commit details

Commits on Jan 19, 2018

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

    minio: 2018-01-02T23-07-00Z -> 2018-01-18T20-33-21Z (Critical Security Update)
    grahamc authored Jan 19, 2018
    Copy the full SHA
    c5245ef 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";