Commit Graph

3193 Commits

Author SHA1 Message Date
Anthony Roussel
c66aae629e
awscli2: 2.9.21 -> 2.10.0 2023-02-16 20:05:17 +01:00
Fabian Affolter
f28f1a1c2e
Merge pull request #216423 from r-ryantm/auto-update/syft
syft: 0.70.0 -> 0.71.0
2023-02-15 10:59:25 +01:00
R. Ryantm
9aac52f636 syft: 0.70.0 -> 0.71.0 2023-02-15 02:39:57 +00:00
Andreas Stührk
613fac9d41 pulumi: 3.54.0 -> 3.55.0 2023-02-14 23:47:36 +01:00
Felix Buehler
cdb39a86e0 treewide: use optionalString 2023-02-13 21:52:34 +01:00
Weijia Wang
344656ded0
Merge pull request #215907 from r-ryantm/auto-update/awscli2
awscli2: 2.9.21 -> 2.9.23
2023-02-13 16:04:55 +01:00
Alyssa Ross
c6c7493c3b
Merge remote-tracking branch 'origin/master' into staging-next
Conflicts:
	pkgs/development/python-modules/pyarrow/default.nix
2023-02-13 00:15:28 +00:00
Fabian Affolter
0a38d34d7d
Merge pull request #215977 from fabaff/trivy-bump
trivy: 0.37.1 -> 0.37.2
2023-02-12 23:26:40 +01:00
R. Ryantm
a3be4a3ebf eksctl: 0.128.0 -> 0.129.0 2023-02-12 15:15:59 +00:00
Fabian Affolter
9be147826d trivy: 0.37.1 -> 0.37.2
Diff: https://github.com/aquasecurity/trivy/compare/v0.37.1...v0.37.2

Changelog: https://github.com/aquasecurity/trivy/releases/tag/v0.37.2
2023-02-12 13:18:00 +01:00
github-actions[bot]
db256a18b5
Merge master into staging-next 2023-02-12 06:01:33 +00:00
R. Ryantm
98c1d7eb67 awscli2: 2.9.21 -> 2.9.23 2023-02-12 02:07:47 +00:00
Fabian Affolter
969b740bad qovery-cli: 0.48.6 -> 0.49.0
Diff: https://github.com/Qovery/qovery-cli/compare/v0.48.6...v0.49.0

Changelog: https://github.com/Qovery/qovery-cli/releases/tag/v0.49.0
2023-02-12 01:16:47 +01:00
github-actions[bot]
cd4ded4f12
Merge master into staging-next 2023-02-11 12:01:14 +00:00
Nick Cao
4017ed29ec
Merge pull request #215684 from esclear/update-lego
lego: 4.9.1 -> 4.10.0
2023-02-11 19:56:53 +08:00
github-actions[bot]
63655bdaea
Merge master into staging-next 2023-02-11 06:01:15 +00:00
R. Ryantm
65b9a4a973 afterburn: 5.4.0 -> 5.4.1 2023-02-10 21:06:35 +00:00
Daniel Albert
431bcb448f
lego: 4.9.1 -> 4.10.0
Version v4.10.0 was released on 2023-02-10:
https://github.com/go-acme/lego/releases/tag/v4.10.0
2023-02-10 14:44:38 +01:00
github-actions[bot]
c76e040c19
Merge master into staging-next 2023-02-09 12:01:30 +00:00
Weijia Wang
deba294d72
Merge pull request #215446 from r-ryantm/auto-update/afterburn
afterburn: 5.3.0 -> 5.4.0
2023-02-09 09:18:43 +01:00
Weijia Wang
697c78634c
Merge pull request #215456 from wegank/afterburn-linux
afterburn: relax platforms
2023-02-09 09:13:37 +01:00
Nick Cao
6fa2bfdf4d
Merge pull request #215110 from gador/pgadmin-use-pstgresqltesthook
pgadmin4-desktopmode: init at 6.19, pgadmin4: simplify tests
2023-02-09 16:05:44 +08:00
Weijia Wang
e004f773e7 afterburn: relax platforms 2023-02-09 08:41:01 +01:00
Florian Brandes
a380674d85
pgadmin4: add option to enable desktop mode
By default, pgadmin4 uses SERVER_MODE = True. This requires
access to system directories (e.g. /var/lib/pgadmin). There is
no easy way to change this mode during runtime. One has to change
or add config files withing pgadmin's directory structure to change it
or add a system-wide config file under `/etc/pgadmin`[1].

This isn't always easy to achive or may not be possible at all. For
those usecases this implements a switch in the pgadmin4 derivation and
adds a new top-level package `pgadmin4-desktopmode`. This builds in
DESKTOP MODE and allows the usage of pgadmin4 without the nixOS module
and without access to system-wide directories.

pgadmin4 module saves the configuration to /etc/pgadmin/config_system.py
pgadmin4-desktopmode tries to read that as well. This normally fails with
a PermissionError, as the config file is owned by the user of the pgadmin module.

With the check-system-config-dir.patch this will just throw a warning
but will continue and not read the file.

If we run pgadmin4-desktopmode as root
(something one really shouldn't do), it can read the config file and fail,
because of the wrong config for desktopmode.

[1]https://www.pgadmin.org/docs/pgadmin4/latest/config_py.html

Signed-off-by: Florian Brandes <florian.brandes@posteo.de>
2023-02-09 08:19:05 +01:00
Florian Brandes
e4488f5efe pgadmin4: move package tests back into the package
We test pgadmin in nixosTests, because it needs a running postgresql instance.
This is now unnecessary since we can do so in the package itself.

This reduces the complexity of pgadmin and removes the need for the extra
nixosTests.

Also setting SERVER_MODE in `pkg/pip/setup_pip.py` does not have any effect
on the final package, so we remove it.
In NixOS, we use the module, which expects SERVER_MODE to be true (which it defaults to).
In non-NixOS installations, we will need the directory /var/lib/pgadmin and /var/log/pgadmin

Signed-off-by: Florian Brandes <florian.brandes@posteo.de>
2023-02-09 08:06:52 +01:00
R. Ryantm
d5196ae0eb afterburn: 5.3.0 -> 5.4.0 2023-02-09 06:17:58 +00:00
github-actions[bot]
73fe6149d4
Merge master into staging-next 2023-02-09 06:01:10 +00:00
Nick Cao
853288c39d
Merge pull request #215186 from Trundle/pulumi-3.54.0
pulumi: 3.53.1 -> 3.54.0
2023-02-09 08:58:39 +08:00
James Walker
f5b9d5d0e2
pulumi-bin: 3.53.1 -> 3.54.0 2023-02-08 12:06:51 -05:00
Andreas Stührk
ed2404945a pulumi: 3.53.1 -> 3.54.0 2023-02-07 22:15:45 +01:00
Vladimír Čunát
3356399453
Merge branch 'master' into staging-next 2023-02-07 17:36:16 +01:00
Weijia Wang
e1e2a8f671
Merge pull request #214972 from jfly/issue-211415-disable-failing-mycli-test
mycli: skip broken test
2023-02-07 17:16:43 +01:00
github-actions[bot]
b30088fc3f
Merge master into staging-next 2023-02-07 00:02:12 +00:00
Sandro
2b013e9bc2
Merge pull request #212982 from gador/pgadmin-6.19 2023-02-06 22:29:11 +01:00
Jeremy Fleischman
fd6c52733b
mycli: skip broken test
While I was in here, I ported this code to use `pytestCheckHook`.

This fixes https://github.com/NixOS/nixpkgs/issues/211415 (maybe this is
more of a workaround?).

This build was failing due to a broken test upstream. I've instructed
nix to skip that test for now.

I also changed the `py.test` to plain `pytest`. I'm not familiar with
the difference, but according to [this SO
answer](https://stackoverflow.com/a/41893170/1739415), it sounds like
`pytest` is the new hotness and should be used wherever possible.
2023-02-06 12:59:22 -08:00
github-actions[bot]
5b5def96bc
Merge master into staging-next 2023-02-06 12:01:38 +00:00
Weijia Wang
11e9c497aa
Merge pull request #214858 from r-ryantm/auto-update/awscli2
awscli2: 2.9.19 -> 2.9.21
2023-02-06 10:44:52 +01:00
github-actions[bot]
b2a1140ada
Merge master into staging-next 2023-02-06 06:01:25 +00:00
R. Ryantm
eecccb4262 awscli2: 2.9.19 -> 2.9.21 2023-02-06 01:25:27 +00:00
Mario Rodas
fe4f28b807 syft: 0.69.1 -> 0.70.0
https://github.com/anchore/syft/releases/tag/v0.70.0
2023-02-05 20:30:00 +00:00
R. Ryantm
5e609b2a02 syft: 0.69.0 -> 0.69.1 2023-02-05 20:29:42 +00:00
github-actions[bot]
51cb32c692
Merge master into staging-next 2023-02-05 18:01:22 +00:00
Malte Voos
3449f83618 maintainers/malvo: update information 2023-02-05 15:05:51 +01:00
github-actions[bot]
cb231fb28d
Merge master into staging-next 2023-02-05 06:01:18 +00:00
Weijia Wang
65399d1bf5
Merge pull request #214510 from r-ryantm/auto-update/kics
kics: 1.6.8 -> 1.6.9
2023-02-05 04:45:16 +01:00
R. Ryantm
8618ebf1b4 eksctl: 0.127.0 -> 0.128.0 2023-02-05 02:28:08 +00:00
R. Ryantm
7162b71480 kics: 1.6.8 -> 1.6.9 2023-02-04 08:25:24 +00:00
Vladimír Čunát
d0d8c15bad
Merge branch 'master' into staging-next
pkgs/development/web/nodejs/v18.nix conflict:
  the fetched patch was already included in this release.
2023-02-03 23:02:19 +01:00
Florian Brandes
cfc77dc410 pgadmin4: 6.18 -> 6.19
Signed-off-by: Florian Brandes <florian.brandes@posteo.de>
2023-02-03 12:29:30 +01:00
Nick Cao
5edd519b14
Merge pull request #214311 from gador/pgadmin-pin-flask-babel
pgadmin: pin flask-babel to fix build failure
2023-02-03 19:12:10 +08:00