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

Commits on Jun 7, 2019

  1. kubernetes: 1.14.2 -> 1.14.3

    Johan Thomsen committed Jun 7, 2019
    Copy the full SHA
    415e8e5 View commit details
  2. Merge pull request #62816 from johanot/kubernetes-1.14.3

    kubernetes: 1.14.2 -> 1.14.3 (CVE-2019-11245)
    fpletz authored Jun 7, 2019
    Copy the full SHA
    88c898d View commit details
Showing with 2 additions and 2 deletions.
  1. +2 −2 pkgs/applications/networking/cluster/kubernetes/default.nix
4 changes: 2 additions & 2 deletions pkgs/applications/networking/cluster/kubernetes/default.nix
Original file line number Diff line number Diff line change
@@ -15,13 +15,13 @@ with lib;

stdenv.mkDerivation rec {
name = "kubernetes-${version}";
version = "1.14.2";
version = "1.14.3";

src = fetchFromGitHub {
owner = "kubernetes";
repo = "kubernetes";
rev = "v${version}";
sha256 = "17jb05c5i9y725jf5ad2ki99wyi2dv2jdhfgcxrki9fzjsx967g2";
sha256 = "1r31ssf8bdbz8fdsprhkc34jqhz5rcs3ixlf0mbjcbq0xr7y651z";
};

buildInputs = [ removeReferencesTo makeWrapper which go rsync go-bindata ];