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

Commits on Nov 9, 2018

  1. postgresql_9_3: 9.3.24 -> 9.3.25

    lsix committed Nov 9, 2018
    Copy the full SHA
    5d37d63 View commit details
  2. postgresql_9_4: 9.4.19 -> 9.4.20

    lsix committed Nov 9, 2018

    Verified

    This commit was signed with the committer’s verified signature.
    ruyadorno Ruy Adorno
    Copy the full SHA
    882c3b5 View commit details
  3. postgresql_9_5: 9.5.14 -> 9.5.15

    lsix committed Nov 9, 2018

    Verified

    This commit was signed with the committer’s verified signature.
    targos Michaël Zasso
    Copy the full SHA
    f703ea6 View commit details
  4. postgresql_9_6: 9.6.10 -> 9.6.11

    lsix committed Nov 9, 2018
    Copy the full SHA
    1670fd1 View commit details
  5. postgresql_10: 10.5 -> 10.6

    lsix committed Nov 9, 2018
    Copy the full SHA
    575151e View commit details
  6. postgresql_11: 11.0 -> 11.1

    lsix committed Nov 9, 2018
    Copy the full SHA
    3cbc20e View commit details

Commits on Nov 14, 2018

  1. Merge pull request #49906 from lsix/update_postgresql

    Update all supported postgresql versions (Fixes CVE-2018-16850)
    c0bw3b authored Nov 14, 2018
    Copy the full SHA
    8582a82 View commit details
Showing with 12 additions and 12 deletions.
  1. +12 −12 pkgs/servers/sql/postgresql/default.nix
24 changes: 12 additions & 12 deletions pkgs/servers/sql/postgresql/default.nix
Original file line number Diff line number Diff line change
@@ -100,39 +100,39 @@ let
in {

postgresql_9_3 = common {
version = "9.3.24";
version = "9.3.25";
psqlSchema = "9.3";
sha256 = "1a8dnv16n2rxnbwhqw7c0kjpj3xqvkpwk50kvimj4d917cxaf542";
sha256 = "1nxn0hjrg4y5v5n2jgzrbicgv4504r2yfjyk6g6rq0sx8603x5g4";
};

postgresql_9_4 = common {
version = "9.4.19";
version = "9.4.20";
psqlSchema = "9.4";
sha256 = "12qn9h47rkn4k41gdbxkkvg0pff43k1113jmhc83f19adc1nnxq3";
sha256 = "0zzqjz5jrn624hzh04drpj6axh30a9k6bgawid6rwk45nbfxicgf";
};

postgresql_9_5 = common {
version = "9.5.14";
version = "9.5.15";
psqlSchema = "9.5";
sha256 = "0k8s62h6qd9p3xlx315j5irniskqsnx1nz4ir5r1yhqp07mdab1y";
sha256 = "0i2lylgmsmy2g1ixlvl112fryp7jmrd0i2brk8sxb7vzzpg3znnv";
};

postgresql_9_6 = common {
version = "9.6.10";
version = "9.6.11";
psqlSchema = "9.6";
sha256 = "09l4zqs74fqnazdsyln9x657mq3wsbgng9wpvq71yh26cv2sq5c6";
sha256 = "0c55akrkzqd6p6a8hr0338wk246hl76r9j16p4zn3s51d7f0l99q";
};

postgresql_10 = common {
version = "10.5";
version = "10.6";
psqlSchema = "10.0";
sha256 = "04a07jkvc5s6zgh6jr78149kcjmsxclizsqabjw44ld4j5n633kc";
sha256 = "0jv26y3f10svrjxzsgqxg956c86b664azyk2wppzpa5x11pjga38";
};

postgresql_11 = common {
version = "11.0";
version = "11.1";
psqlSchema = "11.0";
sha256 = "0szk9ssfych1wlpyqxz3z6dllg1l6m5labpii8c2r463s01vm6xz";
sha256 = "026v0sicsh7avzi45waf8shcbhivyxmi7qgn9fd1x0vl520mx0ch";
};

}