Commit Graph

5526 Commits

Author SHA1 Message Date
h7x4
1008d5b885
{staruml, figma-linux, infracost, obsidian, scaleway-cli, netbeans}: migrate to by-name (#332171) 2024-10-05 21:36:16 +02:00
Nikolay Korotkiy
87ab26db5c
acme-sh: 3.0.8 -> 3.0.9 (#346620) 2024-10-05 14:23:03 +04:00
Nikolay Korotkiy
13e23da387
trivy: 0.55.2 -> 0.56.1 (#346411) 2024-10-05 14:08:56 +04:00
R. Ryantm
2e66af2c9b acme-sh: 3.0.8 -> 3.0.9 2024-10-05 06:44:16 +00:00
h7x4
40085bbbd1
treewide: migrate packages maintained by ivankovnatsky to by-name (#345512) 2024-10-05 01:08:54 +02:00
Ivan Kovnatsky
f3f69171dd
treewide: migrate packages maintained by ivankovnatsky to by-name 2024-10-04 16:31:04 +03:00
R. Ryantm
bfda1f9899 auth0-cli: 1.5.0 -> 1.5.1 2024-10-04 13:23:28 +00:00
R. Ryantm
b6e8cd08a2 trivy: 0.55.2 -> 0.56.1 2024-10-04 11:41:39 +00:00
R. Ryantm
825867ba4b scalr-cli: 0.15.5 -> 0.16.0 2024-10-03 16:23:13 +00:00
Nick Cao
c08485e135
granted: 0.34.0 -> 0.34.1 (#345830) 2024-10-02 10:12:09 -04:00
Nick Cao
5560bafb63
stripe-cli: 1.21.6 -> 1.21.7 (#345842) 2024-10-02 10:08:47 -04:00
Maximilian Bosch
ba55bb149d
Merge: meshcentral: 1.1.31 -> 1.1.32 (#345679) 2024-10-02 11:33:43 +02:00
R. Ryantm
1cbf5434c4 stripe-cli: 1.21.6 -> 1.21.7 2024-10-02 04:51:34 +00:00
R. Ryantm
c9cb905ee6 granted: 0.34.0 -> 0.34.1 2024-10-02 03:48:42 +00:00
Maximilian Bosch
6fc2184152
meshcentral: 1.1.31 -> 1.1.32
ChangeLog: https://github.com/Ylianst/MeshCentral/releases/tag/1.1.32
2024-10-01 11:35:52 +02:00
R. Ryantm
de2804bd70 balena-cli: 19.0.12 -> 19.0.13 2024-10-01 09:04:59 +00:00
h7x4
bdc42f289e
google-cloud-sdk: remove bundled python (#344957) 2024-10-01 01:06:19 +02:00
Terje Larsen
c0f95a993b
google-cloud-sdk: 492.0.0 -> 494.0.0 2024-09-29 13:44:37 +02:00
Pol Dellaiera
6e7a0814fa
treewide: drop explicitly added pythonImportsCheckHook (#345146) 2024-09-29 09:49:01 +02:00
Nick Cao
24524c1cf3
cdist: drop explicitly added pythonImportsCheckHook 2024-09-28 13:11:25 -04:00
Gary Guo
6474ec11bc google-cloud-sdk: remove bundled python
It seems that the bundled python location has changed. This reduces
~500M size.
2024-09-27 22:52:34 +01:00
R. Ryantm
23d38e39dd meshcentral: 1.1.30 -> 1.1.31 2024-09-27 20:17:03 +00:00
Pol Dellaiera
10c5cc0810
pgadmin: 8.11 -> 8.12 (#344227) 2024-09-27 10:35:11 +02:00
kashw2
8283321d14 scaleway-cli: moved to by-name 2024-09-27 12:51:21 +10:00
Weijia Wang
bf62cc791e
acme-sh: 3.0.7 -> 3.0.8 (#342069) 2024-09-27 00:50:47 +02:00
Arseniy Zorin
844fec186b pulumi-bin: 3.134.0 -> 3.134.1 2024-09-26 18:49:11 +03:00
Raghav Sood
2cc39ac5a7
stripe-cli: 1.21.5 -> 1.21.6 (#344399) 2024-09-25 21:52:27 +08:00
Nick Cao
9f51145619
granted: 0.33.0 -> 0.34.0 (#344279) 2024-09-25 08:23:03 -04:00
OTABI Tomoya
96c8726cf0
afterburn: 5.6.0 -> 5.7.0 (#342919) 2024-09-25 20:22:33 +09:00
R. Ryantm
6918e2e0ba stripe-cli: 1.21.5 -> 1.21.6 2024-09-25 09:25:12 +00:00
Nick Cao
0ecffd6c3f
drawterm: 0-unstable-2024-09-08 -> 0-unstable-2024-09-09 (#343255) 2024-09-24 18:22:24 -04:00
Nick Cao
a10dbbe70b
pulumi-bin: 3.133.0 -> 3.134.0 (#344200) 2024-09-24 18:05:07 -04:00
Nick Cao
91f81980db
ansible-lint: 24.9.0 -> 24.9.2 (#344129) 2024-09-24 18:00:03 -04:00
Artturin
e0464e4788 treewide: replace stdenv.is with stdenv.hostPlatform.is
In preparation for the deprecation of `stdenv.isX`.

These shorthands are not conducive to cross-compilation because they
hide the platforms.

Darwin might get cross-compilation for which the continued usage of `stdenv.isDarwin` will get in the way

One example of why this is bad and especially affects compiler packages
https://www.github.com/NixOS/nixpkgs/pull/343059

There are too many files to go through manually but a treewide should
get users thinking when they see a `hostPlatform.isX` in a place where it
doesn't make sense.

```
fd --type f "\.nix" | xargs sd --fixed-strings "stdenv.is" "stdenv.hostPlatform.is"
fd --type f "\.nix" | xargs sd --fixed-strings "stdenv'.is" "stdenv'.hostPlatform.is"
fd --type f "\.nix" | xargs sd --fixed-strings "clangStdenv.is" "clangStdenv.hostPlatform.is"
fd --type f "\.nix" | xargs sd --fixed-strings "gccStdenv.is" "gccStdenv.hostPlatform.is"
fd --type f "\.nix" | xargs sd --fixed-strings "stdenvNoCC.is" "stdenvNoCC.hostPlatform.is"
fd --type f "\.nix" | xargs sd --fixed-strings "inherit (stdenv) is" "inherit (stdenv.hostPlatform) is"
fd --type f "\.nix" | xargs sd --fixed-strings "buildStdenv.is" "buildStdenv.hostPlatform.is"
fd --type f "\.nix" | xargs sd --fixed-strings "effectiveStdenv.is" "effectiveStdenv.hostPlatform.is"
fd --type f "\.nix" | xargs sd --fixed-strings "originalStdenv.is" "originalStdenv.hostPlatform.is"
```
2024-09-25 00:04:37 +03:00
R. Ryantm
7a650b2e9c granted: 0.33.0 -> 0.34.0 2024-09-24 19:19:28 +00:00
Florian Brandes
689dcb33e1
pgadmin: 8.11 -> 8.12
Signed-off-by: Florian Brandes <florian.brandes@posteo.de>
2024-09-24 15:53:37 +02:00
Arseniy Zorin
e948462c1d pulumi-bin: 3.133.0 -> 3.134.0 2024-09-24 15:32:27 +03:00
R. Ryantm
3756dd83dd ansible-lint: 24.9.0 -> 24.9.2 2024-09-24 04:55:13 +00:00
Nick Cao
6f84f33764
credhub-cli: 2.9.37 -> 2.9.38 (#343941) 2024-09-23 09:48:19 -04:00
R. Ryantm
93d8ee1b67 credhub-cli: 2.9.37 -> 2.9.38 2024-09-23 11:28:35 +00:00
R. Ryantm
dfb203e2cd balena-cli: 19.0.3 -> 19.0.12 2024-09-22 23:27:17 +00:00
OTABI Tomoya
13cc737eda
ansible-lint: 24.7.0 -> 24.9.0 (#341743) 2024-09-21 15:34:58 +09:00
Nick Cao
dfe51d53ec
trivy: 0.55.1 -> 0.55.2 (#342682) 2024-09-20 18:38:36 -04:00
R. Ryantm
a60418cc66 drawterm: 0-unstable-2024-09-08 -> 0-unstable-2024-09-09 2024-09-20 12:20:37 +00:00
Fabian Affolter
0ad3670d38 trivy: adjust ldflags 2024-09-19 22:45:44 +02:00
Wael Nasreddine
e698a08789
amazon-ecr-credential-helper: 0.8.0 -> 0.9.0 (#342689) 2024-09-19 09:59:04 -07:00
R. Ryantm
adf48a9c60 afterburn: 5.6.0 -> 5.7.0 2024-09-19 01:22:21 +00:00
Nick Cao
c8d25d2992
scaleway-cli: 2.33.0 -> 2.34.0 (#342579) 2024-09-18 13:49:34 -04:00
techknowlogick
13a0d2d1ac scaleway-cli: 2.33.0 -> 2.34.0
Diff: https://github.com/scaleway/scaleway-cli/compare/v2.33.0...v2.34.0
2024-09-18 11:28:21 -04:00
R. Ryantm
4a18086b15 amazon-ecr-credential-helper: 0.8.0 -> 0.9.0 2024-09-18 01:27:39 +00:00