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: 3e02e7f49bf1
Choose a base ref
...
head repository: NixOS/nixpkgs
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: 89a636b8077a
Choose a head ref
  • 4 commits
  • 1 file changed
  • 1 contributor

Commits on Mar 6, 2019

  1. postgresql_9_4: 9.4.20 -> 9.4.21

    See https://www.postgresql.org/about/news/1920/ for release information.
    
    (cherry picked from commit d1dd3a1)
    lsix committed Mar 6, 2019
    Copy the full SHA
    8113270 View commit details
  2. postgresql_9_5: 9.5.15 -> 9.5.16

    See https://www.postgresql.org/about/news/1920/ for release information.
    
    (cherry picked from commit 74c715e)
    lsix committed Mar 6, 2019
    Copy the full SHA
    460ee71 View commit details
  3. postgresql_9_6: 9.6.11 -> 9.6.12

    See https://www.postgresql.org/about/news/1920/ for release information.
    
    (cherry picked from commit 70a31c2)
    lsix committed Mar 6, 2019
    Copy the full SHA
    01cc158 View commit details
  4. postgresql_10: 10.6 -> 10.7

    See https://www.postgresql.org/about/news/1920/ for release information.
    
    (cherry picked from commit a90cf49)
    lsix committed Mar 6, 2019
    Copy the full SHA
    89a636b View commit details
Showing with 8 additions and 8 deletions.
  1. +8 −8 pkgs/servers/sql/postgresql/default.nix
16 changes: 8 additions & 8 deletions pkgs/servers/sql/postgresql/default.nix
Original file line number Diff line number Diff line change
@@ -113,27 +113,27 @@ in {
};

postgresql94 = common {
version = "9.4.20";
version = "9.4.21";
psqlSchema = "9.4";
sha256 = "0zzqjz5jrn624hzh04drpj6axh30a9k6bgawid6rwk45nbfxicgf";
sha256 = "01k0s3a7qy8639zsjp1bjbfnnymyl0rgyylrjbkm81m0779b8j80";
};

postgresql95 = common {
version = "9.5.15";
version = "9.5.16";
psqlSchema = "9.5";
sha256 = "0i2lylgmsmy2g1ixlvl112fryp7jmrd0i2brk8sxb7vzzpg3znnv";
sha256 = "0cg10ri0475vg1c8k1sb5qi4i64hiv9k7crmg15qvvnwsjanqmx4";
};

postgresql96 = common {
version = "9.6.11";
version = "9.6.12";
psqlSchema = "9.6";
sha256 = "0c55akrkzqd6p6a8hr0338wk246hl76r9j16p4zn3s51d7f0l99q";
sha256 = "114xay230xia2fagisxahs5fc2mza8hmmkr6ibd7nxllp938931f";
};

postgresql100 = common {
version = "10.6";
version = "10.7";
psqlSchema = "10.0";
sha256 = "0jv26y3f10svrjxzsgqxg956c86b664azyk2wppzpa5x11pjga38";
sha256 = "1piyfcrcqscjhnnwn91kdvr764s7d0qz4lgygf9bl6qc71ji1vdz";
};

}