Commit Graph

2522 Commits

Author SHA1 Message Date
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
Wolfgang Walther
e6bfabf366
postgresql: rename enableSystemd to systemdSupport for consistency
We have gssSupport, jitSupport and pythonSupport - but enableSystemd?

Across nixpkgs there are currently three styles commonly used, about equally
often: withX, xSupport and enableX.

Let's at least use one consistent style in this package.
2024-03-15 21:11:10 +01:00
Wolfgang Walther
d7ae1c5143
postgresql: refactor to remove doInstallCheck = false
This is the default anyway.
2024-03-15 21:11:09 +01:00
Wolfgang Walther
4b6bce5c31
postgresql: refactor to remove "this" argument
This was proposed by abbradar in #150801, but left out of the follow up PR
#221851 by Ma27 to reduce the size of the diff. Compared to the initial
proposal this includes the callPackage call in the recursion, which avoids
breaking the withJIT/withoutJIT helpers.

In terms of nixpkgs, this is a pure refactor, no derivations change. However,
this makes downstream expressions like the following possible:

  (postgresql.override { jitSupport = true; }).pkgs.postgis

This would have not worked before without passing another "this" argument,
which is error prone as can be seen in this example:

  https://github.com/PostgREST/postgrest/pull/3222/files
2024-03-15 21:11:09 +01:00
Wolfgang Walther
14b3ea2789
postgresql: refactor to pass jitSupport/llvm via scope instead of passthru
This makes it less error-prone to use the llvm package in extensions, because
it will always match the package used by the postgresql derivation itself.

Previously, you could've accidentally used llvm instead of postgresql.llvm
with a different result.
2024-03-15 21:11:09 +01:00
github-actions[bot]
00729a3d21
Merge master into staging-next 2024-03-15 18:01:19 +00:00
Wolfgang Walther
b301c01e31
postgresql: refactor to move musl patches into versioned .nix files
This makes it obvious that the required argument muslPatches must be passed when
creating a new version file.

Pure refactor, not changing any derivations.
2024-03-15 18:51:02 +01:00
Wolfgang Walther
82e6c4a609
postgresql: refactor to remove psqlSchema argument
The passthru attribute is still set, but automatically created from
the major version number. Fewer moving parts decrease the chance
for mistakes.
2024-03-15 18:51:02 +01:00
Wolfgang Walther
a92a323a1d
postgresql: refactor to remove passthru's readline attribute
This seems to have been introduced 20 years ago in 5863d4f - but
seems to have been a copy&paste mistake from the beginning.
AFAICT, it's not used anywhere.
2024-03-15 18:51:02 +01:00
Wolfgang Walther
62635c9643
postgresql: refactor mkPackages in default.nix
Refactors some low hanging fruit in default.nix to make it easier to add new
versions later on.

Pure refactor, not changing any derivations.

This change makes it easier to add new versions in default.nix without messing
up - and also prevents us from adding version-specific arguments in default.nix
by accident in the future. Those should be put in the versioned .nix files
instead.
2024-03-15 18:51:02 +01:00
Wolfgang Walther
1d9f2bd726
postgresql: refactor to split up default.nix (2/2)
The recommended [1] structure for a package regarding versioning is to have each
version in a separate file. This commit just mechanically copies code around
without any changes.

Pure refactor, not changing any derivations.

[1]: pkgs/README.md
2024-03-15 18:51:02 +01:00
Wolfgang Walther
9af8c0a3b7
postgresql: refactor to split up default.nix (1/2)
This just renames default.nix to generic.nix, because the biggest chunk
of code should move that way in the next commit. This gives us a much
better diff for the next commit and makes rebasing **much** easier in
case of changes. This commit does not stand on its own and needs to go
in with the next commit (2/2).
2024-03-15 18:51:02 +01:00
Wolfgang Walther
4c8e7af941
postgresql: refactor to remove useless references to "self"
No need to reference self here, because llvmPackages / stdenv' are available
in that scope anyway. Pure refactor, derivations don't change.
2024-03-15 18:51:02 +01:00
Wolfgang Walther
719034f6f6
postgresql: refactor to move packages.nix to ext/default.nix (2/2)
This aligns more with the commonly used style in nixpkgs.
2024-03-15 18:51:01 +01:00
Wolfgang Walther
9ef7195e08
postgresql: refactor to move packages.nix to ext/default.nix (1/2)
This commit is split up into two commits to allow git to detect renames,
make rebasing easier and allow a working entry in .git-blame-ignore-revs.

To allow bisecting we allow evaluation on every commit by moving the extensions
into ext/ext/ first and back to ext/ with the next commit.
2024-03-15 18:50:20 +01:00
Wolfgang Walther
01463448be
postgresql: refactor to move locale-binary-path.patch into patches/
Seems to have been put in the wrong place.
2024-03-15 18:50:19 +01:00
R. Ryantm
dddd27dc94 postgresqlJitPackages.plpgsql_check: 2.7.3 -> 2.7.4 2024-03-15 13:32:48 +00:00
github-actions[bot]
4aac48ff7f
Merge master into staging-next 2024-03-15 06:01:09 +00:00
Mario Rodas
72d1bae406 postgresqlPackages.pgvecto-rs: use cargo-pgrx_0_11_2 from top-level 2024-03-15 04:20:00 +00:00
Mario Rodas
6025943fa2 postgresqlPackages.timescaledb_toolkit: use cargo-pgrx_0_10_2 from top-level 2024-03-15 04:20:00 +00:00
Mario Rodas
e6aefe20a1
Merge pull request #292533 from flyingcircusio/init-postgresql-anonymizer
postgresqlPackages.anonymizer: init at 1.3.1; add me & osnyx to flyingcircus team
2024-03-14 20:53:36 -05:00
R. Ryantm
d5346f1f1f rqlite: 8.22.1 -> 8.23.0 2024-03-14 15:22:12 +00:00
Maximilian Bosch
b4f8ebd295
postgresqlPackages.anonymizer: update description
Co-authored-by: Mario Rodas <marsam@users.noreply.github.com>
2024-03-14 09:50:46 +01:00
github-actions[bot]
c866a07331
Merge master into staging-next 2024-03-14 06:01:12 +00:00
Maximilian Bosch
0cdaede144
pg-dump-anon: init at 1.3.1
This is a Go program inside the sources of `postgresql_anonymizer` that
allows to perform database dumps, but with anonymized data. I figured
that it's a little awkward to have a client program to be part of the
extension package.

So I decided to create a second package called `pg-dump-anon`. Since
it's one repository, both share `version` & `src`.

Also extended the VM test to make sure we're getting properly anonymized
data when dumping with `pg_dump_anon`.
2024-03-13 16:15:54 +01:00
R. Ryantm
96c6d758d2 dolt: 1.35.1 -> 1.35.3 2024-03-13 07:15:39 +00:00
annalee
8e038835fe
Merge remote-tracking branch 'upstream/master' into staging-next 2024-03-13 00:38:07 +00:00
Fabián Heredia Montiel
d5fe7897b4
Merge pull request #294457 from wolfgangwalther/postgresql-ext
postgresqlPackages: fixing multiple build failures
2024-03-12 14:55:49 -06:00
github-actions[bot]
1cef2a1be7
Merge staging-next into staging 2024-03-12 12:01:40 +00:00
Mario Rodas
a55ee60608
Merge pull request #295082 from r-ryantm/auto-update/postgresqlJitPackages.lantern
postgresqlJitPackages.lantern: 0.2.0 -> 0.2.1
2024-03-12 01:46:00 -05:00
R. Ryantm
e3acd5fbcf postgresqlJitPackages.lantern: 0.2.0 -> 0.2.1 2024-03-11 18:11:45 +00:00
github-actions[bot]
06e5eb63d3
Merge staging-next into staging 2024-03-11 18:01:53 +00:00
Nick Cao
996086f259
Merge pull request #294291 from r-ryantm/auto-update/dolt
dolt: 1.35.0 -> 1.35.1
2024-03-11 11:24:04 -04:00
Maximilian Bosch
8d0e5a3402
postgresqlPackages.anonymizer: init at 1.3.1 2024-03-11 14:09:17 +01:00
github-actions[bot]
339816cfdf
Merge staging-next into staging 2024-03-11 12:01:42 +00:00
a-n-n-a-l-e-e
ce789e7e35
llvmPackages_{12,13,14,15,16,17,git}.{libcxx,libcxxabi}: merge libcxxabi into libcxx (#292043)
- merge libcxxabi into libcxx for LLVM 12, 13, 14, 15, 16, 17, and git.
- remove the link time workaround `-lc++ -lc++abi` from 58 packages as it is no longer required.
- fixes https://github.com/NixOS/nixpkgs/issues/166205
- provides alternative fixes for. https://github.com/NixOS/nixpkgs/issues/269548 https://github.com/NixOS/nix/issues/9640
- pkgsCross.x86_64-freebsd builds work again

This change can be represented in 3 stages
1. merge libcxxabi into libcxx -- files: pkgs/development/compilers/llvm/[12, git]/{libcxx, libcxxabi}
2. update stdenv to account for merge -- files: stdenv.{adapters, cc.wrapper, darwin}
3. remove all references to libcxxabi outside of llvm (about 58 packages modified)

### merging libcxxabi into libcxx
- take the union of the libcxxabi and libcxx cmake flags
- eliminate the libcxx-headers-only package - it was only needed to break libcxx <-> libcxxabi circular dependency
- libcxx.cxxabi is removed. external cxxabi (freebsd) will symlink headers / libs into libcxx.
- darwin will re-export the libcxxabi symbols into libcxx so linking `-lc++` is sufficient.
- linux/freebsd `libc++.so` is a linker script `LINK(libc++.so.1, -lc++abi)` making `-lc++` sufficient.
- libcxx/default.nix [12, 17] are identical except for patches and `LIBCXX_ADDITIONAL_LIBRARIES` (only used in 16+)
- git/libcxx/defaul.nix  does not link with -nostdlib when useLLVM is true so flag is removed. this is not much different than before as libcxxabi used -nostdlib where libcxx did not, so libc was linked in anyway.

### stdenv changes
- darwin bootstrap, remove references to libcxxabi and cxxabi
- cc-wrapper: remove c++ link workaround when libcxx.cxxabi doesn't exist (still exists for LLVM pre 12)
- adapter: update overrideLibcxx to account for a pkgs.stdenv that only has libcxx

### 58 package updates
- remove `NIX_LDFLAGS = "-l${stdenv.cc.libcxx.cxxabi.libName}` as no longer needed
- swift, nodejs_v8 remove libcxxabi references in the clang override

https://github.com/NixOS/nixpkgs/pull/292043
2024-03-11 03:53:37 -07:00
Atemu
ce8ddcd321
Merge pull request #281192 from diogotcorreia/pgvecto.rs
postgresqlPackages.pgvecto-rs: init at 0.2.1
2024-03-11 07:12:52 +00:00
Diogo Correia
6b97ba66a4
nixos/tests/pgvecto-rs: init 2024-03-11 01:02:17 +00:00
Diogo Correia
3060321978
pgvecto.rs: init at 0.2.1
Co-Authored-By: Daniel Albert <git@esclear.de>
Co-Authored-By: rina <k@rina.fyi>
2024-03-11 01:02:17 +00:00
Wolfgang Walther
81c32a6b33
postgresql.pkgs.plv8: 3.1.5 -> 3.1.10
https://github.com/plv8/plv8/blob/v3.1.10/Changes

3.1.10 is currently not the latest version - 3.2.2 is. However, the 3.2 branch needs
more changes to build successfully. The update to 3.1.10 makes this package build
with postgresql_16 for now.
2024-03-09 09:44:07 +01:00
Wolfgang Walther
5a57e16d64
postgresql.pkgs.pg_auto_failover: fix build on linux
This failed because libpam, which postgresql is now linked against, was missing as a
build input. In general, this is an indication that this extension needs the same
build inputs that postgresql was built with - so we just pass those instead.

This makes similar build failures less likely in the future.
2024-03-09 09:44:07 +01:00
Wolfgang Walther
f58132cb15
postgresql.pkgs.repmgr: fix build on linux
This failed because libpam, which postgresql is now linked against, was missing as a
build input. In general, this is an indication that this extension needs the same
build inputs that postgresql was built with - so we just pass those instead.

This makes similar build failures less likely in the future.
2024-03-09 09:44:07 +01:00
Wolfgang Walther
a69f3706c7
postgresql_12.pkgs.pg_repack: fix build
This failed because libxcrypt, which pg12 is linked against, was missing as a
build input. In general, this is an indication that this extension needs the
same build inputs that postgresql was built with - so we just pass those instead.

This makes similar build failures less likely in the future.
2024-03-09 09:44:07 +01:00
Wolfgang Walther
a1896739f6
postgresql.pkgs: remove broken conditions for legacy versions
PostgreSQL older than v12 is not in nixpkgs anymore, so marking those as
still broken in that case doesn't make sense anymore.
2024-03-09 09:44:07 +01:00
R. Ryantm
1d2030ab5b dolt: 1.35.0 -> 1.35.1 2024-03-08 15:21:53 +00:00
github-actions[bot]
590e65a7b3
Merge master into staging-next 2024-03-07 12:01:24 +00:00
Weijia Wang
60cfeda486
Merge pull request #285753 from r-ryantm/auto-update/mssql_jdbc
mssql_jdbc: 12.4.2 -> 12.6.1
2024-03-07 11:07:39 +01:00
Thomas Gerbet
a2f96c785d percona-server_8_0: 8.0.35-27 -> 8.0.36-28
Expected to fix the same set of issues than MySQL 8.0.36 (#284127).

* CVE-2024-20961
* CVE-2024-20962
* CVE-2024-20973
* CVE-2024-20975
* CVE-2024-20977
* CVE-2024-20960
* CVE-2024-20963
* CVE-2024-20985
* CVE-2024-20969
* CVE-2024-20967
* CVE-2024-20964
* CVE-2024-20981
* CVE-2024-20966
* CVE-2024-20970
* CVE-2024-20971
* CVE-2024-20972
* CVE-2024-20974
* CVE-2024-20976
* CVE-2024-20978
* CVE-2024-20982
* CVE-2024-20965
2024-03-06 19:33:27 +01:00
github-actions[bot]
ac779b472e
Merge master into staging-next 2024-03-05 18:01:25 +00:00
Nick Cao
f03f80f6b9
Merge pull request #293387 from r-ryantm/auto-update/proxysql
proxysql: 2.5.5 -> 2.6.0
2024-03-05 09:29:57 -05:00
github-actions[bot]
16bca48d25
Merge master into staging-next 2024-03-05 06:01:12 +00:00
R. Ryantm
2dcf474970 proxysql: 2.5.5 -> 2.6.0 2024-03-05 01:34:56 +00:00
R. Ryantm
08449a063f postgresql12JitPackages.pgvector: 0.6.0 -> 0.6.1 2024-03-05 00:34:49 +00:00
github-actions[bot]
fe2479b166
Merge master into staging-next 2024-03-04 18:00:55 +00:00
Nick Cao
54351a94b3
Merge pull request #293233 from r-ryantm/auto-update/pgbouncer
pgbouncer: 1.22.0 -> 1.22.1
2024-03-04 10:06:44 -05:00
R. Ryantm
e9f0ffd6ee pgbouncer: 1.22.0 -> 1.22.1 2024-03-04 12:41:27 +00:00
R. Ryantm
ceb877156f dolt: 1.34.3 -> 1.35.0 2024-03-03 23:07:58 +00:00
github-actions[bot]
26d76ed9a5
Merge master into staging-next 2024-03-03 00:02:18 +00:00
Mario Rodas
6ac2f71901
Merge pull request #292732 from r-ryantm/auto-update/postgresqlJitPackages.pg_ivm
postgresqlJitPackages.pg_ivm: 1.7 -> 1.8

Closes https://github.com/NixOS/nixpkgs/pull/292729
Closes https://github.com/NixOS/nixpkgs/pull/292730
Closes https://github.com/NixOS/nixpkgs/pull/292731
2024-03-02 14:31:33 -05:00
github-actions[bot]
f51807feea
Merge master into staging-next 2024-03-02 12:01:28 +00:00
Mario Rodas
a428415bac
Merge pull request #292314 from r-ryantm/auto-update/pgpool
pgpool: 4.5.0 -> 4.5.1
2024-03-02 06:28:09 -05:00
R. Ryantm
8526253869 postgresqlJitPackages.pg_ivm: 1.7 -> 1.8 2024-03-02 06:03:47 +00:00
annalee
a04ddbe327
Merge remote-tracking branch 'upstream/master' into sn-remove 2024-03-02 04:08:10 +00:00
R. Ryantm
a956a175bb rqlite: 8.21.3 -> 8.22.1 2024-03-01 03:20:45 +00:00
R. Ryantm
3ed8ea7dba pgpool: 4.5.0 -> 4.5.1 2024-02-29 10:23:32 +00:00
Martin Weinelt
65b31e498a Merge remote-tracking branch 'origin/staging-next' into staging
Conflicts:
- pkgs/development/python-modules/influxdb/default.nix
- pkgs/development/tools/misc/binutils/default.nix
2024-02-29 07:19:15 +01:00
R. Ryantm
0793cb1235 postgresql12JitPackages.pgroonga: 3.1.7 -> 3.1.8 2024-02-28 10:15:19 +00:00
github-actions[bot]
d2cfd53fa4
Merge staging-next into staging 2024-02-27 18:01:33 +00:00
Mario Rodas
e9dbae5824
Merge pull request #287012 from r-ryantm/auto-update/dolt
dolt: 1.32.6 -> 1.34.3
2024-02-27 08:57:42 -05:00
Nick Cao
c4ee868811
Merge pull request #291736 from r-ryantm/auto-update/rqlite
rqlite: 8.21.1 -> 8.21.3
2024-02-27 08:49:26 -05:00
R. Ryantm
7cb461e876 postgresqlJitPackages.plpgsql_check: 2.7.2 -> 2.7.3 2024-02-27 11:47:06 +00:00
R. Ryantm
f852899e96 rqlite: 8.21.1 -> 8.21.3 2024-02-27 04:35:23 +00:00
R. Ryantm
db56bb4785 dolt: 1.32.6 -> 1.34.3 2024-02-25 21:14:43 +00:00
github-actions[bot]
41e7732291
Merge staging-next into staging 2024-02-25 18:01:23 +00:00
Mario Rodas
7f6a434fc9
Merge pull request #291080 from r-ryantm/auto-update/postgresql15JitPackages.pg_net
postgresql15JitPackages.pg_net: 0.7.3 -> 0.8.0
2024-02-25 07:26:19 -05:00
github-actions[bot]
35aa42e19a
Merge staging-next into staging 2024-02-24 18:01:21 +00:00
github-actions[bot]
d6cc5bb41d
Merge master into staging-next 2024-02-24 18:00:56 +00:00
Mario Rodas
3bb3711ded postgresqlPackages.pg_net: fix build with gcc 2024-02-24 08:00:00 +00:00
R. Ryantm
7ad32769f4 postgresql15JitPackages.pg_net: 0.7.3 -> 0.8.0 2024-02-24 07:59:34 +00:00
R. Ryantm
6d762aa899 postgresql14Packages.lantern: 0.0.12 -> 0.2.0 2024-02-24 07:56:23 +00:00
github-actions[bot]
cfc5c35a0b
Merge staging-next into staging 2024-02-23 18:01:34 +00:00
github-actions[bot]
b67dbe0ff1
Merge master into staging-next 2024-02-23 18:01:06 +00:00
R. Ryantm
af71d13752 rqlite: 8.20.3 -> 8.21.1 2024-02-23 09:00:10 +00:00
R. Ryantm
514ed92ea2 mssql_jdbc: 12.4.2 -> 12.6.1 2024-02-23 02:44:18 +00:00
github-actions[bot]
f3d1249a61
Merge staging-next into staging 2024-02-22 00:02:35 +00:00
github-actions[bot]
173041b36f
Merge master into staging-next 2024-02-22 00:02:10 +00:00
Yorick
7cf969e42d
Merge pull request #278920 from panicgh/libmicrohttpd
[staging] libmicrohttpd: 0.9.74 -> 0.9.77, several unpinnings
2024-02-21 10:13:16 +01:00
Mario Rodas
d1f3d94f55 postgresqlPackages.timescaledb: 2.14.1 -> 2.14.2
Diff: https://github.com/timescale/timescaledb/compare/2.14.1...2.14.2

Changelog: https://github.com/timescale/timescaledb/blob/2.14.2/CHANGELOG.md
2024-02-21 04:20:00 +00:00
github-actions[bot]
ba5eeff4f5
Merge master into staging-next 2024-02-20 06:01:15 +00:00
Nick Cao
a39ed879ff
Merge pull request #290006 from r-ryantm/auto-update/rqlite
rqlite: 8.20.1 -> 8.20.3
2024-02-19 19:47:07 -05:00
R. Ryantm
1d759f79e0 rqlite: 8.20.1 -> 8.20.3 2024-02-19 18:49:40 +00:00
github-actions[bot]
2d9ce4a9af
Merge master into staging-next 2024-02-19 18:01:11 +00:00
Sandro
30f71249a8
Merge pull request #285866 from 999eagle/feat/pgbouncer-systemd 2024-02-19 14:42:01 +01:00
github-actions[bot]
b8e3b4bee5
Merge master into staging-next 2024-02-19 06:01:15 +00:00
github-actions[bot]
2ad339408a
Merge staging-next into staging 2024-02-18 00:02:44 +00:00
R. Ryantm
39b9512fec postgresql12JitPackages.pgroonga: 3.1.6 -> 3.1.7 2024-02-17 19:18:43 +00:00
Mario Rodas
1c39e0606d postgresqlPackages.citus: 12.1.1 -> 12.1.2
Diff: https://github.com/citusdata/citus/compare/v12.1.1...12.1.2

Changelog: https://github.com/citusdata/citus/blob/v12.1.2/CHANGELOG.md
2024-02-17 04:20:00 +00:00
github-actions[bot]
6d90f72388
Merge staging-next into staging 2024-02-16 18:01:48 +00:00
R. Ryantm
e36423c2cd rqlite: 8.20.0 -> 8.20.1 2024-02-16 12:31:43 +00:00
Sophie Tauchert
b3f483a5c2
pgbouncer: build with systemd support 2024-02-15 21:42:27 +01:00
github-actions[bot]
e49cc7f7ed
Merge staging-next into staging 2024-02-15 06:01:45 +00:00
github-actions[bot]
fc96101774
Merge staging-next into staging 2024-02-14 18:01:42 +00:00
R. Ryantm
6e4d2b3d47 postgresql12JitPackages.tds_fdw: unstable-2023-12-04 -> unstable-2024-02-10 2024-02-14 14:32:53 +00:00
Mario Rodas
a312723bb3 postgresqlPackages.timescaledb: 2.14.0 -> 2.14.1
Diff: https://github.com/timescale/timescaledb/compare/2.14.0...2.14.1

Changelog: https://github.com/timescale/timescaledb/blob/2.14.1/CHANGELOG.md
2024-02-14 04:20:00 +00:00
github-actions[bot]
14a88d0edd
Merge staging-next into staging 2024-02-13 18:01:51 +00:00
R. Ryantm
bd98ec419b rqlite: 8.19.0 -> 8.20.0 2024-02-13 04:15:52 +00:00
github-actions[bot]
1153f50c55
Merge staging-next into staging 2024-02-12 00:02:35 +00:00
Mario Rodas
9f549c2f3c postgresqlPackages.pg_squeeze: 1.5.2 -> 1.6.2
Diff: https://github.com/cybertec-postgresql/pg_squeeze/compare/1.5.2...REL1_6_2

Changelog: https://github.com/cybertec-postgresql/pg_squeeze/blob/REL1_6_2/NEWS
2024-02-11 04:20:00 +00:00
github-actions[bot]
1fe30fdf4b
Merge staging-next into staging 2024-02-10 18:01:16 +00:00
Mario Rodas
2bc3edec0e
Merge pull request #286534 from shyim/update-percona
percona-server_8_0: 8.0.34 -> 8.0.35
2024-02-10 08:12:59 -05:00
github-actions[bot]
1022c88f8b
Merge staging-next into staging 2024-02-10 00:02:42 +00:00
Mario Rodas
aaf6362e0a
Merge pull request #287393 from r-ryantm/auto-update/postgresqlJitPackages.postgis
postgresqlPackages.postgis: 3.4.1 -> 3.4.2
2024-02-09 18:14:44 -05:00
github-actions[bot]
d409ffca93
Merge staging-next into staging 2024-02-09 12:01:38 +00:00
R. Ryantm
6b99ea2eea postgresqlPackages.postgis: 3.4.1 -> 3.4.2 2024-02-09 12:32:05 +01:00
Mario Rodas
11bc6db582
Merge pull request #286377 from marsam/add-pg_squeeze
postgresqlPackages.pg_squeeze: init at 1.5.2
2024-02-08 06:47:21 -05:00
Mario Rodas
bdd0e091c3 postgresqlPackages.timescaledb: 2.13.1 -> 2.14.0
Diff: https://github.com/timescale/timescaledb/compare/2.13.1...2.14.0

Changelog: https://github.com/timescale/timescaledb/blob/2.14.0/CHANGELOG.md
2024-02-08 04:20:00 +00:00
Mario Rodas
2526c59458 Revert "postgresql: Fix build with libxml2 2.12"
This reverts commit 2ed47724a6.
2024-02-08 04:20:00 +00:00
Mario Rodas
cbb254b9f0 postgresql_16: 16.1 -> 16.2
Changelog: https://www.postgresql.org/docs/release/16.2/
2024-02-08 04:20:00 +00:00
Mario Rodas
2ad23c3f31 postgresql_15: 15.5 -> 15.6
Changelog: https://www.postgresql.org/docs/release/15.6/
2024-02-08 04:20:00 +00:00
Mario Rodas
60a659a0c3 postgresql_14: 14.10 -> 14.11
Changelog: https://www.postgresql.org/docs/release/14.11/
2024-02-08 04:20:00 +00:00
Mario Rodas
aa9a97dc17 postgresql_13: 13.13 -> 13.14
Changelog: https://www.postgresql.org/docs/release/13.14/
2024-02-08 04:20:00 +00:00
Mario Rodas
625f00d753 postgresql_12: 12.17 -> 12.18
Changelog: https://www.postgresql.org/docs/release/12.18/
2024-02-08 04:20:00 +00:00
Sarah Brofeldt
61f4674f29
Merge pull request #285899 from ankhers/update_cockroachdb-bin
cockroachdb-bin: 23.1.7 -> 23.1.14
2024-02-07 18:33:50 +01:00
maxine
f531bc9dec
Merge pull request #286529 from r-ryantm/auto-update/rqlite
rqlite: 8.18.7 -> 8.19.0
2024-02-06 18:50:18 +01:00
Soner Sayakci
f709a7aafd
percona-server_8_0: 8.0.34 -> 8.0.35 2024-02-05 18:33:05 +01:00
R. Ryantm
697c7b3ddf rqlite: 8.18.7 -> 8.19.0 2024-02-05 16:52:20 +00:00
Mario Rodas
6b64c72b36
Merge pull request #286373 from marsam/update-pgtap
postgresqlPackages.pgtap: 1.3.1 -> 1.3.2
2024-02-05 08:16:25 -05:00
Weijia Wang
20890bc10f
Merge pull request #283060 from r-ryantm/auto-update/mysql_jdbc
mysql_jdbc: 8.2.0 -> 8.3.0
2024-02-05 00:16:46 +01:00
Mario Rodas
6c8f282e17
Merge pull request #286259 from marsam/add-pgsodium
postgresqlPackages.pgsodium: init at 3.1.9
2024-02-04 16:50:21 -05:00
Mario Rodas
996b94607d
Merge pull request #285416 from r-ryantm/auto-update/pgbouncer
pgbouncer: 1.21.0 -> 1.22.0
2024-02-04 16:44:11 -05:00
Weijia Wang
20678ea37e
Merge pull request #281699 from r-ryantm/auto-update/dolt
dolt: 1.30.4 -> 1.32.6
2024-02-04 22:31:57 +01:00
Mario Rodas
872bf9222a postgresqlPackages.pgtap: 1.3.1 -> 1.3.2
Diff: https://github.com/theory/pgtap/compare/v1.3.1...v1.3.2
2024-02-04 16:20:00 -05:00
Weijia Wang
0edcafab82
Merge pull request #284060 from r-ryantm/auto-update/rqlite
rqlite: 8.16.3 -> 8.18.7
2024-02-04 20:34:13 +01:00
R. Ryantm
68d8694f33 dolt: 1.30.4 -> 1.32.6 2024-02-04 06:16:06 +00:00
Justin Wood
e81e4db07b cockroachdb-bin: 23.1.7 -> 23.1.14 2024-02-02 16:30:37 -05:00
R. Ryantm
b483889442 rqlite: 8.16.3 -> 8.18.7 2024-02-02 11:09:18 +00:00
ajs124
9a473f8ff9
Merge pull request #285162 from r-ryantm/auto-update/mariadb-galera
mariadb-galera: 26.4.16 -> 26.4.17
2024-02-01 14:30:56 +01:00
Mario Rodas
14e1409469 postgresqlPackages.pg_squeeze: init at 1.5.2 2024-02-01 04:20:00 +00:00
Mario Rodas
a52117b0b2 postgresqlPackages.pgsodium: init at 3.1.9 2024-02-01 04:20:00 +00:00
Mario Rodas
41200e8a87 postgresqlPackages.lantern: init at 0.0.12 2024-02-01 04:20:00 +00:00
R. Ryantm
0abf4a6f69 pgbouncer: 1.21.0 -> 1.22.0 2024-02-01 03:58:10 +00:00
R. Ryantm
2d91ae5adf mariadb-galera: 26.4.16 -> 26.4.17 2024-01-31 03:30:17 +00:00
Mario Rodas
e9748705e5
Merge pull request #284899 from marsam/update-citus
postgresqlPackages.citus: 12.1.0 -> 12.1.1
2024-01-30 04:17:59 -05:00
Mario Rodas
4ae596f549 postgresqlPackages.citus: 12.1.0 -> 12.1.1
Diff: https://github.com/citusdata/citus/compare/v12.1.0...v12.1.1

Changelog: https://github.com/citusdata/citus/blob/v12.1.1/CHANGELOG.md
2024-01-29 04:20:00 +00:00
Mario Rodas
156e7297a2 postgresqlPackages.pgvector: 0.5.1 -> 0.6.0
Diff: https://github.com/pgvector/pgvector/compare/v0.5.1...v0.6.0

Changelog: https://github.com/pgvector/pgvector/raw/v0.6.0/CHANGELOG.md
2024-01-29 04:20:00 +00:00
Yt
48f6e0d286
Merge pull request #282699 from happysalada/update_materialize
materialize: 0.17.0 -> 0.84.0
2024-01-28 20:00:15 +00:00
Robert Scott
0a4f48c0cc
Merge pull request #284127 from LeSuisse/mysql-8.0.36
mysql80: 8.0.35 -> 8.0.36
2024-01-28 01:50:55 +00:00
Thomas Gerbet
12e769f566 mysql80: 8.0.35 -> 8.0.36
Fixes:
* CVE-2024-20961
* CVE-2024-20962
* CVE-2024-20973
* CVE-2024-20975
* CVE-2024-20977
* CVE-2024-20960
* CVE-2024-20963
* CVE-2024-20985
* CVE-2024-20969
* CVE-2024-20967
* CVE-2024-20964
* CVE-2024-20981
* CVE-2024-20966
* CVE-2024-20970
* CVE-2024-20971
* CVE-2024-20972
* CVE-2024-20974
* CVE-2024-20976
* CVE-2024-20978
* CVE-2024-20982
* CVE-2024-20965

Security advisory:
https://www.oracle.com/security-alerts/cpujan2024.html#AppendixMSQL

Release notes:
https://dev.mysql.com/doc/relnotes/mysql/8.0/en/news-8-0-36.html
2024-01-26 23:18:47 +01:00