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

Commits on Feb 26, 2018

  1. flyway: 4.2.0 -> 5.0.7

    Semi-automatic update. These checks were performed:
    
    - built on NixOS
    - ran `/nix/store/lzmkkf5v0xf3dxqn3gzcwww8a30gwgma-flyway-5.0.7/bin/flyway -h` got 0 exit code
    - ran `/nix/store/lzmkkf5v0xf3dxqn3gzcwww8a30gwgma-flyway-5.0.7/bin/flyway --help` got 0 exit code
    - ran `/nix/store/lzmkkf5v0xf3dxqn3gzcwww8a30gwgma-flyway-5.0.7/bin/flyway help` got 0 exit code
    - ran `/nix/store/lzmkkf5v0xf3dxqn3gzcwww8a30gwgma-flyway-5.0.7/bin/flyway -V` and found version 5.0.7
    - ran `/nix/store/lzmkkf5v0xf3dxqn3gzcwww8a30gwgma-flyway-5.0.7/bin/flyway -v` and found version 5.0.7
    - ran `/nix/store/lzmkkf5v0xf3dxqn3gzcwww8a30gwgma-flyway-5.0.7/bin/flyway --version` and found version 5.0.7
    - ran `/nix/store/lzmkkf5v0xf3dxqn3gzcwww8a30gwgma-flyway-5.0.7/bin/flyway -h` and found version 5.0.7
    - ran `/nix/store/lzmkkf5v0xf3dxqn3gzcwww8a30gwgma-flyway-5.0.7/bin/flyway --help` and found version 5.0.7
    - ran `/nix/store/lzmkkf5v0xf3dxqn3gzcwww8a30gwgma-flyway-5.0.7/bin/flyway help` and found version 5.0.7
    - found 5.0.7 with grep in /nix/store/lzmkkf5v0xf3dxqn3gzcwww8a30gwgma-flyway-5.0.7
    - found 5.0.7 in filename of file in /nix/store/lzmkkf5v0xf3dxqn3gzcwww8a30gwgma-flyway-5.0.7
    ryantm committed Feb 26, 2018
    Copy the full SHA
    caa9a38 View commit details

Commits on Mar 2, 2018

  1. Merge pull request #35648 from ryantm/auto-update/flyway-4.2.0-to-5.0.7

    flyway: 4.2.0 -> 5.0.7
    nlewo authored Mar 2, 2018
    Copy the full SHA
    085321a View commit details
Showing with 3 additions and 3 deletions.
  1. +3 −3 pkgs/development/tools/flyway/default.nix
6 changes: 3 additions & 3 deletions pkgs/development/tools/flyway/default.nix
Original file line number Diff line number Diff line change
@@ -1,12 +1,12 @@
{ stdenv, fetchurl, jre_headless, makeWrapper }:
let
version = "4.2.0";
version = "5.0.7";
in
stdenv.mkDerivation {
name = "flyway-${version}";
src = fetchurl {
url = "https://repo1.maven.org/maven2/org/flywaydb/flyway-commandline/4.2.0/flyway-commandline-${version}.tar.gz";
sha256 = "1fxj760qx6apsz50p60c9n79k6bqkjcv2zfgab0awvmdvdy4k661";
url = "https://repo1.maven.org/maven2/org/flywaydb/flyway-commandline/5.0.7/flyway-commandline-${version}.tar.gz";
sha256 = "1zmnzz7d5kb2wpmfizryxxhpjs16j5k9mich1hbb2qfkqvygk6sv";
};
buildInputs = [ makeWrapper ];
dontBuild = true;