Commit graph

475 commits

Author SHA1 Message Date
Daiderd Jordan b7ddbd52bd
treewide: replace SRI hashes 2020-06-01 15:24:19 +02:00
Mario Rodas c167ec8159
Merge pull request #88654 from r-ryantm/auto-update/pgrouting
postgresql11Packages.pgrouting: 2.6.3 -> 3.0.0
2020-05-23 08:51:41 -05:00
Mario Rodas 6fcae88f9a
postgresqlPackages.pgrouting: remove unneeded dependencies
These dependencies were removed in https://github.com/pgRouting/pgrouting/pull/1188
2020-05-23 04:20:00 -05:00
R. RyanTM 3623ea3ff6 postgresql11Packages.pg_partman: 4.3.1 -> 4.4.0 2020-05-23 05:33:24 +00:00
R. RyanTM 6aefe6c171 postgresql11Packages.pgrouting: 2.6.3 -> 3.0.0 2020-05-23 05:03:07 +00:00
Mario Rodas 3859ef98f7 postgresqlPackages.timescaledb: 1.7.0 -> 1.7.1
Changelog: https://github.com/timescale/timescaledb/releases/tag/1.7.1
2020-05-18 18:06:40 -07:00
Mario Rodas 897c450cc5
Merge pull request #87092 from r-ryantm/auto-update/pg_partman
postgresql11Packages.pg_partman: 4.3.0 -> 4.3.1
2020-05-07 06:46:46 -05:00
R. RyanTM 75503db6f3 postgresql11Packages.pg_partman: 4.3.0 -> 4.3.1 2020-05-06 12:54:01 +00:00
Mario Rodas 53dd3921cd
postgresqlPackages.pg_auto_failover: 1.2 -> 1.3
Changelog: https://github.com/citusdata/pg_auto_failover/releases/tag/v1.3
2020-05-05 04:20:00 -05:00
Orivej Desh 7c4282bf43 postgresql: remove version from passthru
It is already available in the regular attrs.

`passthru.version` prevents `overrideAttrs (attrs: { version = "x"; })` from
taking effect.
2020-04-23 15:20:35 +00:00
Mario Rodas 35eac7e51e
postgresqlPackages.timescaledb: 1.6.1 -> 1.7.0
Changelog: https://github.com/timescale/timescaledb/releases/tag/1.7.0
2020-04-16 04:20:00 -05:00
Michael Reilly 84cf00f980
treewide: Per RFC45, remove all unquoted URLs 2020-04-10 17:54:53 +01:00
Mario Rodas 38bd987bbf
Merge pull request #82912 from marsam/update-postgresqlPackages.pg_auto_failover
postgresqlPackages.pg_auto_failover: 1.0.6 -> 1.2
2020-03-19 19:00:26 -05:00
Mario Rodas bb1e2b83c0
postgresqlPackages.timescaledb: 1.6.0 -> 1.6.1
Changelog: https://github.com/timescale/timescaledb/releases/tag/1.6.1
2020-03-18 21:21:21 -05:00
Mario Rodas 44f3de77d9
postgresqlPackages.pg_auto_failover: 1.0.6 -> 1.2 2020-03-18 04:20:00 -05:00
zimbatm 3951e718b8
postgresqlPackages.repmgr: 4.4.0 -> 5.0.0 2020-03-15 22:07:10 +01:00
Mario Rodas f6914a589e
postgresqlPackages.pgroonga: 2.2.2 -> 2.2.5 2020-03-12 04:20:00 -05:00
Frederik Rietdijk ef156f7a8b Merge staging-next into staging 2020-02-27 10:15:34 +01:00
Mario Rodas 53a5d6918a
postgresqlPackages.postgis: 3.0.0 -> 3.0.1
Release notes: https://postgis.net/2020/02/20/postgis-3.0.1/
2020-02-24 04:20:00 -05:00
worldofpeace 504f8bffaa Merge branch 'staging-next' into staging 2020-02-19 21:27:20 -05:00
Lancelot SIX 24013ab951
Merge pull request #80485 from marsam/update-postgresqlPackages.pg_auto_failover
postgresqlPackages.pg_auto_failover: 1.0.5 -> 1.0.6
2020-02-19 19:50:38 +01:00
zowoq 711617f5e3
Revert "postgresql: build < 9.5 with openssl 1.0.2" (#80481)
This reverts commit 2d6f0cb176.

postgresql versions < 9.5 have been removed from nixpkgs.
2020-02-19 08:59:49 +02:00
Mario Rodas e86619f273
postgresqlPackages.pg_auto_failover: 1.0.5 -> 1.0.6 2020-02-18 04:20:00 -05:00
Danylo Hlynskyi 329102c47b
Merge #80328: postgresql: minor updates (security)
Forward-picked from merge 036c524a2e in staging to master,
as upstream claims it fixes CVE-2020-1720.
https://www.postgresql.org/about/news/2011/
2020-02-18 10:48:39 +01:00
Mario Rodas 2bbe49f4c2
postgresqlPackages.cstore_fdw: 1.6.2 -> 1.7.0 2020-02-18 04:20:00 -05:00
Danylo Hlynskyi 5443eee47c
nixos/postgresql: support 0750 for data directory (#65245)
* nixos/postgresql: support 0750 for data directory

This is rework of part of https://github.com/NixOS/nixpkgs/pull/46670.
My usecase was to be able to inspect PG datadir as wheel user.

PG11 now allows starting server with 0750 mask for data dir.
`groupAccess = true` now does this automatically. The only thing you have to do
is to set group ownership.

For PG10 and below, I've described a hack how this can be done. Before this PR
hack was impossible. The hack isn't ideal, because there is short
period of time when dir mode is 0700, so I didn't want to make it official.

Test/example is present too.

* postgresql: allow changing initidb arguments via module system

Closes https://github.com/NixOS/nixpkgs/issues/18829

+ some cleanups

* addressed review comments and some fixes

* whoops

* change groupAccess to tristate, to not force `chmod` on dataDir.

Making mask either 0700 or 0750 is too restrictive..

* WIP

* let's not support group mode for versions pre-11.

The only fix is to change mode to 0700 before start, because otherwise postgresql
doesn't start, and error is non-obvious.
2020-02-14 20:51:20 +02:00
danbst 2c77c53487 Merge branch 'master' into postgresql_group 2020-02-14 19:00:52 +02:00
Ivan Kozik 0be376a8e2
postgresqlPackages.periods: init at 1.1 (#79255) 2020-02-14 18:43:31 +02:00
Mario Rodas bfdb8f99ce postgresql_12: 12.1 -> 12.2
Release notes: https://www.postgresql.org/docs/current/release-12-2.html
2020-02-14 00:04:00 -05:00
Mario Rodas 3668174836 postgresql_11: 11.6 -> 11.7
Release notes: https://www.postgresql.org/docs/11/release-11-7.html
2020-02-14 00:03:00 -05:00
Mario Rodas 08d614c72f postgresql_10: 10.11 -> 10.12
Release notes: https://www.postgresql.org/docs/10/release-10-12.html
2020-02-14 00:02:00 -05:00
Mario Rodas d067b4ac81 postgresql_9_6: 9.6.16 -> 9.6.17
Release notes: https://www.postgresql.org/docs/9.6/release-9-6-17.html
2020-02-14 00:01:00 -05:00
Mario Rodas 4e7ea9b49a postgresql_9_5: 9.5.20 -> 9.5.21
Release notes: https://www.postgresql.org/docs/9.5/release-9-5-21.html
2020-02-14 00:00:00 -05:00
R. RyanTM 82e7ef2c16 postgresql11Packages.pg_partman: 4.2.2 -> 4.3.0 2020-02-09 03:15:19 -06:00
Mario Rodas 0e76e3bb48
postgresqlPackages.timescaledb: 1.5.1 -> 1.6.0
Changelog: https://github.com/timescale/timescaledb/releases/tag/1.6.0
2020-01-15 18:18:18 -05:00
Mario Rodas 85b74dd7a5
postgresqlPackages.plv8: 2.3.13 -> 2.3.14 2020-01-09 21:21:21 -05:00
Robin Gloster ab0cfd9e03
treewide: NIX_*_COMPILE -> string 2019-12-31 00:10:18 +01:00
Mario Rodas a4d2e5edf9
postgresqlPackages.tds_fdw: 1.0.8 -> 2.0.1
Changelog: https://github.com/tds-fdw/tds_fdw/releases/tag/v2.0.1
2019-12-03 19:19:19 -05:00
Jonathan Ringer 0c1c18ca44
Merge branch 'master' into staging-next 2019-11-27 22:57:50 -08:00
Mario Rodas fe0eb2a9a7
postgresqlPackages.pgtap: 1.0.0 -> 1.1.0 2019-11-25 18:00:00 -05:00
Frederik Rietdijk 10d0c68a9b Merge staging-next into staging 2019-11-20 10:02:21 +01:00
Frederik Rietdijk 5f8b0d7d99 Merge staging-next into staging 2019-11-19 14:53:29 +01:00
Mario Rodas 87efa3c032
Merge pull request #73605 from marsam/update-timescaledb
postgresqlPackages.timescaledb: 1.5.0 -> 1.5.1
2019-11-19 05:33:58 -05:00
Mario Rodas 9177df65e7
Merge pull request #73604 from marsam/update-pg_auto_failover
postgresqlPackages.pg_auto_failover: 1.0.4 -> 1.0.5
2019-11-18 21:41:45 -05:00
Mario Rodas 7a7908e63f
Merge pull request #73601 from marsam/update-pg_hll
postgresqlPackages.pg_hll: 2.12 -> 2.14
2019-11-18 21:41:15 -05:00
Mario Rodas 6f28e9b2d7
postgresqlPackages.timescaledb: 1.5.0 -> 1.5.1
Changelog: https://github.com/timescale/timescaledb/releases/tag/1.5.1
2019-11-17 22:22:22 -05:00
Mario Rodas 33a9a0f0f6
postgresqlPackages.pg_auto_failover: 1.0.4 -> 1.0.5 2019-11-17 22:22:22 -05:00
Mario Rodas e3da798939
postgresqlPackages.pg_hll: 2.12 -> 2.14 2019-11-17 22:22:22 -05:00
Mario Rodas ab692f467b
postgresqlPackages.pgroonga: 2.2.1 -> 2.2.2 2019-11-17 22:22:22 -05:00
Mario Rodas f2c73ca221
postgresql_12: 12.0 -> 12.1
Release notes: https://www.postgresql.org/docs/12/release-12-1.html
2019-11-14 20:04:00 -05:00