Nick Cao
6dfc2e811a
dolt: 1.42.14 -> 1.42.17 ( #338463 )
2024-09-03 15:22:35 -04:00
github-actions[bot]
d834278999
Merge master into staging-next
2024-09-02 00:13:57 +00:00
Cathal Mullan
48f8b02528
pgcat: 1.1.1 -> 1.2.0
2024-09-01 12:35:51 +01:00
R. Ryantm
5115bc51cf
dolt: 1.42.14 -> 1.42.17
2024-08-30 19:59:06 +00:00
R. Ryantm
a5c554a922
patroni: 3.3.2 -> 4.0.0
2024-08-30 05:51:12 +00:00
Maximilian Bosch
f191ad8240
postgresql: use systemdLibs ( #337441 )
2024-08-28 23:28:37 +02:00
github-actions[bot]
db8f276ee7
Merge staging-next into staging
2024-08-28 18:04:45 +00:00
Sandro Jäckel
b711581edf
cockroachdb: rename from cockroachdb-bin, set meta.sourceProvenance
...
There is no longer a from source build package, so we can reduce the
attr.
2024-08-28 14:10:24 +02:00
github-actions[bot]
32f893fe9e
Merge staging-next into staging
2024-08-27 00:13:33 +00:00
Rebecca Turner
6602decb96
postgis: Do not hardcode test suite path ( #336889 )
...
postgis: Fix test suite
Fixes this failure:
```
Creating database 'postgis_reg-3.4'.
sh: line 1: /tmp/pgis_reg/regress_log: Permission denied
2024-08-23 19:26:18.810 UTC [3295760] FATAL: database "postgis_reg-3.4" does not exist
psql: error: FATAL: database "postgis_reg-3.4" does not exist
Loading unpackaged components from /tmp/nix-build-postgis-3.4.2.drv-0/postgis-3.4.2/regress/00-regress-install/nix/store/kg8g82wxhar9iadxrd3pra3af174khpb-postgis-3.4.2/share/postgresql/contrib/postgis
Loading PostGIS into 'postgis_reg-3.4'
sh: line 1: /tmp/pgis_reg/regress_log: Permission denied
failed (Error encountered loading /tmp/nix-build-postgis-3.4.2.drv-0/postgis-3.4.2/regress/00-regress-install/nix/store/kg8g82wxhar9iadxrd3pra3af174khpb-postgis-3.4.2/share/postgresql/contrib/postgis/postgis.sql: /tmp/pgis_reg/regress_log)
make: *** [regress/runtest.mk:24: check-regress] Error 1
```
2024-08-26 11:39:19 -07:00
github-actions[bot]
eb9c198aae
Merge staging-next into staging
2024-08-26 12:05:49 +00:00
Robert Scott
96948c38c8
cockroachdb-bin: Update licenses ( #335770 )
2024-08-26 12:53:24 +01:00
github-actions[bot]
ba8924e6a0
Merge staging-next into staging
2024-08-26 00:13:41 +00:00
Ivan Trubach
2f9c580c6f
postgresql: use systemdLibs
...
Reduces the set of dependencies required to build PostgreSQL.
2024-08-26 01:48:49 +03:00
Robert Scott
857b09b51e
Merge pull request #336947 from bbigras/push-qxnutsskkyoq
...
postgresqlPackages.hypopg: 1.4.0 -> 1.4.1
2024-08-25 22:16:14 +01:00
github-actions[bot]
41ae34fbe3
Merge staging-next into staging
2024-08-25 18:04:08 +00:00
R. Ryantm
62e324c76d
dolt: 1.42.13 -> 1.42.14
2024-08-25 03:13:44 +00:00
github-actions[bot]
0b0c93bea0
Merge staging-next into staging
2024-08-25 00:14:39 +00:00
David Flanagan
f2a252bf03
sqld: 0.17.2 -> 0.24.18
2024-08-24 21:52:36 +02:00
Wolfgang Walther
050689db30
treewide: fix pg_config / postgresql headers moved to dev output
...
This was supposed to happen in #294504 , but the commit was accidentally
left out when splitting off some libpq-related changes. Originated in
#179962 , by Sandro.
Co-authored-by: Sandro Jäckel <sandro.jaeckel@gmail.com>
Co-authored-by: Wolfgang Walther <walther@technowledgy.de>
2024-08-24 15:44:10 +02:00
Bruno Bigras
c64122f97d
postgresqlPackages.hypopg: 1.4.0 -> 1.4.1
2024-08-24 01:10:13 -04:00
Wolfgang Walther
73cb40366d
postgresql: refactor to simplify condition
...
glibc is not available on darwin anyway and isGnu is just shorter.
2024-08-23 21:37:49 +02:00
Wolfgang Walther
dfde86f738
postgresql: refactor removal of references in bitcode files
...
This prevents silently ignoring errors from "find".
2024-08-23 21:37:49 +02:00
Wolfgang Walther
94d432ce88
postgresql: remove references to llvm-dev on darwin as well
...
The !isDarwin condition seems to have been put in place only because of the
use of patchelf, which in turn seemed to be necessary because of nuke-refs.
Replacing the big nuke with the more granular remove-references-to allows
enabling this for darwin, too.
2024-08-23 21:37:49 +02:00
Wolfgang Walther
435f51c37f
postgresql: split dev output
...
This splits a dev output to make the default output not depend on any
build dependencies anymore. This also avoids removing references from
pgxs' Makefile this way, which should, at least theoretically, be good
to build extensions via pgxs, making sure they use the same tooling.
ecpg is the "embedded SQL C preprocessor", which is certainly a dev
tool.
Most important, for closure size anyway, is to move pg_config to the dev
output, since it retains paths to all the other outputs.
The only thing with references to the dev output remaining is then the
postgres binary itself. It contains all the output paths, because it
shows those in the pg_config system view. There is no other way than
to nuke those references to avoid circular dependencies between outputs
- and blowing up closure size again.
2024-08-23 21:37:49 +02:00
Wolfgang Walther
77977286d8
postgresql: move libecpq to lib output
...
This library is used by other packages, so should be in the lib output.
By removing unused sections, libecpg will not contain any references to other
outputs and thus does not increase the closure for the lib output anymore.
This will also help massively when splitting a dev output later.
As a side-effect, this also unbreaks pkgsMusl.postgresql_12_jit and
pkgsMusl.postgresql_13_jit. For, at least to me, unknown reasons, those build
fine now.
2024-08-23 21:37:49 +02:00
Wolfgang Walther
5547322a0c
postgresql: move dynamic modules to default output
...
Dynamic modules are technically libraries, but are not used by other packages.
Instead they are loaded by PostgreSQL itself, e.g. as extensions. Those just
increased the size of the lib output without benefit.
This removes the NIX_PGLIBDIR hack introduced in #17838 and instead makes sure
that pg_config always returns the correct PGLIBDIR. The test for postgis
introduced in the same PR is still passing with the change.
2024-08-23 21:37:43 +02:00
R. Ryantm
733dcef865
mssql_jdbc: 12.8.0 -> 12.8.1
2024-08-23 04:00:00 +00:00
Nick Cao
eda8aafbf8
Merge pull request #335528 from r-ryantm/auto-update/dolt
...
dolt: 1.42.10 -> 1.42.13
2024-08-22 16:54:28 -04:00
Nick Cao
90bae4aeb4
Merge pull request #335778 from neosimsim/cockroachdb-bin-remove-maintainer-neosimsim
...
cockroachdb-bin: Remove maintainer neosimsim
2024-08-20 15:20:19 -04:00
Alexander Ben Nasrallah
85f5b4310c
cockroachdb-bin: remove neosimsim from meta.maintainers
2024-08-19 12:00:44 +02:00
Alexander Ben Nasrallah
855b8f7f49
cockroach-bin: Update licenses
...
Update licenses according to
- https://www.cockroachlabs.com/docs/releases/#licenses and
- https://github.com/cockroachdb/cockroach/blob/master/LICENSE
2024-08-19 11:33:18 +02:00
R. Ryantm
b73ddc74b2
dolt: 1.42.10 -> 1.42.13
2024-08-18 06:55:30 +00:00
Peder Bergebakken Sundt
e471916645
treewide: passthru nixos test ( #334491 )
2024-08-18 00:29:43 +02:00
Kirill Radzikhovskyy
b023a8a2f1
postgresqlPackages.postgis: sha256 -> hash
2024-08-15 13:56:01 +10:00
Kirill Radzikhovskyy
d3c9639c75
postgresqlPackages.postgis: nixfmt-rfc-style
2024-08-15 13:55:26 +10:00
Kirill Radzikhovskyy
068c11900f
postgresqlPackages.postgis: enable tests
2024-08-15 13:55:12 +10:00
0x4A6F
67d0a62075
Merge pull request #332445 from helsinki-systems/upd/galera
...
mariadb-galera: 26.4.19 -> 26.4.20
2024-08-14 17:37:26 +02:00
github-actions[bot]
261f1edcbd
Merge master into staging-next
2024-08-14 06:01:07 +00:00
Sebastián Mancilla
ec99277dbb
Merge pull request #328697 from r-ryantm/auto-update/dolt
...
dolt: 1.41.3 -> 1.42.10
2024-08-13 21:19:34 -04:00
github-actions[bot]
8674a36b01
Merge master into staging-next
2024-08-12 12:01:27 +00:00
R. Ryantm
a86c86ccf4
rqlite: 8.26.8 -> 8.28.0
2024-08-12 00:39:25 +00:00
R. Ryantm
2645cf2cc6
dolt: 1.41.3 -> 1.42.10
2024-08-11 03:08:54 +00:00
Vladimír Čunát
b99f751acd
Merge #333461 : postgres: security+bugfix updates
...
...into staging-next
https://www.postgresql.org/about/news/postgresql-164-158-1413-1316-1220-and-17-beta-3-released-2910/
2024-08-10 07:26:13 +02:00
github-actions[bot]
68894e5504
Merge master into staging-next
2024-08-10 00:02:11 +00:00
Leona Maroni
7d01494bff
Merge pull request #330085 from joshheinrichs-shopify/fix-percona-server-scripts
...
percona: fix references to utilities in scripts
2024-08-09 20:03:17 +02:00
Sandro Jäckel
632c9dd1c1
postgresql_16: 16.3 -> 16.4
...
https://www.postgresql.org/support/security/CVE-2024-7348/
Fixes CVE-2024-7348
2024-08-09 16:19:07 +02:00
Sandro Jäckel
47ed51b959
postgresql_15: 15.7 -> 15.8
...
https://www.postgresql.org/support/security/CVE-2024-7348/
Fixes CVE-2024-7348
2024-08-09 16:19:07 +02:00
Sandro Jäckel
592b5577ed
postgresql_14: 14.12 -> 14.13
...
https://www.postgresql.org/support/security/CVE-2024-7348/
Fixes CVE-2024-7348
2024-08-09 16:19:06 +02:00
Sandro Jäckel
e9fbb584ea
postgresql_13: 13.15 -> 13.16
...
https://www.postgresql.org/support/security/CVE-2024-7348/
Fixes CVE-2024-7348
2024-08-09 16:19:06 +02:00
Sandro Jäckel
84a9400564
postgresql_12: 12.19 -> 12.20
...
https://www.postgresql.org/support/security/CVE-2024-7348/
Fixes CVE-2024-7348
2024-08-09 16:19:06 +02:00
Martin Weinelt
1e25330d41
Merge remote-tracking branch 'origin/master' into staging-next
...
Conflicts:
- pkgs/development/libraries/SDL2/default.nix
2024-08-09 02:18:56 +02:00
Peder Bergebakken Sundt
d4b7361c84
Merge pull request #311458 from TomaSajt/servers-toplevel-with
...
Remove usage of top-level `with lib;` from `pkgs/servers`
2024-08-08 22:50:56 +02:00
github-actions[bot]
5ca6720152
Merge master into staging-next
2024-08-06 18:01:00 +00:00
Matthew Bauer
2a13929e1f
postgresqlPackages.timescaledb_toolkit: fix on macos ( #332353 )
...
* postgresqlPackages.timescaledb_toolkit: fix on macos
It looks like the macOS linker doesn’t like that some of the symbols
are undefined in the extension. They will be provided by the postgres
binary, but macOS linker checks that all symbols are defined.
Apparently, Linux allows these symbols to be undefined.
The -undefined flag changes this behavior:
> Specifies how undefined symbols are to be treated. Options are:
> error, warning, suppress, or dynamic_lookup. The default is error.
So, setting to dynamic_lookup makes the most sense here, and makes
this package work on macOS. I tried to see if pgvecto-rs, which also
uses buildPgrxExtension, would build. Unfortunately, it gave other
errors.
More information on the bug here: https://github.com/supabase/nix-postgres/issues/10
* Remove stdenv
2024-08-06 10:17:48 -05:00
Simon Hauser
564236b384
mariadb-galera: 26.4.19 -> 26.4.20
2024-08-05 11:50:41 +02:00
Vladimír Čunát
d4720e9c1e
Merge branch 'staging-next' into staging
...
There was a nontrivial conflict in pkgs/stdenv/linux/bootstrap-tools*
(reorganizing code vs. modifying it) I hope I really got it right.
2024-08-05 11:05:55 +02:00
Pol Dellaiera
f1abc4affd
Merge pull request #332150 from r-ryantm/auto-update/pgbouncer
...
pgbouncer: 1.23.0 -> 1.23.1
2024-08-04 22:49:35 +02:00
R. Ryantm
efd3bbab3f
pgbouncer: 1.23.0 -> 1.23.1
2024-08-04 03:02:51 +00:00
Nick Cao
f3834de378
Merge pull request #331989 from r-ryantm/auto-update/rqlite
...
rqlite: 8.26.7 -> 8.26.8
2024-08-03 20:20:25 -04:00
Pol Dellaiera
19bdb0debc
Merge pull request #331608 from LeSuisse/mysql80-8.0.39
...
mysql80: 8.0.38 -> 8.0.39
2024-08-03 21:19:34 +02:00
R. Ryantm
30d807f937
rqlite: 8.26.7 -> 8.26.8
2024-08-03 13:31:02 +00:00
Thomas Gerbet
ac184d1a52
mysql80: 8.0.38 -> 8.0.39
...
Changes:
https://dev.mysql.com/doc/relnotes/mysql/8.0/en/news-8-0-39.html
2024-08-01 22:47:51 +02:00
R. Ryantm
1a62464487
mssql_jdbc: 12.6.3 -> 12.8.0
2024-08-01 01:25:11 +00:00
Josh Heinrichs
a5dcd41e27
percona: fix references to utilities in scripts
...
I encountered errors when attempting to run Vitess which calls out to
mysqld_safe[1]. Several utilities are needed in order for it to run e.g.
grep, sed, env, ps, date, hostname, etc.
Additionally, if ps, kill, and grep aren't available to
scripts/CMakeLists.txt, mysqld_start can end up getting generated with
syntax errors as FIND_PROC will be substituted into the script template
as an empty string[2][3].
The presence of systemd in percona-server_innovation seems to prevent
mysqld_multi from being built on Linux so it gets patched conditionally.
This same patch could be applied to MySQL if desired.
[1]: https://github.com/vitessio/vitess/blob/v20.0.1/go/vt/mysqlctl/mysqld.go#L363-L369
[2]: 79c1086e82/scripts/CMakeLists.txt (L255)
[3]: 79c1086e82/scripts/mysqld_safe.sh (L869)
2024-07-31 09:23:12 -06:00
K900
4f29b5a16b
Merge remote-tracking branch 'origin/staging-next' into staging
2024-07-31 08:57:17 +03:00
Adam C. Stephens
a6dba07b71
Merge pull request #331020 from r-ryantm/auto-update/patroni
...
patroni: 3.3.1 -> 3.3.2
2024-07-30 18:54:24 -04:00
Kirill Radzikhovskyy
1e5b7660b2
postgresql: fix postgis
...
nixosTests.postgis is failing due to libxml2 update
2024-07-31 07:53:33 +10:00
R. Ryantm
95199cb794
patroni: 3.3.1 -> 3.3.2
2024-07-30 06:13:22 +00:00
Diogo Correia
da5ae1bd60
postgresqlPackages.pgvecto-rs: 0.2.1 -> 0.3.0
2024-07-30 01:23:15 +01:00
Aleksana
56d654d41f
Merge pull request #324978 from ivan/unmaintain-two
...
prisma-engines, postgresqlPackages.pg_embedding: remove myself from maintainers
2024-07-29 19:36:25 +08:00
Jörg Thalheim
5356420466
treewide: remove unused with statements from maintainer lists
...
$ find -type f -name '*.nix' -print0 | xargs -P "$(nproc)" -0 sed -i \
-e 's!with lib.maintainers; \[ *\];![ ];!' \
-e 's!with maintainers; \[ *\];![ ];!'
2024-07-29 10:06:20 +08:00
github-actions[bot]
09a27d5bc1
Merge master into staging-next
2024-07-23 00:02:18 +00:00
R. Ryantm
3190b1fe74
rqlite: 8.26.6 -> 8.26.7
2024-07-21 22:45:47 +00:00
Vladimír Čunát
3f0fd423e3
postgresql_*: upstream patches to support libxml2-2.13
...
/cc PR #326637
2024-07-21 08:43:52 +02:00
Vladimír Čunát
577f40b8a9
Merge branch 'staging' into staging-next
2024-07-20 16:12:24 +02:00
Robert Scott
df9f898bae
Merge pull request #327365 from alyssais/mysql-8.0.38
...
mysql80: 8.0.37 -> 8.0.38
2024-07-20 00:15:05 +01:00
Randy Eckenrode
f9b7f4ec09
tree-wide: use top-level cctools
2024-07-17 22:36:19 -04:00
Weijia Wang
f81dd33023
Merge pull request #324517 from r-ryantm/auto-update/mysql_jdbc
...
mysql_jdbc: 8.4.0 -> 9.0.0
2024-07-15 16:37:43 +02:00
Alyssa Ross
0702caaa2e
mysql80: 8.0.37 -> 8.0.38
2024-07-15 15:08:03 +02:00
Weijia Wang
8aa1f3b2ee
Merge pull request #325991 from r-ryantm/auto-update/monetdb
...
monetdb: 11.49.9 -> 11.49.11
2024-07-15 14:25:04 +02:00
Aleksana
554ada78db
Merge pull request #314963 from sdier/timescaledb2
...
timescaledb_toolkit: Fix license metadata to TSL license.
2024-07-14 23:56:07 +08:00
aleksana
592e3845c4
treewide: sha256 -> hash attribute for fetchgit
2024-07-14 19:10:08 +08:00
Nick Cao
06ed3286c8
Merge pull request #325425 from r-ryantm/auto-update/dolt
...
dolt: 1.41.1 -> 1.41.3
2024-07-10 19:07:32 -04:00
Weijia Wang
f9cf9feff6
Merge pull request #324456 from r-ryantm/auto-update/pgbouncer
...
pgbouncer: 1.22.1 -> 1.23.0
2024-07-10 12:27:49 +02:00
R. Ryantm
1dfc405d10
monetdb: 11.49.9 -> 11.49.11
2024-07-10 02:06:39 +00:00
R. Ryantm
8c2e9a5f1d
rqlite: 8.26.3 -> 8.26.6
2024-07-09 12:37:35 +00:00
R. Ryantm
330b2cf4b1
dolt: 1.41.1 -> 1.41.3
2024-07-08 05:19:02 +00:00
Ivan Kozik
8fbfdcec4a
postgresqlPackages.pg_embedding: remove ivan from maintainers
2024-07-06 06:18:15 +00:00
R. Ryantm
c1f87bcacc
mysql_jdbc: 8.4.0 -> 9.0.0
2024-07-04 09:19:14 +00:00
R. Ryantm
f7d9d1048c
mariadb-galera: 26.4.18 -> 26.4.19
2024-07-04 02:36:41 +00:00
R. Ryantm
12c1235e71
pgbouncer: 1.22.1 -> 1.23.0
2024-07-04 01:33:43 +00:00
R. Ryantm
6ae3fb2ed6
rqlite: 8.26.2 -> 8.26.3
2024-07-02 06:31:10 +00:00
R. Ryantm
3c511b8c62
dolt: 1.41.0 -> 1.41.1
2024-07-01 01:59:18 +00:00
Robert Scott
2b7c73e4a6
Merge pull request #322037 from LeSuisse/mysql-8.0.37
...
mysql80: 8.0.36 -> 8.0.37
2024-06-30 20:56:18 +01:00
TomaSajt
7f98396a16
mariadb-connector-c: remove top-level with lib;
2024-06-30 12:52:21 +02:00
R. Ryantm
a7cf84d087
rqlite: 8.24.10 -> 8.26.2
2024-06-26 11:16:13 +00:00
R. Ryantm
425a82701a
dolt: 1.39.4 -> 1.41.0
2024-06-25 09:17:10 +00:00
Thomas Gerbet
9b648599ea
mysql80: 8.0.36 -> 8.0.37
...
Changes:
https://dev.mysql.com/doc/relnotes/mysql/8.0/en/news-8-0-37.html
Fixes:
* CVE-2024-21047
* CVE-2024-21069
* CVE-2024-21060
* CVE-2024-21087
* CVE-2024-20998
* CVE-2024-21009
* CVE-2024-21054
* CVE-2024-21062
* CVE-2024-21102
* CVE-2024-21096
* CVE-2024-21008
* CVE-2024-21013
* CVE-2024-21000
https://www.oracle.com/security-alerts/cpuapr2024.html#AppendixMSQL
2024-06-23 22:16:44 +02:00
Yt
c07812f979
Merge pull request #320302 from diogotcorreia/pgvecto-rs-fix-rust-1-78
...
postgresqlPackages.pgvecto-rs: fix build failure on rust 1.78
2024-06-23 00:32:44 +00:00
R. Ryantm
ea50d3d0f1
mssql_jdbc: 12.6.2 -> 12.6.3
2024-06-21 01:21:58 +00:00
Sandro
e5aa50d733
Merge pull request #319256 from shivaraj-bh/system_stats
2024-06-20 12:11:16 +02:00
Simon Hauser
d62d2c6b49
mariadb: 10.5.25, 10.6.18, 10.11.8, 11.0.6 ( #315099 )
2024-06-19 18:43:50 +02:00
shivaraj-bh
da694466aa
system_stats: init at 3.0
2024-06-19 21:18:44 +05:30
Maximilian Bosch
6d8d21411e
Merge pull request #317281 from wolfgangwalther/postgresql-eol-policy
...
postgresql: add readme with eol-policy
2024-06-18 15:54:37 +00:00
Weijia Wang
458e40ae71
Merge pull request #320577 from r-ryantm/auto-update/patroni
...
patroni: 3.3.0 -> 3.3.1
2024-06-18 10:16:59 +02:00
R. Ryantm
5f8615de26
patroni: 3.3.0 -> 3.3.1
2024-06-17 17:06:01 +00:00
Leona Maroni
c4cb6eb3c9
Merge pull request #315851 from LeSuisse/v8-mark-vulnerable
...
v8: mark vulnerable, move dependents to `nodejs.libv8`
2024-06-17 10:15:09 +02:00
Diogo Correia
005c08d4f6
postgresqlPackages.pgvecto-rs: fix build failure on rust 1.78
2024-06-16 16:52:19 +01:00
Wolfgang Walther
0487937af3
postgresql: add readme with eol-policy
...
This was discussed and agreed on in [1].
[1]: https://github.com/NixOS/nixpkgs/pull/310580#discussion_r1597284693
2024-06-14 09:38:23 +02:00
R. Ryantm
3e98e4df50
dolt: 1.39.1 -> 1.39.4
2024-06-10 05:15:38 +00:00
Alexis Hildebrandt
f8c4a98e8e
treewide: Remove the definite article from meta.description
...
nix run nixpkgs#silver-searcher -- -G '\.nix$' -0l 'description.*"([Tt]he)? ' pkgs \
| xargs -0 nix run nixpkgs#gnused -- -i '' -Ee 's/(description.*")[Tt]he (.)/\1\U\2/'
2024-06-09 23:08:46 +02:00
Alexis Hildebrandt
755b915a15
treewide: Remove indefinite article from meta.description
...
nix run nixpkgs#silver-searcher -- -G '\.nix$' -0l 'description.*"[Aa]n?' pkgs \
| xargs -0 nix run nixpkgs#gnused -- -i '' -Ee 's/(description.*")[Aa]n? (.)/\1\U\2/'
2024-06-09 23:07:45 +02:00
Alexis Hildebrandt
bf995e3641
treewide: Remove ending period from meta.description
...
nix run nixpkgs#silver-searcher -- -G '\.nix$' -0l 'description.*".*\.";' pkgs \
| xargs -0 nix run nixpkgs#gnused -- -i '' -Ee 's/(description.*)\.";/\1";/'
2024-06-09 23:04:51 +02:00
Peder Bergebakken Sundt
09397213a3
Merge pull request #312334 from r-ryantm/auto-update/pgpool
...
pgpool: 4.5.1 -> 4.5.2
2024-06-08 17:22:10 +02:00
Maximilian Bosch
4cf50b4388
Merge pull request #317270 from wolfgangwalther/maintain-postgres
...
postgresql: add wolfgangwalther as maintainer
2024-06-08 13:49:24 +00:00
R. Ryantm
9fe3f6a37d
rqlite: 8.24.8 -> 8.24.10
2024-06-05 08:56:08 +00:00
Wolfgang Walther
f43616270a
postgresql: add wolfgangwalther as maintainer
2024-06-04 20:56:47 +02:00
Sigmanificient
d48a9bb622
treewide: remove unused fetchpatch arguments
2024-06-04 12:40:25 +02:00
Weijia Wang
17db53c9ef
Merge pull request #313504 from r-ryantm/auto-update/dolt
...
dolt: 1.38.0 -> 1.39.1
2024-06-02 18:18:26 +02:00
Weijia Wang
b416019daa
Merge pull request #309369 from r-ryantm/auto-update/mysql_jdbc
...
mysql_jdbc: 8.3.0 -> 8.4.0
2024-06-02 01:40:06 +02:00
Sigmanificient
8b473d1a27
treewide: remove unused fetch* (and other) arguments
2024-05-30 13:36:48 +02:00
Thomas Gerbet
773c17e752
postgresqlPackages.plv8: 3.1.10 -> 3.2.2
...
Changes:
https://github.com/plv8/plv8/blob/v3.2.2/Changes
2024-05-30 11:30:47 +02:00
R. Ryantm
7b69133e06
rqlite: 8.24.7 -> 8.24.8
2024-05-29 05:48:30 +00:00
R. Ryantm
212c224f2f
dolt: 1.38.0 -> 1.39.1
2024-05-28 10:20:07 +00:00
Scott Dier
d5c9f4b273
timescaledb_toolkit: Fix license metadata to TSL license.
2024-05-27 00:46:47 +02:00
Weijia Wang
defedd80f8
Merge pull request #313931 from Lurkki14/gpl2-pkgs-servers
...
pkgs/servers: remove licenses.gpl2
2024-05-26 14:37:45 +02:00
R. Ryantm
989b3c9f1f
mssql_jdbc: 12.6.1 -> 12.6.2
2024-05-25 02:45:02 +00:00
Jussi Kuokkanen
8064d28a4f
pkgs/servers: remove licenses.gpl2
2024-05-23 11:49:42 +03:00
github-actions[bot]
9a96b85a88
Merge master into staging-next
2024-05-18 12:01:16 +00:00
Matthias Beyer
3ba1cae737
Merge pull request #310713 from r-ryantm/auto-update/monetdb
...
monetdb: 11.49.7 -> 11.49.9
2024-05-18 09:31:45 +02:00
github-actions[bot]
11e181f00d
Merge master into staging-next
2024-05-18 00:02:17 +00:00
R. Ryantm
cf4182a998
dolt: 1.37.0 -> 1.38.0
2024-05-17 21:31:49 +00:00
R. Ryantm
f7e37fbfb0
pgpool: 4.5.1 -> 4.5.2
2024-05-17 02:12:46 +00:00
github-actions[bot]
5ba1706aa5
Merge master into staging-next
2024-05-16 18:01:25 +00:00
Maximilian Bosch
d5f39744c8
Merge pull request #309953 from flyingcircusio/PL-132430-percona-innovation
...
percona: restructure releases according to upstream release policy
2024-05-16 16:35:08 +00:00
github-actions[bot]
350d12c2fb
Merge master into staging-next
2024-05-16 12:01:25 +00:00
jopejoe1
0fad153e47
postgresql16Packages.pg_libversion: 2.0.0 -> 2.0.1
2024-05-15 18:34:33 +02:00
jopejoe1
8dbfbe8e5f
postgresql16Packages.pg_libversion: add update script
2024-05-15 18:11:02 +02:00
github-actions[bot]
5ecf9476cb
Merge staging-next into staging
2024-05-14 00:02:48 +00:00
Weijia Wang
1fbd31f24d
Merge pull request #311293 from diogotcorreia/pgvecto.rs-broken-pg12-pg13
...
pgvecto-rs: mark as broken in pg12 and pg13
2024-05-13 23:02:50 +02:00
github-actions[bot]
0f00113a2f
Merge staging-next into staging
2024-05-13 12:01:49 +00:00
Diogo Correia
101e8a0a2b
pgvecto-rs: mark as broken in pg12 and pg13
...
Upstream (accidentally) broke support for postgresql 12 and 13 on
v0.2.1 by changing the signature of the `from_datum` function[^1].
This went unnoticed since the release branch `0.2` did not have CI.
Furthermore, they are removing support for these versions of postgresql
on v0.3.0[^2].
[^1]: 97e861d51d
[^2]: https://github.com/tensorchord/pgvecto.rs/issues/343
2024-05-13 09:25:06 +01:00
Matthias Beyer
2f150587c9
Merge pull request #311172 from r-ryantm/auto-update/rqlite
...
rqlite: 8.24.1 -> 8.24.7
2024-05-13 09:29:52 +02:00
github-actions[bot]
eb2b7beecf
Merge staging-next into staging
2024-05-13 00:02:42 +00:00
R. Ryantm
dff3c958a5
rqlite: 8.24.1 -> 8.24.7
2024-05-12 20:50:35 +00:00
Maximilian Bosch
3ad254b1c4
postgresql: drop obsolete musl checkPhase fix
2024-05-11 18:23:38 +02:00
Maximilian Bosch
0616f7a44f
postgresql_16: 16.2 -> 16.3, fix CVE-2024-4317
...
Announcement: https://www.postgresql.org/about/news/postgresql-163-157-1412-1315-and-1219-released-2858/
2024-05-11 18:09:19 +02:00
Maximilian Bosch
1f657f2ce9
postgresql_15: 15.6 -> 15.7, fix CVE-2024-4317
...
Announcement: https://www.postgresql.org/about/news/postgresql-163-157-1412-1315-and-1219-released-2858/
2024-05-11 18:09:18 +02:00
Maximilian Bosch
90fdcc6112
postgresql_14: 14.11 -> 14.12, fix CVE-2024-4317
...
Announcement: https://www.postgresql.org/about/news/postgresql-163-157-1412-1315-and-1219-released-2858/
2024-05-11 18:09:18 +02:00
Maximilian Bosch
3b6b7fda09
postgresql_13: 13.14 -> 13.15
...
Accouncement: https://www.postgresql.org/about/news/postgresql-163-157-1412-1315-and-1219-released-2858/
2024-05-11 18:09:18 +02:00
Maximilian Bosch
c69eb60b61
postgresql_12: 12.18 -> 12.19
...
Announcement: https://www.postgresql.org/about/news/postgresql-163-157-1412-1315-and-1219-released-2858/
2024-05-11 18:09:17 +02:00
R. Ryantm
e68c48ee70
dolt: 1.35.11 -> 1.37.0
2024-05-11 10:22:49 +00:00
R. Ryantm
73dec69cab
monetdb: 11.49.7 -> 11.49.9
2024-05-11 00:58:20 +00:00
éclairevoyant
9f038dd682
Merge pull request #309375 from OPNA2608/fix/stableVersion/pkgs-stuff
...
treewide: Fix some unstableGitUpdater users
2024-05-09 10:03:46 +00:00
Oliver Schmidt
9164c33ab6
percona: apply required multi-version package structure
...
To work around the pkgs/by-name CI check, I applied the recommended structure
refactoring as documented in https://github.com/NixOS/nixpkgs/tree/master/pkgs/by-name#further-possible-refactorings
2024-05-08 00:40:07 +02:00
Oliver Schmidt
52506a2744
percona: adapt upstream release model
...
In accordance to the upstream release cycle, we now provide 2 flavours
of the percona mysql ecosystem. The default is the LTS variant,
additionally there is now the floating `percona-server_innovation`
always pointing to the most recent regular release.
- mentioned in release notes
- adapted all depending tests and tools (xtrabackup)
2024-05-08 00:40:06 +02:00
Oliver Schmidt
0999991e93
percona-server_8_3: init at 8.3.0-1
...
This release belongs to the "innovation" release track of Percona,
making it likely to diverge over time from the LTS release. Hence I just
created a separate packaging expression for this.
2024-05-07 19:56:32 +02:00
OPNA2608
92dcac9339
postgresqlPackages.tds_fdw: unstable-2024-02-10 -> 2.0.3-unstable-2024-02-10
2024-05-05 22:45:23 +02:00
OPNA2608
77f1d8831c
postgresqlPackages.pgjwt: unstable-2023-03-02 -> 0-unstable-2023-03-02
2024-05-05 22:45:22 +02:00
Adam Stephens
3d20a75e9a
patroni: 2.1.3 -> 3.3.0
...
https://github.com/zalando/patroni/blob/v3.3.0/docs/releases.rst#version-330
2024-05-05 16:37:18 -04:00
R. Ryantm
360d400fde
mysql_jdbc: 8.3.0 -> 8.4.0
2024-05-05 20:20:44 +00:00
R. Ryantm
92e1217992
rqlite: 8.23.4 -> 8.24.1
2024-05-05 04:11:53 +00:00
Nick Cao
02f32d0689
Merge pull request #308002 from NickCao/materialize
...
materialize: drop redundant LIBCLANG_PATH
2024-05-03 22:23:39 -04:00
github-actions[bot]
c4dfa193ac
Merge master into staging-next
2024-05-02 12:01:36 +00:00
R. Ryantm
63f1eccb2b
mariadb-galera: 26.4.17 -> 26.4.18
2024-05-01 11:32:56 +00:00
K900
a9c7210d0b
Merge branch 'master' into staging-next
2024-05-01 09:37:47 +03:00
Peder Bergebakken Sundt
9b6f63a26c
Merge pull request #304599 from StillerHarpo/monetdb
...
monetdb: 11.49.5 -> 11.49.7
2024-05-01 00:48:10 +02:00
Nick Cao
88a5ce0975
materialize: drop redundant LIBCLANG_PATH
2024-04-30 09:48:45 -04:00
Jan Tojnar
1b2ebb8fbb
Merge branch 'master' into staging-next
2024-04-28 17:33:27 +02:00
R. Ryantm
5ba2e3e8de
rqlite: 8.23.2 -> 8.23.4
2024-04-28 03:24:17 +00:00
Weijia Wang
7f45fee52a
Merge branch 'master' into staging-next
2024-04-28 04:02:14 +02:00
R. Ryantm
6fb45e01f4
dolt: 1.35.10 -> 1.35.11
2024-04-26 23:20:12 +00:00
Vladimír Čunát
d157c07324
Merge branch 'master' into staging-next
2024-04-25 20:43:34 +02:00
github-actions[bot]
d0efe40740
Merge master into staging-next
2024-04-25 06:01:20 +00:00
Mario Rodas
183a604e7a
Merge pull request #305572 from wolfgangwalther/remove-promscale-pgx
...
promscale_extension,buildPgxExtension: remove
2024-04-24 22:11:14 -05:00
Mario Rodas
2becf6e837
maintainers: drop marsam
2024-04-24 04:20:00 +00:00
github-actions[bot]
e50548dc95
Merge master into staging-next
2024-04-23 18:01:16 +00:00
R. Ryantm
2ebdbcf974
rqlite: 8.23.1 -> 8.23.2
2024-04-23 00:13:31 +00:00
github-actions[bot]
9c36f57e91
Merge staging-next into staging
2024-04-22 06:01:32 +00:00
Mario Rodas
c30c183bae
postgresqlPackages.lantern: set pname to postgresql-lantern
...
To avoid Repology to mistake it for another project named Lantern.
2024-04-21 04:20:00 +00:00
R. Ryantm
63b8343b8d
dolt: 1.35.8 -> 1.35.10
2024-04-21 16:34:45 +00:00
Wolfgang Walther
a0a1328606
buildPgxExtension: remove old versions
...
pgx had been renamed to pgrx in April 2023 already [1]. Newer versions
are already in nixpkgs as pgrx. Since the previous commit removed
the only remaining instance of a package still depending on
pgx 0.6.1, we can now remove all of buildPgxExtension and cargo-pgx.
[1]: https://github.com/pgcentralfoundation/pgrx/issues/1106
2024-04-20 20:10:13 +02:00
Wolfgang Walther
945a3bbb8b
postgresqlPackages.promscale_extension: remove deprecated and broken package
...
postgresql14Packages.promscale_extension breaks with:
Error:
0: `pgx-0.6.1` shouldn't be used with `cargo-pgx-0.7.4`,
please use `pgx = "~0.7.4"` in your `Cargo.toml`.
However, pinning cargo-pgx to 0_6_1 via the following
buildPgxExtension.override { cargo-pgx = cargo-pgx_0_6_1; }
does not work either, because the build then fails with:
thread 'main' panicked at /build/promscale_extension-0.8.0-vendor.tar.gz/proc-macro2/src/fallback.rs:756:9:
"__mbstate_t_union_(unnamed_at_/nix/store/ij144ma6vs8acil8r9hgr8xkb1dp9azg-glibc-2_39-5-dev/include/bits/types/__mbstate_t_h_16_3)" is not a valid Ident
This seems to be related to [1], which indicates that this is a
problem with newer LLVM / clang toolchains.
At the same time th upstream package is deprecated / archived since
the 2nd of April 2024 [2]. Additionally this package is unfree and
thus very unlikely to be forked. Since we can't expect this to be
fixed, the only sensible thing to do is to remove the package.
[1]: https://github.com/rust-lang/rust-bindgen/issues/2312
[2]: https://github.com/timescale/promscale/issues/1836
2024-04-20 20:10:13 +02:00
Maximilian Bosch
cba6af761a
Merge pull request #293996 from wolfgangwalther/postgresql-cleanup
...
postgresql: more cleanup
2024-04-19 13:53:20 +00:00
Florian Engel
e4166e0651
monetdb: 11.49.5 -> 11.49.7
2024-04-16 19:56:30 +02:00
github-actions[bot]
4908c48bf5
Merge master into staging-next
2024-04-15 12:01:00 +00:00
R. Ryantm
b9a629203c
postgresql13Packages.lantern: 0.2.3 -> 0.2.4
2024-04-15 03:41:04 +00:00
Weijia Wang
f3a1652b09
Merge branch 'master' into staging-next
2024-04-13 19:10:53 +02:00
Maximilian Bosch
2705b9062f
Merge pull request #299136 from wolfgangwalther/pg-safeupdate
...
postgresql{12,13}Packages.pg_safeupdate: 1.5 -> 1.4
2024-04-13 16:47:51 +00:00
Vladimír Čunát
24d4f2cd52
Merge branch 'staging' into staging-next
...
Conflicts (tried to quickly resolve somehow, checked eval):
pkgs/development/python-modules/apsw/default.nix
pkgs/development/python-modules/mido/default.nix
pkgs/development/python-modules/pytest-bdd/default.nix
pkgs/development/python-modules/sparse/default.nix
2024-04-12 07:06:54 +02:00
Mario Rodas
86a264e727
Merge pull request #303031 from r-ryantm/auto-update/dolt
...
dolt: 1.35.7 -> 1.35.8
2024-04-10 05:02:50 -05:00
R. Ryantm
d4502d8520
dolt: 1.35.7 -> 1.35.8
2024-04-10 05:59:07 +00:00
R. Ryantm
f9157e0977
postgresql13Packages.lantern: 0.2.2 -> 0.2.3
2024-04-10 03:00:50 +00:00
Weijia Wang
3f59355d84
Merge branch 'staging-next' into staging
2024-04-09 08:26:23 +02:00
R. Ryantm
0c979c7daf
postgresql16JitPackages.pgtap: 1.3.2 -> 1.3.3
2024-04-09 01:39:31 +00:00
github-actions[bot]
c3b3326391
Merge staging-next into staging
2024-04-06 00:02:50 +00:00
Mario Rodas
88c619a6a3
Merge pull request #301870 from r-ryantm/auto-update/rqlite
...
rqlite: 8.23.0 -> 8.23.1
2024-04-05 18:38:56 -05:00
github-actions[bot]
882e0f27d3
Merge staging-next into staging
2024-04-05 18:01:27 +00:00
Pol Dellaiera
0b46528d06
Merge pull request #301544 from mmusnjak/pgsql-datasketches-update
...
apache_datasketches: update to 1.7.0
2024-04-05 17:20:46 +02:00
R. Ryantm
fd62cce119
rqlite: 8.23.0 -> 8.23.1
2024-04-05 15:03:34 +00:00
github-actions[bot]
caf9b7e92b
Merge staging-next into staging
2024-04-05 12:02:18 +00:00
R. Ryantm
9ed2202f70
dolt: 1.35.4 -> 1.35.7
2024-04-05 00:00:12 +00:00
Marko Mušnjak
7cea84dade
apache_datasketches: update to 1.7.0
2024-04-04 15:21:59 +02:00
Wolfgang Walther
81201ce889
pkgsMusl.postgresql: add TODO to run all regression tests
...
This was fixed upstream as a result of this discussion:
https://www.postgresql.org/message-id/flat/ef1b47df-0808-4bd7-b08c-5153d5d75f4c%40technowledgy.de
2024-04-04 08:41:19 +02:00
Wolfgang Walther
30fa4dca88
pkgsMusl.postgresql: remove icu-collations-hack patch
...
This was introduced in #228349 , but doesn't seem necessary to build for pkgsMusl.
In fact the patch itself seems to be very specific about a stripped down icu
package in Alpine Linux, which does not apply to nixpkgs.
2024-04-04 08:41:19 +02:00
Wolfgang Walther
ec7b4581d7
pkgsMusl.postgresql: mark v12 and v13 with JIT as broken
...
Those currently don't build on master, not sure whether they ever built
correctly in the first place.
2024-04-04 08:41:18 +02:00
Wolfgang Walther
9f90ad30fa
postgresql: enable parallel building on darwin
...
This was disabled to fix #51093 . The related discussion upstream revealed that this
has been fixed in [1] for v12+. Since v12 is our oldest supported version right now,
we should be able to safely enable parallel building on darwin again.
Furthermore, it seems that this kind of issue was also fixed in #51221 and #51408
for the general case.
[1]: 826eff57c4
2024-04-04 08:41:18 +02:00
Wolfgang Walther
4adcc41cd9
postgresql: move explicit libxml2 include behind version flag
...
This was introduced in #44083 to fix cross building, where xml2-config
wouldn't run on the host platform. This was fixed upstream two years
later [1], so that from v13 on pkg-config is used before xml2-config is.
Once v12 is EOL, we can remove this entirely.
[1]: 0bc8cebdb8
2024-04-04 08:41:18 +02:00
Wolfgang Walther
6c1e2a4401
postgresql: remove preConfigure CC variable
...
This seems to have been done better by now. There are no references kept
and the build does not fail when removing it.
2024-04-04 08:41:18 +02:00
Wolfgang Walther
c3c52231f0
postgresql: remove left-over LC_ALL environment variable
...
This was introduced in 65fd8f3f48
around 20 years
ago as LANG=en_US, later changed to LC_ALL=en_US and LC_ALL=C to avoid bash
warnings. This might have been relevant to run initdb during the check phase, but
the PostgreSQL docs [1] say this today:
For implementation reasons, setting LC_ALL does not work for this purpose
Therefore it can be removed safely.
[1]: https://www.postgresql.org/docs/current/regress-run.html#REGRESS-RUN-LOCALE
2024-04-04 08:41:18 +02:00
Wolfgang Walther
154215cfd8
postgresql: rename patches
...
Trying to understand what each patch does made me come up with some more
descriptive names:
- Renaming the two disable-xxx patches to a common names makes it immediately
clear that one replaces the other depending on version number.
- findstring was really not descriptive at all.
- hardcode-pgxs-path will be extended with more paths for split outputs in
a later commit. Renaming here already to allow git to better track renames.
Finally replacing HARDCODED_PGXS_PATH with $out/lib in the last patch, makes
it easier to understand what the end result will look like when reading the
patch.
2024-04-04 08:41:18 +02:00
Wolfgang Walther
605618c2e8
postgresql: clean up patches
...
More cosmetic than anything else. The description in findstring.patch was
duplicated, postgresql-9.6.1 references confusing. Timestamps are not
needed, that's what git blame is for.
2024-04-04 08:41:18 +02:00
Wolfgang Walther
29d5adb676
postgresql: change pname for postgresql_jit attributes to postgresql-jit
...
This is for consistency between the top-level attribute and the respective package
name, which makes it easier to track derivations.
2024-04-04 08:41:17 +02:00
Wolfgang Walther
aea4ba847a
postgresql: remove thisAttr argument by calling tests directly
...
Previously, it was not possible to run tests on an overridden derivation, because
the derivation under test was always pulled from pkgs.
With this change, the following will return the same test:
postgresql_jit.tests
and
(postgresql.override { jitSupport = true; }).tests
2024-04-04 08:41:17 +02:00
Silvan Mosberger
b9261ad2e6
Merge pull request #301066 from philiptaron/compatible-typos
...
treewide: fix typos around "compatible" and "compatibility"
2024-04-04 04:18:31 +02:00
R. Ryantm
25a5f227f7
postgresql15JitPackages.pg_partman: 5.0.1 -> 5.1.0
2024-04-03 02:29:01 +00:00
Philip Taron
562b2c5896
postgresqlPackages.pg_bigm: fix typo: compatiblity to compatibility
2024-04-02 14:51:42 -07:00
Philip Taron
269a99d6b8
postgresqlPackages.citus: fix typo: compatibilty to compatibility
2024-04-02 14:45:11 -07:00
Wolfgang Walther
5e0eeb362b
postgresql{12,13}Packages.pg_safeupdate: 1.5 -> 1.4
...
pg_safeupdate was updated to 1.5 in #269755 . v1.5 is not compatible with
PostgreSQL 12 and 13 anymore, so those were marked as broken.
However, this blocks anyone using PostgreSQL 12 or 13 with pg_safeupdate
from updating nixpkgs.
Instead, the old version should have been kept for PG 12 and 13.
2024-03-31 19:32:31 +02:00
Wolfgang Walther
7a358ffd0e
postgresqlPackages.postgis: add myself as maintainer
2024-03-31 19:32:31 +02:00
Wolfgang Walther
156f69bbcb
postgresqlPackages.pg_safeupdate: add myself as maintainer
2024-03-31 19:32:29 +02:00
Ivan Mincik
75e7b2b097
Merge pull request #300347 from marsam/update-pgrouting
...
postgresqlPackages.pgrouting: 3.6.1 -> 3.6.2
2024-03-31 14:24:44 +00:00
R. Ryantm
b7c2c96026
postgresql12JitPackages.plpgsql_check: 2.7.4 -> 2.7.5
2024-03-31 02:12:10 +00:00
Mario Rodas
ce8a906462
postgresqlPackages.pgrouting: 3.6.1 -> 3.6.2
...
Diff: https://github.com/pgRouting/pgrouting/compare/v3.6.1...v3.6.2
Changelog: https://github.com/pgRouting/pgrouting/releases/tag/v3.6.2
2024-03-30 04:20:00 +00:00
R. Ryantm
334b49ce2a
postgresql13Packages.lantern: 0.2.1 -> 0.2.2
2024-03-27 13:43:45 +00:00
Mario Rodas
93883e16ec
Merge pull request #299094 from marsam/add-pg_roaringbitmap
...
postgresqlPackages.pg_roaringbitmap: init at 0.5.4
2024-03-26 18:12:39 -05:00
Mario Rodas
e4b3f3f652
Merge pull request #298190 from jopejoe1/postgresql-libversion
...
postgresqlPackages.pg_libversion: init at 2.0.0
2024-03-26 00:06:39 -05:00
Nick Cao
60f5ab8a3e
postgresql: enable spinlock on riscv
2024-03-25 16:15:05 -04:00
Mario Rodas
2d8a9a0bf4
postgresqlPackages.pg_roaringbitmap: init at 0.5.4
2024-03-25 04:20:00 +00:00
Weijia Wang
7c7fb17b30
Merge pull request #297065 from r-ryantm/auto-update/monetdb
...
monetdb: 11.49.1 -> 11.49.5
2024-03-24 23:52:58 +01:00
Yt
86de7cd867
Merge pull request #296336 from marsam/refactor-cargo-pgrx
...
cargo-pgrx: refactor
2024-03-23 11:51:28 +00:00
jopejoe1
b7cdcb35cb
postgresqlPackages.pg_libversion: init at 2.0.0
2024-03-22 21:26:54 +01:00
Maximilian Bosch
0cf4b07939
Merge pull request #297155 from Ma27/fix-pg_anonymizer-meta
...
postgresqlPackages.pg_anonymizer: fix meta
2024-03-22 17:00:02 +00:00
R. Ryantm
4ace79fb70
postgresql16JitPackages.pg_uuidv7: 1.4.1 -> 1.5.0
2024-03-22 01:43:07 +00:00
Maximilian Bosch
8ec284b8c4
postgresqlPackages.pg_anonymizer: fix meta
...
Previously the entire `meta` section from `pg-dump-anon` was copied
over including `mainProgram` which doesn't belong here. To avoid similar
issues, fields from the meta section of pg-dump-anon are copied over
explicitly.
2024-03-19 12:25:48 +01:00
Martin Weinelt
3321e63b12
Merge remote-tracking branch 'origin/master' into staging-next
...
Conflicts:
- pkgs/development/python-modules/sphinx-autobuild/default.nix
2024-03-19 04:00:32 +01:00
Martin Weinelt
afa65506cb
Merge pull request #297084 from stuebinm/trivial-meta-mainprograms
...
treewide: add meta.mainProgram to (almost) all packages with a single binary
2024-03-19 03:57:54 +01:00
stuebinm
ff1a94e523
treewide: add meta.mainProgram to packages with a single binary
...
The nixpkgs-unstable channel's programs.sqlite was used to identify
packages producing exactly one binary, and these automatically added
to their package definitions wherever possible.
2024-03-19 03:14:51 +01:00
R. Ryantm
03b336ac2d
postgresql12JitPackages.pgvector: 0.6.1 -> 0.6.2
2024-03-19 00:30:25 +00:00
R. Ryantm
32c6d3176c
monetdb: 11.49.1 -> 11.49.5
2024-03-19 00:24:04 +00:00
github-actions[bot]
7c0bd382c7
Merge master into staging-next
2024-03-19 00:02:09 +00:00
Aaron Jheng
55bf02190e
cockroachdb: point to cockroachdb-bin
2024-03-18 17:19:16 -05:00
github-actions[bot]
819a14ad05
Merge master into staging-next
2024-03-18 06:01:21 +00:00
Mario Rodas
65f4f042f9
Merge pull request #296520 from r-ryantm/auto-update/dolt
...
dolt: 1.35.3 -> 1.35.4
2024-03-17 20:55:29 -05:00
github-actions[bot]
100b3bb178
Merge master into staging-next
2024-03-17 18:00:54 +00:00
Weijia Wang
46c6aca2d9
Merge pull request #293475 from r-ryantm/auto-update/rqlite
...
rqlite: 8.22.1 -> 8.23.0
2024-03-17 15:05:33 +01:00
github-actions[bot]
c222aba0b8
Merge master into staging-next
2024-03-17 12:01:55 +00:00
R. Ryantm
e57bc699d0
dolt: 1.35.3 -> 1.35.4
2024-03-16 22:35:49 +00:00
Wolfgang Walther
01444957ba
postgresql: explain use of fetchurl for alpine patches
2024-03-16 11:52:39 +01:00