Commit Graph

1118 Commits

Author SHA1 Message Date
Mario Rodas
bf12df5e19
Merge pull request #229032 from r-ryantm/auto-update/postgresql11JitPackages.pgroonga
postgresql11JitPackages.pgroonga: 2.4.2 -> 3.0.0
2023-04-30 06:34:11 -05:00
Ivan Kozik
5207dff2d8 postgresqlPackages.pgroonga: remove myself from maintainers 2023-04-30 02:41:23 +00:00
Mario Rodas
cfbd436e24 postgresqlPackages.pgroonga: 3.0.0 -> 3.0.1
https://github.com/pgroonga/pgroonga/releases/tag/3.0.1
2023-04-30 01:42:00 +00:00
R. Ryantm
40add03d25 postgresql11JitPackages.pgroonga: 2.4.2 -> 3.0.0 2023-04-30 01:41:23 +00:00
R. Ryantm
cf55738d99 postgresql11JitPackages.pg_cron: 1.5.1 -> 1.5.2 2023-04-29 08:10:56 +00:00
1000101
938afbb96e postgresqlPackages.timescaledb: 2.10.2 -> 2.10.3 2023-04-27 13:21:30 -04:00
Mario Rodas
5249a7ce55
Merge pull request #220812 from anpin/feature/promscale-rebase
promscale: 0.10.0 -> 0.17.0
2023-04-24 21:02:25 -05:00
Eric Wolf
815fed2e05 cargo-pgx: 0.6.1 -> 0.7.4, keep 0.6.1, add 0.7.1
0.6.1 keeping until timescaledb_toolkit got upgraded to 1.15.0
0.7.1 because timescaledb_toolkit 1.15.0 needs it
0.7.4 because it is the most recent cargo-pgx version
2023-04-23 15:23:38 -04:00
Pavel Anpin
0e191c7ec1
promscale_extension: fixed cargoPatch
somehow the patch made earlier stoped working, so the build was failing
due to git dependency in cargo.lock. Fixed that in the upstream PR and
repointed fetchpatch to the new commit
2023-04-23 13:17:14 +04:00
Pavel Anpin
3efea7f0ea
postgresqlPackages.promscale_extension: init at 0.8.0 2023-04-22 21:29:49 +04:00
Mario Rodas
2c69fe1567 postgresqlPackages.plpgsql_check: 2.3.3 -> 2.3.4
https://github.com/okbob/plpgsql_check/releases/tag/v2.3.4
2023-04-20 04:20:00 +00:00
1000101
ae5640c0aa postgresqlPackages.timescaledb: 2.10.1 -> 2.10.2 2023-04-21 00:01:16 +02:00
Mario Rodas
86f8f8caf5 postgresqlPackages.pg_partman: add changelog to meta 2023-04-16 23:02:00 +00:00
R. Ryantm
3a03211580 postgresql11JitPackages.pg_partman: 4.7.1 -> 4.7.3 2023-04-16 23:01:00 +00:00
Mario Rodas
3bb23bd81a postgresqlPackages.plv8: 3.1.4 -> 3.1.5 2023-04-05 04:20:00 +00:00
Mario Rodas
c937feb1a1
Merge pull request #219826 from noctarius/master
Fixed TimescaleDB License Information
2023-04-01 09:19:04 -05:00
Mario Rodas
079209be0e postgresqlPackages.pgrouting: 3.4.2 -> 3.5.0
https://github.com/pgRouting/pgrouting/releases/tag/v3.5.0
2023-03-31 04:20:00 +00:00
Maximilian Bosch
9f2b4357c1
postgresql: save rebuilds of existing packages
...by using `+ lib.optionalString ...` rather than a substitution. That
way the phases don't have additional trailing white-spaces in the
non-JIT case which cause rebuilds.
2023-03-29 08:39:47 +02:00
Maximilian Bosch
a5a715bb24
postgresql_jit: fix darwin build
So, patchelf works on ELF files and these don't exist on Darwin. I'm not
aware of any other way to eliminate all references of the executable's
body while preserving library paths in the header. This still works, the
only problem is that darwin has a dependency on llvm.dev, so it's
runtime closure is larger.
2023-03-29 08:39:47 +02:00
Maximilian Bosch
43dbeae02d
postgresql: pass through JIT-enabled variant of non-JIT postgres and vice versa
This is useful if your postgresql version is dependant on
`system.stateVersion` and not pinned down manually. Then it's not
necessary to find out which version exactly is in use and define
`package` manually, but just stay with what NixOS provides as default:

    $ nix-instantiate -A postgresql
    /nix/store/82fzmb77mz2b787dgj7mn4a8i4f6l6sn-postgresql-14.7.drv
    $ nix-instantiate -A postgresql_jit
    /nix/store/qsjkb72fcrrfpsszrwbsi9q9wgp39m50-postgresql-14.7.drv
    $ nix-instantiate -A postgresql.withJIT
    /nix/store/qsjkb72fcrrfpsszrwbsi9q9wgp39m50-postgresql-14.7.drv
    $ nix-instantiate -A postgresql.withJIT.withoutJIT
    /nix/store/82fzmb77mz2b787dgj7mn4a8i4f6l6sn-postgresql-14.7.drv

I.e. you can use postgresql with JIT (for complex queries only[1]) like
this:

    services.postgresql = {
      enable = true;
      enableJIT = true;
    };

Performing a new override instead of re-using the `_jit`-variants for
that has the nice property that overlays for the original package apply
to the JIT-enabled variant, i.e.

    with import ./. {
      overlays = [
        (self: super: {
          postgresql = super.postgresql.overrideAttrs (_: { fnord = "snens"; });
        })
      ];
    };
    postgresql.withJIT.fnord

still gives the string `snens` whereas `postgresql_jit` doesn't have the
attribute `fnord` in its derivation.

[1] https://www.postgresql.org/docs/current/runtime-config-query.html#GUC-JIT-ABOVE-COST
2023-03-29 08:39:46 +02:00
Maximilian Bosch
2282fa73a1
postgresql: implement opt-in JIT support
Closes #150801

Note: I decided against resuming directly on #150801 because the
conflict was too big (and resolving it seemed too error-prone to me).
Also the `this`-refactoring could be done in an easier manner, i.e. by
exposing JIT attributes with the correct configuration. More on that
below.

This patch creates variants of the `postgresql*`-packages with JIT[1]
support. Please note that a lot of the work was derived from previous
patches filed by other contributors, namely dasJ, andir and abbradar,
hence the co-authored-by tags below.

Effectively, the following things have changed:

* For JIT variants an LLVM-backed stdenv with clang is now used as
  suggested by dasJ[2]. We need LLVM and CLang[3] anyways to build the
  JIT-part, so no need to mix this up with GCC's stdenv. Also, using the
  `dev`-output of LLVM and clang's stdenv for building (and adding llvm
  libs as build-inputs) seems more cross friendly to me (which will
  become useful when cross-building for JIT-variants will actually be
  supported).

* Plugins inherit the build flags from the Makefiles in
  `$out/lib/pgxs/src` (e.g. `-Werror=unguarded-availability-new`). Since
  some of the flags are clang-specific (and stem from the use of the
  CLang stdenv) and don't work on gcc, the stdenv of `pkgs.postgresql`
  is passed to the plugins. I.e., plugins for non-JIT variants are built
  with a gcc stdenv on Linux and plugins for JIT variants with a clang
  stdenv.

  Since `plv8` hard-codes `gcc` as `$CC` in its Makefile[4], I marked it
  as broken for JIT-variants of postgresql only.

* Added a test-matrix to confirm that JIT works fine on each
  `pkgs.postgresql_*_jit` (thanks Andi for the original test in
  #124804!).

* For each postgresql version, a new attribute
  `postgresql_<version>_jit` (and a corresponding
  `postgresqlPackages<version>JitPackages`) are now exposed for better
  discoverability and prebuilt artifacts in the binary cache.

* In #150801 the `this`-argument was replaced by an internal recursion.
  I decided against this approach because it'd blow up the diff even
  more which makes the readability way harder and also harder to revert
  this if necessary.

  Instead, it is made sure that `this` always points to the correct
  variant of `postgresql` and re-using that in an additional
  `.override {}`-expression is trivial because the JIT-variant is
  exposed in `all-packages.nix`.

* I think the changes are sufficiently big to actually add myself as
  maintainer here.

* Added `libxcrypt` to `buildInputs` for versions <v13. While
  building things with an LLVM stdenv, these versions complained that
  the extern `crypt()` symbol can't be found. Not sure what this is
  exactly about, but since we want to switch to libxcrypt for `crypt()`
  usage anyways[5] I decided to add it. For >=13 it's not relevant
  anymore anyways[6].

* JIT support doesn't work with cross-compilation. It is attempted to
  build LLVM-bytecode (`%.bc` is the corresponding `make(1)`-rule) for
  each sub-directory in `backend/` for the JIT apparently, but with a
  $(CLANG) that can produce binaries for the build, not the host-platform.

  I managed to get a cross-build with JIT support working with
  `depsBuildBuild = [ llvmPackages.clang ] ++ buildInputs`, but
  considering that the resulting LLVM IR isn't platform-independent this
  doesn't give you much. In fact, I tried to test the result in a VM-test,
  but as soon as JIT was used to optimize a query, postgres would
  coredump with `Illegal instruction`.

A common concern of the original approach - with llvm as build input -
was the massive increase of closure size. With the new approach of using
the LLVM stdenv directly and patching out references to the clang drv in
`$out` the effective closure size changes are:

    $ nix path-info -Sh $(nix-build -A postgresql_14)
    /nix/store/kssxxqycwa3c7kmwmykwxqvspxxa6r1w-postgresql-14.7	306.4M
    $ nix path-info -Sh $(nix-build -A postgresql_14_jit)
    /nix/store/xc7qmgqrn4h5yr4vmdwy56gs4bmja9ym-postgresql-14.7	689.2M

Most of the increase in closure-size stems from the `lib`-output of
LLVM

    $ nix path-info -Sh /nix/store/5r97sbs5j6mw7qnbg8nhnq1gad9973ap-llvm-11.1.0-lib
    /nix/store/5r97sbs5j6mw7qnbg8nhnq1gad9973ap-llvm-11.1.0-lib	349.8M

which is why this shouldn't be enabled by default.

While this is quite much because of LLVM, it's still a massive
improvement over the simple approach of adding llvm/clang as
build-inputs and building with `--with-llvm`:

    $ nix path-info -Sh $(nix-build -E '
	with import ./. {};
	postgresql.overrideAttrs ({ configureFlags ? [], buildInputs ? [], ... }: {
	  configureFlags = configureFlags ++ [ "--with-llvm" ];
	  buildInputs = buildInputs ++ [ llvm clang ];
	})' -j0)
    /nix/store/i3bd2r21c6c3428xb4gavjnplfqxn27p-postgresql-14.7	  1.6G

Co-authored-by: Andreas Rammhold <andreas@rammhold.de>
Co-authored-by: Janne Heß <janne@hess.ooo>
Co-authored-by: Nikolay Amiantov <ab@fmap.me>

[1] https://www.postgresql.org/docs/current/jit-reason.html
[2] https://github.com/NixOS/nixpkgs/pull/124804#issuecomment-864616931
    & https://github.com/NixOS/nixpkgs/pull/150801#issuecomment-1467868321
[3] This fails with the following error otherwise:
    ```
    configure: error: clang not found, but required when compiling --with-llvm, specify with CLANG=
    ```
[4] https://github.com/plv8/plv8/blob/v3.1.5/Makefile#L14
[5] https://github.com/NixOS/nixpkgs/pull/181764
[6] c45643d618
2023-03-29 08:39:46 +02:00
Christoph Engelbert (noctarius)
4f7f469c82
timescaledb: Fixed the licensing for the timescaledb package to be split into TSL (Timescale Community License) and Apache 2.0 components.
TimescaleDB provides two types of licenses, Apache 2.0 and Timescale Community License (TSL), with different feature sets. While all the code is in the same repository, the build
system can build both versions depending on the build parameters set in.

Co-authored-by: Emily Lange <git@indeednotjames.com>
2023-03-24 11:12:12 +01:00
Mario Rodas
9a2e14a323
Merge pull request #222453 from marsam/update-pgvector
postgresqlPackages.pgvector: 0.4.0 -> 0.4.1
2023-03-22 02:39:59 -05:00
Sandro
ffe1c9dc0f
postgresqlPackages.pg_repack: use clickable homepage 2023-03-22 00:03:59 +01:00
Mario Rodas
8a449b274a postgresqlPackages.pgvector: 0.4.0 -> 0.4.1 2023-03-21 04:20:00 +00:00
Mario Rodas
81c6568482 postgresqlPackages.plpgsql_check: 2.3.0 -> 2.3.3
https://github.com/okbob/plpgsql_check/releases/tag/v2.3.3
2023-03-14 04:20:00 +00:00
Mario Rodas
dae678ad8f
Merge pull request #186276 from typetetris/feature/add-timescaledb-toolkit
timescaledb_toolkit: init at 1.14.0
2023-03-11 06:50:54 -05:00
Mario Rodas
7e29e1b2c2 postgresqlPackages.timescaledb: 2.10.0 -> 2.10.1 2023-03-07 04:20:00 +00:00
Mario Rodas
70fd8b9fb8
Merge pull request #219423 from marsam/update-pg_ivm
postgresqlPackages.pg_ivm: 1.5 -> 1.5.1
2023-03-05 07:32:06 -05:00
Mario Rodas
12d836730a postgresqlPackages.pg_ivm: 1.5 -> 1.5.1
https://github.com/sraoss/pg_ivm/releases/tag/v1.5.1
2023-03-03 04:20:00 +00:00
1000101
c3aaa8fb5e
postgresqlPackages.timescaledb: 2.9.3 -> 2.10.0 (#217529) 2023-02-24 06:57:13 -05:00
Artturin
f9fdf2d402 treewide: move NIX_CFLAGS_COMPILE to the env attrset
with structuredAttrs lists will be bash arrays which cannot be exported
which will be a issue with some patches and some wrappers like cc-wrapper

this makes it clearer that NIX_CFLAGS_COMPILE must be a string as lists
in env cause a eval failure
2023-02-22 21:23:04 +02:00
Mario Rodas
62ad474f0f postgresqlPackages.pg_ivm: 1.4 -> 1.5
https://github.com/sraoss/pg_ivm/releases/tag/v1.5
2023-02-17 04:20:00 +00:00
Eric Wolf
9dc7a05a85 cargo-pgx/timescaledb_toolkit: add nixos test 2023-02-13 10:58:26 +01:00
Eric Wolf
4e189d769b timescaledb-toolkit: init at 1.14.0 2023-02-13 10:58:26 +01:00
github-actions[bot]
87f957b5e2
Merge master into staging-next 2023-02-12 16:02:45 +00:00
Mario Rodas
7fcab962d0 postgresqlPackages.pg_cron: 1.4.2 -> 1.5.1
https://github.com/citusdata/pg_cron/releases/tag/v1.5.0
https://github.com/citusdata/pg_cron/releases/tag/v1.5.1
2023-02-11 04:20:00 +00:00
ajs124
940b7d4ee1 postgresql_15: 15.1 -> 15.2
https://www.postgresql.org/docs/release/15.2/
2023-02-09 19:24:02 +01:00
ajs124
894c6a5756 postgresql_14: 14.6 -> 14.7
https://www.postgresql.org/docs/release/14.7/
2023-02-09 19:23:49 +01:00
ajs124
b908126eaa postgresql_13: 13.9 -> 13.10
https://www.postgresql.org/docs/release/13.10/
2023-02-09 19:23:29 +01:00
ajs124
0304c27c11 postgresql_12: 12.13 -> 12.14
https://www.postgresql.org/docs/release/12.14/
2023-02-09 19:23:14 +01:00
ajs124
8aee83b4af postgresql_11: 11.18 -> 11.19
https://www.postgresql.org/docs/release/11.19/
2023-02-09 19:22:49 +01:00
1000101
64c4077f92 timescaledb: 2.9.2 -> 2.9.3 2023-02-06 18:37:23 +01:00
Mario Rodas
aefde6e88a
Merge pull request #213701 from marsam/update-plpgsql_check
postgresqlPackages.plpgsql_check: 2.2.6 -> 2.3.0
2023-01-31 07:34:34 -05:00
Mario Rodas
0ac4b2825c postgresqlPackages.plpgsql_check: 2.2.6 -> 2.3.0
https://github.com/okbob/plpgsql_check/releases/tag/v2.3.0
2023-01-28 04:20:00 +00:00
Mario Rodas
c74d8ff134 postgresqlPackages.pgvector: 0.3.2 -> 0.4.0 2023-01-27 04:20:00 +00:00
Eric Wolf
8e7698746a
timescaledb: 2.9.1 -> 2.9.2, comment updated 2023-01-25 16:42:06 +02:00
Alyssa Ross
e88859c53c postgresql: fix enableSystemd on other Unixes
It's not just Darwin that doesn't have systemd.
2023-01-18 12:14:49 +00:00
Eric Wolf
56f3cb523e timescaledb: 2.9.0 -> 2.9.1 2023-01-07 09:00:40 +01:00
Ryan Trinkle
e88449419a postgresqlPackages.temporal_tables: 1.2.0 -> 2021-02-20
Version 1.2.0 was released in 2017, and there have been no releases
since then. However, commit 3ce22da adds support for PostgreSQL 13.

Move the repository owner to `arkhipov`, since it's the one used by PGXN
https://pgxn.org/dist/temporal_tables/
2023-01-04 17:02:58 +00:00
Mario Rodas
ee44c0e028
Merge pull request #206711 from ivan/pgroonga-2.4.2
postgresqlPackages.pgroonga: 2.4.0 -> 2.4.2
2023-01-03 09:22:10 -05:00
Mario Rodas
6688fdf6a4
Merge pull request #206710 from ivan/pg_ivm-1.4
postgresqlPackages.pg_ivm: 1.3 -> 1.4
2023-01-03 09:21:55 -05:00
Mario Rodas
61218848be
Merge pull request #206792 from r-ryantm/auto-update/plpgsql_check
postgresql11Packages.plpgsql_check: 2.2.4 -> 2.2.5
2023-01-03 09:19:59 -05:00
Mario Rodas
c1c7ae2d6c postgresqlPackages.plpgsql_check: 2.2.5 -> 2.2.6 2023-01-03 04:20:00 +00:00
Dominic Steinitz
1aaf43022f postgresqlPackages.pgaudit: init at 1.7.0 2022-12-29 15:38:20 +00:00
R. Ryantm
644c9c2f08 postgresql11Packages.pgrouting: 3.3.2 -> 3.4.2 2022-12-27 19:13:19 +00:00
1000101
1b8b20bfc0 postgresqlPackages.timescaledb: 2.8.1 -> 2.9.0 2022-12-19 21:18:03 +01:00
R. Ryantm
c8663bb893 postgresql11Packages.plpgsql_check: 2.2.4 -> 2.2.5 2022-12-19 01:19:02 +00:00
Ivan Kozik
58b20af68b postgresqlPackages.pgroonga: 2.4.0 -> 2.4.2 2022-12-18 13:33:42 +00:00
Ivan Kozik
b3f1fee940 postgresqlPackages.pg_ivm: 1.3 -> 1.4 2022-12-18 13:21:45 +00:00
figsoda
ec8cb34358 treewide: fix typos 2022-12-17 19:39:44 -05:00
Robert Scott
16ae6d6136
Merge pull request #202471 from timothyklim/staging
postgresql_15: build with support for zstd compression
2022-11-26 13:30:30 +00:00
timothy
621bb272a1 postgresql_15: build with support for zstd compression 2022-11-24 09:44:10 +07:00
Mario Rodas
764fb93f37 postgresqlPackages.pgvector: 0.3.0 -> 0.3.2 2022-11-23 04:20:00 +00:00
Mario Rodas
727fcd407e postgresqlPackages.plpgsql_check: 2.2.3 -> 2.2.4
https://github.com/okbob/plpgsql_check/releases/tag/v2.2.4
2022-11-23 04:20:00 +00:00
Mario Rodas
e8ef6a4eb6 postgresqlPackages.postgis: 3.3.1 -> 3.3.2
https://git.osgeo.org/gitea/postgis/postgis/raw/tag/3.3.2/NEWS
2022-11-21 04:20:00 +00:00
Vladimír Čunát
ac95eb6cac
Merge branch 'master' into staging-next 2022-11-20 15:44:43 +01:00
Mario Rodas
1b71b2b8fe
Merge pull request #202003 from marsam/fix-pg_repack
postgresqlPackages.pg_repack: use release tag
2022-11-20 09:08:41 -05:00
github-actions[bot]
d73198b179
Merge master into staging-next 2022-11-18 18:01:19 +00:00
Krisztian Szabo
6390d01e13 postgresqlPackages.pg_relusage: init at 0.0.1 2022-11-18 13:24:29 +01:00
Mario Rodas
e6262471af postgresqlPackages.pg_repack: use release tag
https://github.com/reorg/pg_repack/releases/tag/ver_1.4.8
2022-11-18 04:20:00 +00:00
Mario Rodas
876ea29d50 postgresqlPackages.plpgsql_check: 2.2.2 -> 2.2.3
https://github.com/okbob/plpgsql_check/releases/tag/v2.2.3
2022-11-18 04:20:00 +00:00
Mario Rodas
b38cf2c9ae postgresql_15: 15.0 -> 15.1
https://www.postgresql.org/docs/release/15.1/
2022-11-11 04:20:00 +00:00
Mario Rodas
9a0ebf5d47 postgresql_14: 14.5 -> 14.6
https://www.postgresql.org/docs/release/14.6/
2022-11-11 04:20:00 +00:00
Mario Rodas
4fc31c2539 postgresql_13: 13.8 -> 13.9
https://www.postgresql.org/docs/release/13.9/
2022-11-11 04:20:00 +00:00
Mario Rodas
0e7dc2534e postgresql_12: 12.12 -> 12.13
https://www.postgresql.org/docs/release/12.13/
2022-11-11 04:20:00 +00:00
Mario Rodas
06a7064ec3 postgresql_11: 11.17 -> 11.18
https://www.postgresql.org/docs/release/11.18/
2022-11-11 04:20:00 +00:00
Jan Tojnar
76bd24f8fc postgresql: remove code for no longer supported versions 2022-11-01 12:33:14 +01:00
Aaron Jheng
3a9a0f86ec
postgresqlPackages.plv8: use default V8 2022-10-28 13:02:09 +02:00
Mario Rodas
484f1f8330 postgresqlPackages.pgvector: 0.2.7 -> 0.3.0 2022-10-22 04:20:00 +00:00
github-actions[bot]
4f07e7f326
Merge master into staging-next 2022-10-15 06:07:54 +00:00
Mario Rodas
a42c1c674a
Merge pull request #195786 from jtojnar/plv8
postgresqlPackages.plv8: 3.0.0 → 3.1.4
2022-10-14 21:36:50 -05:00
github-actions[bot]
cc090d2b94
Merge master into staging-next 2022-10-14 12:01:35 +00:00
Mario Rodas
c7894e1e73 postgresql15Packages.pgjwt: 2017-04-24 -> 2021-11-13 2022-10-14 04:20:00 +00:00
Mario Rodas
b0ea9c6db8 postgresql15Packages.pg_partman: 4.7.0 -> 4.7.1 2022-10-14 04:20:00 +00:00
Mario Rodas
19a7affebe postgresql15Packages.tsearch_extras: remove unneeded parameter 2022-10-14 04:20:00 +00:00
Mario Rodas
d45bce3fe6 postgresql15Packages.wal2json: 2.4 -> 2.5
https://github.com/eulerto/wal2json/releases/tag/wal2json_2_5
2022-10-14 04:20:00 +00:00
Mario Rodas
97845bb252 postgresql15Packages.plpgsql_check: 2.2.1 -> 2.2.2
https://github.com/okbob/plpgsql_check/releases/tag/v2.2.2
2022-10-14 04:20:00 +00:00
Mario Rodas
9851053baa postgresql15Packages.pg_repack: 1.4.7 -> 1.4.8 2022-10-13 23:20:00 -05:00
Mario Rodas
f0456a97b4 postgresql15Packages.periods: 1.2 -> 1.2.1
https://github.com/xocolatl/periods/releases/tag/v1.2.1
2022-10-14 04:20:00 +00:00
Mario Rodas
972f78b6fb postgresql15Packages.pgvector: fix build for PostgreSQL 15 2022-10-14 04:20:00 +00:00
Jan Tojnar
50b049554f postgresqlPackages.plv8: Add regression tests
This is based on postgresqlPackages.age.
2022-10-14 02:39:56 +02:00
Jan Tojnar
9255d4b5bc postgresqlPackages.plv8: 3.0.0 → 3.1.4
https://github.com/plv8/plv8/compare/v3.0.0...v3.1.4

- Format the expression a bit.
- Had to apply a patch since upstream removed the shared Makefile.
  At least we can drop the manual build flags.
- Move to a subdirectory, since we are working with multiple files now.
- Add `dontConfigure` since there is no `configure` script.
- Switch to `preConfigure` to `postPatch` as there is no configuration.
2022-10-14 02:30:24 +02:00
Justin Wood
fbe3995298 postgresql_15: init at 15.0
https://www.postgresql.org/docs/15/release-15.html
2022-10-13 11:56:40 -04:00
github-actions[bot]
cdfb8a30a4
Merge staging-next into staging 2022-10-08 12:02:12 +00:00
Mario Rodas
f3e5a86391 postgresqlPackages.pgroonga: 2.3.9 -> 2.4.0 2022-10-08 04:00:00 +00:00
Mario Rodas
582631fb34
Merge pull request #194936 from marsam/update-pg_auto_failover
postgresqlPackages.pg_auto_failover: 1.6.4 -> 2.0
2022-10-07 11:09:52 -05:00
Mario Rodas
7b57b52721
Merge pull request #194906 from marsam/update-smlar
postgresqlPackages.smlar: 2020-10-07 -> 2021-11-08
2022-10-07 09:48:35 -05:00
Mario Rodas
516cdc8831 postgresqlPackages.smlar: 2020-10-07 -> 2021-11-08 2022-10-07 04:20:00 +00:00
Mario Rodas
61d95fdcf0 postgresqlPackages.timescaledb: 2.8.0 -> 2.8.1
https://github.com/timescale/timescaledb/releases/tag/2.8.1
2022-10-07 04:20:00 +00:00
Mario Rodas
405db07799
Merge pull request #167047 from helsinki-systems/drop/postgresql10
postgresql: remove 10.x
2022-10-06 21:32:46 -05:00
Mario Rodas
b8c4d2a721 postgresqlPackages.pg_auto_failover: 1.6.4 -> 2.0
https://github.com/citusdata/pg_auto_failover/releases/tag/v2.0
2022-10-06 04:20:00 +00:00
Ivan Kozik
8d807a1026 postgresqlPackages.pg_ivm: 1.2 -> 1.3 2022-10-05 22:36:23 +00:00
Ivan Kozik
af9fb6eb3b postgresqlPackages.pgroonga: also install the pgroonga_database extension
This extension contains the pgoronga_database_remove() function, which
can be used to actually remove the pgrn* files, because `DROP INDEX`
on a pgroonga index does not actually delete the index data.

https://pgroonga.github.io/reference/modules/pgroonga-database.html

https://pgroonga.github.io/reference/functions/pgroonga-database-remove.html
2022-09-29 19:40:10 +00:00
Mario Rodas
eaecf0149a
Merge pull request #192508 from DeeUnderscore/update/postgresql-rum-1.3.13
postgresqlPackages.rum: 1.3.12 -> 1.3.13
2022-09-23 01:13:35 -05:00
Mario Rodas
00daf21bda
Merge pull request #192533 from r-ryantm/auto-update/plpgsql_check
postgresql11Packages.plpgsql_check: 2.1.9 -> 2.2.1
2022-09-23 01:11:21 -05:00
R. Ryantm
307ac4259c postgresql11Packages.pgroonga: 2.3.8 -> 2.3.9 2022-09-23 02:02:00 +00:00
R. Ryantm
3c4b51f390 postgresql11Packages.plpgsql_check: 2.1.9 -> 2.2.1 2022-09-23 01:57:26 +00:00
D Anzorge
383b0ea9a5 postgresqlPackages.rum: 1.3.12 -> 1.3.13
https://github.com/postgrespro/rum/releases/tag/1.3.13
2022-09-23 01:10:07 +02:00
Mario Rodas
e86fa2f90d
Merge pull request #191016 from marsam/update-pg-age
postgresql11Packages.age: 1.0.0-rc1 -> 1.1.0-rc0
2022-09-13 08:46:22 -05:00
Mario Rodas
16074f96ce postgresql11Packages.age: 1.0.0-rc1 -> 1.1.0-rc0
https://github.com/apache/age/releases/tag/v1.1.0-rc0
2022-09-13 04:20:00 +00:00
Mario Rodas
dfcbbdaa93 postgresqlPackages.postgis: 3.3.0 -> 3.3.1 2022-09-13 04:20:00 +00:00
D Anzorge
75478e097c postgresqlPackages.rum: 1.3.11 -> 1.3.12
https://github.com/postgrespro/rum/releases/tag/1.3.12
2022-09-11 20:15:08 +02:00
R. Ryantm
0cac2f536f postgresql11Packages.plpgsql_check: 2.1.8 -> 2.1.9 2022-09-06 02:30:52 +00:00
Mario Rodas
4137382abc postgresqlPackages.timescaledb: 2.7.2 -> 2.8.0
https://github.com/timescale/timescaledb/releases/tag/2.8.0
2022-09-01 04:20:00 +00:00
R. Ryantm
80e9c6a933 postgresql11Packages.pgrouting: 3.3.1 -> 3.3.2 2022-09-02 00:22:26 +00:00
Mario Rodas
55f5af9799 postgresqlPackages.postgis: 3.2.3 -> 3.3.0
https://postgis.net/2022/08/27/postgis-3.3.0-released/
2022-08-27 04:20:00 +00:00
Mario Rodas
74195d7b7f
Merge pull request #188506 from marsam/update-pg_hll
postgresqlPackages.pg_hll: 2.16 -> 2.17
2022-08-27 10:01:10 -05:00
Mario Rodas
9533f2752c
Merge pull request #187882 from ivan/pg_ivm
postgresqlPackages.pg_ivm: init at 1.2
2022-08-27 09:57:18 -05:00
Artturi
79c42aa06c
Merge pull request #186564 from Artturin/crossevalfixes
Fixes for cross-compilation
2022-08-27 17:49:00 +03:00
Mario Rodas
45a63492f2 postgresqlPackages.pg_hll: 2.16 -> 2.17 2022-08-27 04:20:00 +00:00
Mario Rodas
1975d5997f postgresqlPackages.pg_topn: 2.4.0 -> 2.5.0 2022-08-27 04:20:00 +00:00
Ivan Kozik
a895a0b3ad postgresqlPackages.pg_ivm: init at 1.2 2022-08-22 14:11:30 +00:00
github-actions[bot]
e5f0224881
Merge master into staging-next 2022-08-21 00:02:49 +00:00
Mario Rodas
461ce34ec1 postgresqlPackages.postgis: 3.2.2 -> 3.2.3 2022-08-20 04:20:00 +00:00
Artturin
c6568adb00 treewide: makeWrapper buildInputs to nativeBuildInputs
most found with https://github.com/siraben/nix-lint
2022-08-16 13:14:19 +03:00
ajs124
aa1483114b postgresql_10: remove ahead of 22.11 release, because it will go EOL 2022-11-10 2022-08-15 22:36:31 +02:00
Mario Rodas
bfa6cb4d6f
Merge pull request #186170 from helsinki-systems/upd/postgresql
postgresql: 10.21 -> 10.22, 11.16 -> 11.17, 12.11 -> 12.12, 13.7 -> 13.8, 14.4 -> 14.5
2022-08-13 03:28:37 -05:00
Mario Rodas
b27618473a
Merge pull request #184183 from r-ryantm/auto-update/groonga
groonga: 11.1.0 -> 12.0.5
2022-08-13 00:38:41 -05:00
Mario Rodas
545b691e4e postgresqlPackages.pgroonga: 2.3.7 -> 2.3.8 2022-08-12 04:20:00 +00:00
Mario Rodas
35b284aba5 postgresqlPackages.pgvector: 0.2.6 -> 0.2.7 2022-08-12 04:20:00 +00:00
R. Ryantm
c32b08f41f postgresql11Packages.pg_partman: 4.6.2 -> 4.7.0 2022-08-11 22:32:35 +00:00
ajs124
6d980c0d8b postgresql_10: 10.21 -> 10.22
fixes CVE-2022-2625
2022-08-11 23:41:51 +02:00
ajs124
d1213d3dc8 postgresql_11: 11.16 -> 11.17
fixes CVE-2022-2625
2022-08-11 23:41:49 +02:00
ajs124
2793fbe755 postgresql_12: 12.11 -> 12.12
fixes CVE-2022-2625
2022-08-11 23:41:47 +02:00
ajs124
4059636757 postgresql_13: 13.7 -> 13.8
fixes CVE-2022-2625
2022-08-11 23:41:44 +02:00
ajs124
c9aa86be11 postgresql_14: 14.4 -> 14.5
fixes CVE-2022-2625
2022-08-11 23:41:39 +02:00
ajs124
993dde135f postgresql: sha256 -> hash 2022-08-11 23:36:01 +02:00
R. Ryantm
47007b9d20 postgresql11Packages.repmgr: 5.3.1 -> 5.3.2 2022-08-02 00:35:02 +00:00
Mario Rodas
5abc268655
Merge pull request #184467 from r-ryantm/auto-update/plpgsql_check
postgresql11Packages.plpgsql_check: 2.1.5 -> 2.1.8
2022-08-01 08:18:13 -05:00
Mario Rodas
6aa7a197f1
Merge pull request #184445 from r-ryantm/auto-update/pg_partman
postgresql11Packages.pg_partman: 4.6.0 -> 4.6.2
2022-08-01 08:16:51 -05:00
R. Ryantm
2b2970b350 postgresql11Packages.plpgsql_check: 2.1.5 -> 2.1.8 2022-08-01 06:40:24 +00:00
R. Ryantm
2e4800d710 postgresql11Packages.pg_partman: 4.6.0 -> 4.6.2 2022-08-01 05:37:54 +00:00
R. Ryantm
6fa15d8874 postgresql11Packages.pgrouting: 3.3.0 -> 3.3.1 2022-08-01 05:33:50 +00:00
Mario Rodas
6d1f689374
Merge pull request #182808 from robx/postgresql-static-systemd
postgresql: disable systemd support for static builds
2022-07-30 18:54:04 -05:00
Robert Vollmert
f8e9b39cdb postgresql: less confusing argument organization 2022-07-26 10:30:37 +02:00
Robert Vollmert
037dd36923 postgresql: disable systemd support for static builds 2022-07-26 10:23:23 +02:00
Mario Rodas
6e6a515607 postgresqlPackages.timescaledb: 2.7.0 -> 2.7.2
https://github.com/timescale/timescaledb/releases/tag/2.7.1
https://github.com/timescale/timescaledb/releases/tag/2.7.2
2022-07-26 04:20:00 +00:00
Mario Rodas
c13b76ef6e
Merge pull request #182592 from marsam/update-pgroonga
postgresqlPackages.pgroonga: 2.3.6 -> 2.3.7
2022-07-23 19:47:02 -05:00
Mario Rodas
c748802922 postgresqlPackages.pgroonga: 2.3.6 -> 2.3.7 2022-07-23 04:20:00 +00:00
Mario Rodas
8ea2c95ad8 postgresqlPackages.postgis: 3.2.1 -> 3.2.2 2022-07-23 04:20:00 +00:00
Mario Rodas
dc5589af4c
Merge pull request #181824 from marsam/update-postgresql-age
postgresql11Packages.age: 0.6.0 -> 1.0.0-rc1
2022-07-17 14:34:45 -05:00
Mario Rodas
260542c946 postgresql11Packages.age: 0.6.0 -> 1.0.0-rc1 2022-07-16 04:20:00 +00:00
Mario Rodas
363b77cae5 postgresqlPackages.pg_cron: 1.4.1 -> 1.4.2
https://github.com/citusdata/pg_cron/releases/tag/v1.4.2
2022-07-16 04:20:00 +00:00
ajs124
a0718341e6 maintainers: remove volth
github account deleted
2022-06-29 00:52:12 +02:00
timothy
c1136b341e
postgresql_14: 14.3 -> 14.4 (#177903) 2022-06-16 23:34:53 -05:00
1000101
fdbfdc443c postgresqlPackages.pg_hint_plan: init at 14-1.4.0 2022-06-11 00:44:25 +02:00
Mario Rodas
127fcdd962 postgresql13Packages.cstore_fdw: unbreak 2022-06-01 04:20:00 +00:00
Rick van Schijndel
033d5579c2
treewide: pkgs/servers/sql: mark 2 psql extension broken 2022-05-30 13:42:58 +02:00
Rick van Schijndel
879d278253
treewide: pkgs/servers: mark broken for darwin 2022-05-30 13:42:58 +02:00
D Anzorge
344cbed64f postgresqlPackages.rum: 1.3.9 -> 1.3.11
* https://github.com/postgrespro/rum/releases/tag/1.3.10
* https://github.com/postgrespro/rum/releases/tag/1.3.11
2022-05-28 17:34:30 +02:00
Mario Rodas
ae2096c528 postgresqlPackages.pgvector: 0.2.5 -> 0.2.6 2022-05-25 04:20:00 +00:00
Mario Rodas
8d1ad3e54f
Merge pull request #173434 from euank/wal2json
postgresqlPackages.wal2json: init at 2.4
2022-05-25 01:28:36 -05:00
1000101
06eee30956 postgresqlPackages.timescaledb: 2.6.1 -> 2.7.0 2022-05-24 13:52:49 +02:00
github-actions[bot]
deef19c9a1
Merge master into staging-next 2022-05-22 06:01:27 +00:00
Mario Rodas
ae9058c49f postgresql11Packages.pipelinedb: mark as broken for PostgreSQL≠11 2022-05-20 04:20:00 +00:00
Euan Kemp
4720f3ac73 postgresqlPackages.wal2json: init at 2.4 2022-05-17 22:47:12 +00:00
Jan Tojnar
d1b77f990f Merge branch 'staging-next' into staging
Conflicts:
	pkgs/applications/networking/browsers/firefox/common.nix between f6c5761935 and a373324120.
2022-05-15 07:08:29 +02:00
Mario Rodas
9457a82e42
Merge pull request #171459 from ivan/postgresql-is-14
nixos/postgresql: use postgres 14 for 22.05
2022-05-13 06:44:25 -05:00
Mario Rodas
eb452cce05 postgresqlPackages.plpgsql_check: 2.1.3 -> 2.1.5 2022-05-12 04:20:00 +00:00
Mario Rodas
242c4aaf39 postgresql_14: 14.2 -> 14.3
https://www.postgresql.org/docs/release/14.3/
2022-05-12 04:20:00 +00:00
Mario Rodas
84e86fc9ee postgresql_13: 13.6 -> 13.7
https://www.postgresql.org/docs/release/13.7/
2022-05-12 04:20:00 +00:00
Mario Rodas
9d599ca124 postgresql_12: 12.10 -> 12.11
https://www.postgresql.org/docs/release/12.11/
2022-05-12 04:20:00 +00:00
Mario Rodas
74707e7b12 postgresql_11: 11.15 -> 11.16
https://www.postgresql.org/docs/release/11.16/
2022-05-12 04:20:00 +00:00
Mario Rodas
5a19730b5d postgresql_10: 10.20 -> 10.21
https://www.postgresql.org/docs/release/10.21/
2022-05-12 04:20:00 +00:00
Ivan Kozik
c6a4414766 postgresqlPackages.pg_safeupdate: 1.2 -> 1.4
This fixes the build with PostgreSQL 14.
2022-05-11 23:51:28 +00:00
Mario Rodas
ef319b883e
Merge pull request #168701 from 1000101/jsonb_deep_sum
postgresqlPackages.jsonb_deep_sum: init at unstable-2021-12-24
2022-04-24 19:09:15 -05:00
1000101
a9e951eb88 jsonb_deep_sum: init at unstable-2021-12-24 2022-04-18 13:31:03 +02:00
1000101
0c4287be6a postgresqlPackages.timescaledb: 2.6.0 -> 2.6.1 2022-04-15 00:20:07 +02:00
Mario Rodas
1e9b26194e
postgresqlPackages.pg_auto_failover: 1.6.3 -> 1.6.4 (#168611)
https://github.com/citusdata/pg_auto_failover/releases/tag/v1.6.4
2022-04-14 05:52:02 -05:00
R. Ryantm
351814a151 postgresql11Packages.plpgsql_check: 2.1.2 -> 2.1.3 2022-04-08 23:38:24 +00:00
R. Ryantm
ecc5b85464 postgresql11Packages.pgroonga: 2.3.5 -> 2.3.6 2022-03-24 22:53:12 +00:00
Mario Rodas
53cbd9cc57
Merge pull request #164099 from r-ryantm/auto-update/pgroonga
postgresql11Packages.pgroonga: 2.3.4 -> 2.3.5
2022-03-19 11:53:24 -05:00
R. Ryantm
58760ac1a4 postgresql11Packages.pgroonga: 2.3.4 -> 2.3.5 2022-03-14 11:22:50 +00:00
github-actions[bot]
38910351b7
Merge master into staging-next 2022-03-13 18:01:01 +00:00
D Anzorge
fd870f4e7d postgresqlPackages.rum: init at 1.3.9 2022-03-07 23:50:41 +01:00
AndersonTorres
ed2b1b4b90 Merge branch 'master' into staging-next 2022-02-26 21:04:25 -03:00
1000101
9d4d64358e postgresqlPackages.timescaledb: 2.5.2 -> 2.6.0 2022-02-23 16:22:26 +01:00
github-actions[bot]
3a2427bf02
Merge staging-next into staging 2022-02-20 18:01:37 +00:00
R. Ryantm
e7597bcb5a postgresql11Packages.repmgr: 5.3.0 -> 5.3.1 2022-02-20 12:39:22 +00:00
github-actions[bot]
f70caf75e4
Merge staging-next into staging 2022-02-18 12:02:06 +00:00
R. Ryantm
f9012ac8ce postgresql11Packages.postgis: 3.2.0 -> 3.2.1 2022-02-14 13:22:58 +00:00
github-actions[bot]
9b116ea766
Merge staging-next into staging 2022-02-13 12:01:56 +00:00
R. Ryantm
4bc77d37bc postgresql11Packages.plpgsql_check: 2.1.0 -> 2.1.2 2022-02-13 06:15:27 +00:00
github-actions[bot]
f4ac72831a
Merge staging-next into staging 2022-02-13 00:02:26 +00:00
Mario Rodas
4cc1cb3646 postgresql_14: 14.1 -> 14.2
https://www.postgresql.org/docs/release/14.2/
2022-02-12 04:20:00 +00:00
Mario Rodas
9536a63fbb postgresqlPackages.pgvector: 0.2.2 -> 0.2.5 2022-02-12 04:20:00 +00:00
Mario Rodas
42722790c8 postgresql_13: 13.5 -> 13.6
https://www.postgresql.org/docs/release/13.6/
2022-02-12 04:20:00 +00:00
Mario Rodas
db885e4c25 postgresqlPackages.timescaledb: 2.5.1 -> 2.5.2
https://github.com/timescale/timescaledb/releases/tag/2.5.2
2022-02-12 04:20:00 +00:00
Mario Rodas
c6b58fecd0 postgresql_12: 12.9 -> 12.10
https://www.postgresql.org/docs/release/12.10/
2022-02-12 04:20:00 +00:00
Mario Rodas
726aad3796 postgresql_11: 11.14 -> 11.15
https://www.postgresql.org/docs/release/11.15/
2022-02-12 04:20:00 +00:00
Mario Rodas
fb3637ef1d postgresql_10: 10.19 -> 10.20
https://www.postgresql.org/docs/release/10.20/
2022-02-12 04:20:00 +00:00
Mario Rodas
c3b6ef7ad5 postgresqlPackages.pgvector: 0.2.0 -> 0.2.2 2022-01-19 04:20:00 +00:00
Nikolay Amiantov
5e8ff1b59d
Merge pull request #154007 from abbradar/v8
v8: 8.4.255 -> 9.6.180.21
2022-01-16 11:45:41 +03:00
Mario Rodas
f3a0ca4172
Merge pull request #153114 from r-ryantm/auto-update/plpgsql_check
postgresql11Packages.plpgsql_check: 2.0.6 -> 2.1.0
2022-01-15 11:05:20 -05:00
Nikolay Amiantov
2405472dd6 postgresqlPackages.plv8: add smoke test
This ensures that PLV8 doesn't crash.
2022-01-09 10:33:03 +03:00
Nikolay Amiantov
e1e4e1c2cb postgresqlPackages.tds_fdw: 2.0.2 -> unstable-2021-12-14
Unmark as broken.
2022-01-09 09:44:30 +03:00
Nikolay Amiantov
a4c6e9e084 postgresqlPackages.plv8: 2.3.15 -> 3.0.0
Use v8 8.8.x.
2022-01-08 18:24:55 +03:00
R. Ryantm
0d92b8ae4e postgresql11Packages.plpgsql_check: 2.0.6 -> 2.1.0 2022-01-01 22:20:04 +00:00
Jan Tojnar
cbb630c26b
Merge pull request #150751 from jtojnar/plv8-3
postgresqlPackages.plv8: 2.3.15 → 3.0.0
2021-12-30 16:30:06 +01:00
Jan Tojnar
ec53e861f4 postgresqlPackages.plv8: 2.3.15 → 3.0.0
https://github.com/plv8/plv8/blob/v3.0.0/Changes
2021-12-27 12:05:02 +01:00
Mario Rodas
6978d8befa postgresqlPackages.postgis: 3.1.4 -> 3.2.0 2021-12-19 04:20:00 +00:00
Mario Rodas
507e9bde13
Merge pull request #149546 from r-ryantm/auto-update/plr
postgresql11Packages.plr: 8.4.4 -> 8.4.5
2021-12-11 16:57:58 -05:00
Jan Tojnar
d5c902b131 postgresqlPackages.plv8: install all files
Previously, the update complained due to missing migration files:

	db=# alter extension plv8 update to '2.3.15';
	ERROR:  extension "plv8" has no update path from version "2.3.13" to version "2.3.15"

Now it fails for a different reason:

	db=# alter extension plv8 update to '2.3.15';
	ERROR:  could not access file "$libdir/plv8-2.3.13": No such file or directory

Changing installation directory using DESTDIR is an ugly hack that might backfire
but PGXS does not currently seem to allow overriding the installation directory.
2021-12-09 00:12:21 +01:00
R. Ryantm
476e201493 postgresql11Packages.plr: 8.4.4 -> 8.4.5 2021-12-08 07:22:12 +00:00
Mario Rodas
0bf7da2e18 postgresqlPackages.timescaledb: 2.5.0 -> 2.5.1
https://github.com/timescale/timescaledb/releases/tag/2.5.1
2021-12-08 04:20:00 +00:00
Mario Rodas
b83dbd6738
Merge pull request #149548 from r-ryantm/auto-update/plpgsql_check
postgresql11Packages.plpgsql_check: 2.0.5 -> 2.0.6
2021-12-08 03:32:37 -05:00
Mario Rodas
dc1b9f9827
Merge pull request #149540 from r-ryantm/auto-update/pgrouting
postgresql11Packages.pgrouting: 3.2.1 -> 3.3.0
2021-12-08 02:29:53 -05:00
R. Ryantm
1f8ee144f9 postgresql11Packages.plpgsql_check: 2.0.5 -> 2.0.6 2021-12-08 07:28:14 +00:00
Mario Rodas
7a7ccf5f3e
Merge pull request #149491 from r-ryantm/auto-update/pgtap
postgresql11Packages.pgtap: 1.1.0 -> 1.2.0
2021-12-08 01:41:08 -05:00
R. Ryantm
0ef8a922bf postgresql11Packages.pgrouting: 3.2.1 -> 3.3.0 2021-12-08 06:36:01 +00:00
R. Ryantm
46a15c0838 postgresql11Packages.pg_partman: 4.5.1 -> 4.6.0 2021-12-08 04:32:38 +00:00
R. Ryantm
83e078ecb3 postgresql11Packages.pgtap: 1.1.0 -> 1.2.0 2021-12-08 00:24:28 +00:00
Maximilian Bosch
c959de5b30
Merge pull request #148360 from helsinki-systems/drop/pg96
postgresql_9_6: drop
2021-12-06 21:57:05 +01:00
Sergei Trofimovich
4752689cfb postgresqlPackages.pg_auto_failover: upstream fix for ncurses-6.3
Without the change the build fails as:

    watch.c:673:2: error: format not a string literal and no format arguments [-Werror=format-security]
      673 |  mvprintw(r, context->cols - strlen(help), help);
          |  ^~~~~~~~
2021-12-04 18:35:22 +00:00
Nick Cao
7941fcd361
postgresql: fix build on riscv 2021-12-03 22:43:48 +08:00
ajs124
757dd008b2 postgresql_9_6: drop 2021-12-03 01:14:29 +01:00
github-actions[bot]
3bebe2a3f2
Merge master into staging-next 2021-12-01 06:01:17 +00:00
Mario Rodas
ceec67c680 postgresqlPackages.pgroonga: 2.3.2 -> 2.3.4 2021-11-27 04:20:00 +00:00
Mario Rodas
85852b941d postgresql_14: 14.0 -> 14.1
https://www.postgresql.org/docs/release/14.1/
2021-11-18 04:20:00 +00:00
Mario Rodas
67abda7877 postgresql_13: 13.4 -> 13.5
https://www.postgresql.org/docs/release/13.5/
2021-11-18 04:20:00 +00:00
Mario Rodas
c046c5d6ff postgresql_12: 12.8 -> 12.9
https://www.postgresql.org/docs/release/12.9/
2021-11-18 04:20:00 +00:00
Mario Rodas
b701405be7 postgresql_11: 11.13 -> 11.14
https://www.postgresql.org/docs/release/11.14/
2021-11-18 04:20:00 +00:00
Mario Rodas
1d35ef9ee0 postgresql_10: 10.18 -> 10.19
https://www.postgresql.org/docs/release/10.19/
2021-11-18 04:20:00 +00:00
Mario Rodas
7f523aa88a postgresql_9_6: 9.6.23 -> 9.6.24
https://www.postgresql.org/docs/release/9.6.24/
2021-11-18 04:20:00 +00:00
Mario Rodas
574a1d605a postgresqlPackages.pg_auto_failover: 1.6.2 -> 1.6.3
https://github.com/citusdata/pg_auto_failover/releases/tag/v1.6.3
2021-11-14 04:20:00 +00:00
Ivan Kozik
9e1e3f5365 postgresql: add myself to maintainers 2021-11-08 11:40:40 +00:00
Ivan Kozik
7a12cae1b1 postgresql_14: build with support for lz4 compression 2021-11-08 11:40:40 +00:00
R. RyanTM
f151bae7ab
postgresql11Packages.repmgr: 5.2.1 -> 5.3.0 (#143507) 2021-10-29 15:44:06 +02:00
Sandro
dc97e86313
Merge pull request #143394 from SuperSandro2000/SuperSandro2000-patch-1 2021-10-29 11:47:17 +02:00
Sandro
d9ebe400f8
postgresqlPackages.timescaledb: add comment why refs/tags is used 2021-10-28 16:33:51 +02:00
1000101
ab3097a237 postgresqlPackages.timescaledb: 2.4.2 -> 2.5.0 2021-10-28 14:09:31 +02:00
Mario Rodas
73acbabd32 postgresqlPackages.plpgsql_check: 2.0.2 -> 2.0.5 2021-10-22 22:26:36 -05:00
Sergei Trofimovich
8d6de9c600 postgresql11Packages.age: use latest bison
The package builds successfully with bison-3.7.6 and 3.8.2.
2021-10-21 08:45:26 +01:00
Sandro
7cbed9e6bd
Merge pull request #140548 from marsam/update-pgvector 2021-10-05 20:44:49 +02:00
Sandro
86cde2b4ae
Merge pull request #140549 from marsam/update-pgroonga 2021-10-05 20:44:35 +02:00
Mario Rodas
a9b3548fb6 postgresqlPackages.pgvector: 0.1.8 -> 0.2.0 2021-10-04 04:20:00 +00:00
Mario Rodas
e793481afd postgresqlPackages.pgroonga: 2.3.1 -> 2.3.2 2021-10-04 04:20:00 +00:00
Mario Rodas
7b5f9efb58 postgresqlPackages.pg_repack: 1.4.6 -> 1.4.7 2021-10-04 04:20:00 +00:00
Mario Rodas
c7d8fae5c2
Merge pull request #140167 from marsam/update-postgresql-age
postgresql11Packages.age: 0.2.0 -> 0.6.0
2021-10-01 16:12:08 -05:00