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

Commits on Apr 1, 2020

  1. Copy the full SHA
    4be2643 View commit details

Commits on Apr 16, 2020

  1. Merge pull request #83984 from r-ryantm/auto-update/kubernetes

    kubernetes: 1.17.3 -> 1.18.0
    srhb authored Apr 16, 2020

    Verified

    This commit was signed with the committer’s verified signature.
    vcunat Vladimír Čunát
    Copy the full SHA
    67413f6 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 {
pname = "kubernetes";
version = "1.17.3";
version = "1.18.0";

src = fetchFromGitHub {
owner = "kubernetes";
repo = "kubernetes";
rev = "v${version}";
sha256 = "0caqczz8hrwqb8j94158hz6919i7c9v1v0zknh9m2zbbng4b1awi";
sha256 = "1jp54aahwpx9w73byfyadgffrig9fy6x8xzw27xv0anj2v9bm1fw";
};

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