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

Commits on Feb 25, 2019

  1. postgresql_9_4: 9.4.20 -> 9.4.21

    See https://www.postgresql.org/about/news/1920/ for release information.
    lsix committed Feb 25, 2019
    Copy the full SHA
    d1dd3a1 View commit details
  2. postgresql_9_5: 9.5.15 -> 9.5.16

    See https://www.postgresql.org/about/news/1920/ for release information.
    lsix committed Feb 25, 2019
    Copy the full SHA
    74c715e View commit details
  3. postgresql_9_6: 9.6.11 -> 9.6.12

    See https://www.postgresql.org/about/news/1920/ for release information.
    lsix committed Feb 25, 2019
    Copy the full SHA
    70a31c2 View commit details
  4. postgresql_10: 10.6 -> 10.7

    See https://www.postgresql.org/about/news/1920/ for release information.
    lsix committed Feb 25, 2019
    Copy the full SHA
    a90cf49 View commit details

Commits on Mar 5, 2019

  1. Merge pull request #56352 from lsix/postgresql_updates

    Postgresql updates
    danbst authored Mar 5, 2019
    Copy the full SHA
    bd5b8df 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
@@ -157,33 +157,33 @@ let
in self: {

postgresql_9_4 = self.callPackage generic {
version = "9.4.20";
version = "9.4.21";
psqlSchema = "9.4";
sha256 = "0zzqjz5jrn624hzh04drpj6axh30a9k6bgawid6rwk45nbfxicgf";
sha256 = "01k0s3a7qy8639zsjp1bjbfnnymyl0rgyylrjbkm81m0779b8j80";
this = self.postgresql_9_4;
inherit self;
};

postgresql_9_5 = self.callPackage generic {
version = "9.5.15";
version = "9.5.16";
psqlSchema = "9.5";
sha256 = "0i2lylgmsmy2g1ixlvl112fryp7jmrd0i2brk8sxb7vzzpg3znnv";
sha256 = "0cg10ri0475vg1c8k1sb5qi4i64hiv9k7crmg15qvvnwsjanqmx4";
this = self.postgresql_9_5;
inherit self;
};

postgresql_9_6 = self.callPackage generic {
version = "9.6.11";
version = "9.6.12";
psqlSchema = "9.6";
sha256 = "0c55akrkzqd6p6a8hr0338wk246hl76r9j16p4zn3s51d7f0l99q";
sha256 = "114xay230xia2fagisxahs5fc2mza8hmmkr6ibd7nxllp938931f";
this = self.postgresql_9_6;
inherit self;
};

postgresql_10 = self.callPackage generic {
version = "10.6";
version = "10.7";
psqlSchema = "10.0"; # should be 10, but changing it is invasive
sha256 = "0jv26y3f10svrjxzsgqxg956c86b664azyk2wppzpa5x11pjga38";
sha256 = "1piyfcrcqscjhnnwn91kdvr764s7d0qz4lgygf9bl6qc71ji1vdz";
this = self.postgresql_10;
inherit self;
};