Fabián Heredia Montiel
46bdc68d8b
Merge pull request #334338 from r-ryantm/auto-update/granted
...
granted: 0.31.2 -> 0.32.0
2024-08-15 15:00:24 -06:00
Sandro
e1aa35d8b1
Merge pull request #334701 from SuperSandro2000/flatpak
2024-08-15 11:25:31 +02:00
Fabian Affolter
1688a9b9f1
Merge pull request #334453 from r-ryantm/auto-update/auth0-cli
...
auth0-cli: 1.4.0 -> 1.5.0
2024-08-15 09:03:34 +02:00
Sandro Jäckel
ff5ec3eb34
bubblewrap: 0.9.0 -> 0.10.0
...
Fixes CVE-2024-42472
Changelog: https://github.com/containers/bubblewrap/releases/tag/v0.10.0
2024-08-14 21:32:33 +02:00
github-actions[bot]
ae6040d6a6
Merge master into staging-next
2024-08-14 00:02:32 +00:00
Nick Cao
87b0f3268a
Merge pull request #334335 from wrbbz/pulumi-bin-3.129.0
...
pulumi-bin: 3.128.0 -> 3.129.0
2024-08-13 15:46:34 -04:00
R. Ryantm
d1241f14c3
auth0-cli: 1.4.0 -> 1.5.0
2024-08-13 18:27:49 +00:00
techknowlogick
e30a879e01
hop-cli: remove pkg
2024-08-13 11:32:06 -04:00
Martin Weinelt
0906206d42
Merge remote-tracking branch 'origin/master' into staging-next
...
Conflicts:
- pkgs/top-level/python-packages.nix
2024-08-13 13:21:03 +02:00
R. Ryantm
263f6ace55
granted: 0.31.2 -> 0.32.0
2024-08-13 09:25:29 +00:00
Arseniy Zorin
3880f2f915
pulumi-bin: 3.128.0 -> 3.129.0
2024-08-13 11:56:07 +03:00
R. Ryantm
5986334755
chamber: 2.14.1 -> 3.0.0
2024-08-13 00:29:14 +00:00
github-actions[bot]
0a1ac11214
Merge master into staging-next
2024-08-13 00:02:23 +00:00
github-actions[bot]
8674a36b01
Merge master into staging-next
2024-08-12 12:01:27 +00:00
Arseniy Zorin
cc72ed9651
pulumi-bin: 3.127.0 -> 3.128.0
2024-08-12 11:17:49 +03:00
R. Ryantm
6aabdad150
qovery-cli: 1.1.0 -> 1.2.0
2024-08-11 16:58:51 +00:00
Martin Weinelt
0e1624df44
Merge remote-tracking branch 'origin/master' into staging-next
...
Conflicts:
- pkgs/development/python-modules/pycdio/default.nix
2024-08-11 03:10:34 +02:00
Pol Dellaiera
b72fd2a2ac
Merge pull request #333358 from r-ryantm/auto-update/turbovnc
...
turbovnc: 3.1.1 -> 3.1.2
2024-08-11 00:34:32 +02:00
R. Ryantm
a230d09c9c
procs: 0.14.5 -> 0.14.6
2024-08-10 11:31:07 +00:00
Martin Weinelt
c7268a2aa9
awscli: 1.33.11 -> 1.33.13
...
https://github.com/aws/aws-cli/blob/1.33.13/CHANGELOG.rst
2024-08-09 14:48:20 +02:00
R. Ryantm
8e63be10f9
turbovnc: 3.1.1 -> 3.1.2
2024-08-09 03:07:16 +00:00
Nick Cao
fe19aa7dbe
Merge pull request #332565 from r-ryantm/auto-update/granted
...
granted: 0.30.0 -> 0.31.2
2024-08-06 15:56:15 -04:00
Peder Bergebakken Sundt
462b96d2a1
Merge pull request #326243 from jcaesar/pr-13
...
treewide: skip generating shell completions using $out/bin/… when cross compiling
2024-08-06 08:15:56 +02:00
R. Ryantm
ebccff1f30
granted: 0.30.0 -> 0.31.2
2024-08-05 20:47:10 +00:00
Florian
9687f44a99
Merge pull request #330912 from gador/pgadmin-8.10
...
pgadmin: 8.9 -> 8.10
2024-08-05 19:00:08 +02:00
R. Ryantm
4caa7a39c4
balena-cli: 18.2.33 -> 18.2.34
2024-08-05 07:10:23 +00:00
Julius Michaelis
87e574e110
treewide: rewrite some uses of hostPlatform == buildPlatform to canExecute
...
This rewrites uses of
stdenv.hostPlatform == stdenv.buildPlatform
to
stdenv.buildPlatform.canExecute stdenv.hostPlatform
when guarding postInstall scripts that use $out/bin/… to generate shell completions
2024-08-04 10:50:48 +09:00
Fabian Affolter
3725cee487
Merge pull request #331925 from r-ryantm/auto-update/qovery-cli
...
qovery-cli: 0.97.0 -> 1.1.0
2024-08-03 13:40:54 +02:00
R. Ryantm
da04e028fc
qovery-cli: 0.97.0 -> 1.1.0
2024-08-03 05:29:27 +00:00
adisbladis
e0816431a2
treewide: Pass self when overriding Python
...
Otherwise references to the Python interpreter inside the set are wrong, as demonstrated by:
``` nix
with import <nixpkgs> { };
let
python' = python3.override {
packageOverrides = final: prev: { requests = prev.requests.overridePythonAttrs(old: { version = "1337"; }); };
};
in python'.pkgs.python.pkgs.requests
```
which returns the _non_ overriden requests.
And the same with `self`:
```
with import <nixpkgs> { };
let
python' = python3.override {
self = python';
packageOverrides = final: prev: { requests = prev.requests.overridePythonAttrs(old: { version = "1337"; }); };
};
in python'.pkgs.python.pkgs.requests
```
which returns the overriden requests.
This can manifest itself as file collisions when constructing environments or as subtly incorrect dependency graphs.
2024-08-03 12:18:56 +12:00
Nick Cao
3135dcd603
Merge pull request #331774 from r-ryantm/auto-update/coldsnap
...
coldsnap: 0.6.1 -> 0.6.2
2024-08-02 15:31:55 -04:00
Emily
8764d898c4
Merge pull request #330741 from emilazy/push-rlvumrtyxrmk
...
python3Packages.nose3: drop
2024-08-02 16:31:00 +01:00
R. Ryantm
300c7e6cc3
coldsnap: 0.6.1 -> 0.6.2
2024-08-02 13:05:03 +00:00
K900
41c4517239
Revert "pebble: 2.4.0 -> 2.6.0 and fix version info"
2024-08-02 12:07:39 +03:00
tomberek
8fe1db0000
Merge pull request #322331 from afh/update-pebble
...
pebble: 2.4.0 -> 2.6.0 and fix version info
2024-08-02 01:48:32 -04:00
Fabian Affolter
761cf6dc96
Merge pull request #331421 from r-ryantm/auto-update/trivy
...
trivy: 0.53.0 -> 0.54.1
2024-08-01 09:53:07 +02:00
Emily
5111b7afd7
gixy: pass‐through nginx tests
...
These exercise Gixy through the NixOS nginx module.
2024-08-01 11:25:23 +09:00
Emily
6bd2c7576a
gixy: add pytest migration patch
2024-08-01 11:25:23 +09:00
Emily
5db8f3da5f
gixy: modernize
2024-08-01 11:25:22 +09:00
R. Ryantm
f3831850d2
trivy: 0.53.0 -> 0.54.1
2024-08-01 01:47:57 +00:00
Sigmanificient
fd9e28993f
aws-google-auth: drop
2024-07-31 21:16:33 +02:00
Maciej Krüger
a2aca6ac95
Merge pull request #331160 from Stunkymonkey/synapse-admin-remove-yarn-lock
...
synapse-admin: reuse yarn.lock from src
2024-07-31 17:33:40 +02:00
zimbatm
f3edb08a28
aws-vault: move to by-name
2024-07-31 09:10:33 +02:00
Felix Buehler
98772dab45
synapse-admin: reuse yarn.lock from src
2024-07-30 22:56:32 +02:00
Sigmanificient
aab1113d4a
treewide: normalize maintainers list formatting
...
grep -rP 'maintainers = \[\];'
2024-07-30 16:26:22 +02:00
Florian Brandes
fc8096cd34
pgadmin: format
...
Signed-off-by: Florian Brandes <florian.brandes@posteo.de>
2024-07-29 20:30:26 +02:00
Florian Brandes
580e6f79bd
pgadmin: 8.9 -> 8.10
...
Signed-off-by: Florian Brandes <florian.brandes@posteo.de>
2024-07-29 20:29:29 +02:00
Terje Larsen
199a8f8548
google-cloud-sdk: 483.0.0 -> 485.0.0
2024-07-29 11:06:30 +02: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
Anderson Torres
9a624d10e3
treewide: remove viric from meta.maintainers [orphans]
...
Since theey is not active from at least six years.
All the packages on this commit became orphans.
---------------------------------------------------------------------------
There are files not covered by this commit, because they will be adopted
soon. Namely:
- pkgs/by-name/zs/zsync/package.nix
- pkgs/games/bsdgames/default.nix
- pkgs/misc/ghostscript/default.nix
- pkgs/os-specific/linux/kernel/perf/default.nix
- pkgs/tools/system/logrotate/default.nix
2024-07-28 11:48:51 -03:00