Commit Graph

39 Commits

Author SHA1 Message Date
R. Ryantm
673e1131ee auth0-cli: 1.31.0 -> 1.32.0 2026-06-23 19:08:34 +00:00
R. Ryantm
4c87dc3d43 auth0-cli: 1.30.0 -> 1.31.0 2026-05-22 09:51:36 +00:00
R. Ryantm
36c9adab78 auth0-cli: 1.29.0 -> 1.30.0 2026-04-30 16:13:53 +00:00
R. Ryantm
ce104754a1 auth0-cli: 1.28.0 -> 1.29.0 2026-04-16 15:11:51 +00:00
R. Ryantm
6d06db849c auth0-cli: 1.27.2 -> 1.28.0 2026-03-03 16:35:21 +00:00
R. Ryantm
3fd6b926ad auth0-cli: 1.27.0 -> 1.27.2 2026-02-18 10:45:31 +00:00
R. Ryantm
cf6d0e3eec auth0-cli: 1.26.0 -> 1.27.0 2026-02-10 21:01:44 +00:00
quantenzitrone
9380e05c3c various: switch buildGoModule packages to use finalAttrs
this shouldn't create any rebuilds

the following script was used to generate this:
```fish
#!/usr/bin/env fish

# nix shell .#nixfmt nixpkgs#{nixf-diagnose,ripgrep,sd}

set base (git rev-parse HEAD)

set scope pkgs/by-name
set builder buildGoModule

set files (rg --files-with-matches -F "$builder rec {" $scope | sort -u)

for file in $files
    echo $file
    sd -F "$builder rec {" "$builder (finalAttrs: {" $file
    # version
    sd -F 'version}' 'finalAttrs.version}' $file
    sd -F '${version' '${finalAttrs.version' $file
    sd -F '= version' '= finalAttrs.version' $file
    sd -F 'inherit version;' 'inherit (finalAttrs) version;' $file
    sd -F ' + version;' ' + finalAttrs.version;' $file
    sd 'replaceStrings (.*) version' 'replaceStrings $1 finalAttrs.version' $file
    sd -F 'splitVersion version' 'splitVersion finalAttrs.version' $file
    sd -F 'versionAtLeast version' 'versionAtLeast finalAttrs.version' $file
    sd 'versions\.([a-z]+) version' 'versions.$1 finalAttrs.version' $file
    # src
    sd -F 'src}' 'finalAttrs.src}' $file
    sd -F '${src' '${finalAttrs.src' $file
    sd -F '= src' '= finalAttrs.src' $file
    sd -F 'inherit src;' 'inherit (finalAttrs) src;' $file
    sd -F 'inherit (src' 'inherit (finalAttrs.src' $file
    # meta
    sd -F '${meta' '${finalAttrs.meta' $file
    sd -F '= meta' '= finalAttrs.meta' $file
    sd -F 'inherit (meta' 'inherit (finalAttrs.meta' $file
    # other
    sd -F 'inherit version src;' 'inherit (finalAttrs) version src;' $file
    sd -F 'inherit src version;' 'inherit (finalAttrs) src version;' $file
    sd -F 'makeLibraryPath buildInputs' 'makeLibraryPath finalAttrs.buildInputs' $file
    sd -F 'buildInputs}' 'finalAttrs.buildInputs}' $file
    sd -F 'desktopItem}' 'finalAttrs.desktopItem}' $file
    sd -F 'runtimeLibs}' 'finalAttrs.runtimeLibs}' $file
    sd -F 'libPath}' 'finalAttrs.libPath}' $file
    sd -F 'runtimeDependencies}' 'finalAttrs.runtimeDependencies}' $file
    sd -F 'nativeRuntimeInputs}' 'finalAttrs.nativeRuntimeInputs}' $file
    sd -F '(!doCheck)' '(!finalAttrs.doCheck)' $file
    sd -F 'optional doCheck' 'optional finalAttrs.doCheck' $file
    sd -F 'optionals doCheck' 'optionals finalAttrs.doCheck' $file
    sd -F '++ runtimeDependencies' '++ finalAttrs.runtimeDependencies' $file
    # pname (restored afterwards)
    sd -F 'pname}' 'finalAttrs.pname}' $file
    sd -F '${pname' '${finalAttrs.pname' $file
    sd -F '= pname' '= finalAttrs.pname' $file
    # close finalAttrs lambda
    echo ')' >>$file
    # catch some errors early
    if ! nixfmt $file
        git restore $file
        continue
    end
    if ! nixf-diagnose -i sema-primop-overridden $file
        git restore $file
        continue
    end
end

set torestore (rg -F .finalAttrs --files-with-matches $scope)
if test (count $torestore) -gt 0
    git restore $torestore
end
set torestore (rg -F finalAttrs.pname --files-with-matches $scope)
if test (count $torestore) -gt 0
    git restore $torestore
end

# commit for faster eval times
git add pkgs
git commit --no-gpg-sign -m temp
set torestore

for file in $files
    # file hasn't changed
    if git diff --quiet $base $file
        continue
    end
    # try to eval the package to definitely catch all errors
    echo $file
    set pname (string split / $file -f 4)
    if ! nix eval .#$pname
        set torestore $torestore $file
    end
end

# restore files that don't eval
git reset --soft $base
git restore --staged .
if test (count $torestore) -gt 0
    git restore $torestore
end
```

after that some manual cleanup was done:
- restoring files that cause changes in the number of lines
- restoring files that cause rebuilds
- restoring files that cause merge conflicts with staging
2026-02-07 09:28:59 +01:00
R. Ryantm
81987bb328 auth0-cli: 1.25.1 -> 1.26.0 2026-01-14 21:08:44 +00:00
R. Ryantm
db87cf966d auth0-cli: 1.25.0 -> 1.25.1 2025-12-23 17:24:38 +00:00
R. Ryantm
efbe37b9b7 auth0-cli: 1.24.0 -> 1.25.0 2025-12-16 08:26:20 +00:00
R. Ryantm
8e668c84a3 auth0-cli: 1.23.0 -> 1.24.0 2025-12-09 16:15:12 +00:00
R. Ryantm
bb03c59e27 auth0-cli: 1.22.0 -> 1.23.0 2025-11-14 14:50:58 +00:00
R. Ryantm
dfa6f76006 auth0-cli: 1.21.0 -> 1.22.0 2025-10-22 06:25:20 +00:00
R. Ryantm
56001c38d2 auth0-cli: 1.20.1 -> 1.21.0 2025-10-06 05:30:32 +00:00
R. Ryantm
8c271b5715 auth0-cli: 1.20.0 -> 1.20.1 2025-09-25 21:27:23 +04:00
R. Ryantm
d0b9decf1a auth0-cli: 1.18.0 -> 1.20.0 2025-09-13 15:27:49 +00:00
R. Ryantm
d6ead11f35 auth0-cli: 1.17.1 -> 1.18.0 2025-09-02 06:42:30 +00:00
R. Ryantm
bf0b1cf228 auth0-cli: 1.17.0 -> 1.17.1 2025-08-16 18:57:43 +00:00
R. Ryantm
7ac2520c4b auth0-cli: 1.16.0 -> 1.17.0 2025-08-07 23:06:13 +00:00
R. Ryantm
2f8c004854 auth0-cli: 1.15.0 -> 1.16.0 2025-07-15 17:00:07 +00:00
R. Ryantm
ea87547cb0 auth0-cli: 1.14.1 -> 1.15.0 2025-07-01 07:41:09 +00:00
liberodark
c6729488de treewide: remove with lib Part 4 2025-06-07 00:48:50 +02:00
R. Ryantm
e5afc8efc3 auth0-cli: 1.13.0 -> 1.14.1 2025-05-28 09:21:31 +00:00
R. Ryantm
ae1e5f6f2d auth0-cli: 1.12.0 -> 1.13.0 2025-05-18 12:02:40 +00:00
R. Ryantm
8c9caaebaa auth0-cli: 1.11.0 -> 1.12.0 2025-04-28 20:35:27 +00:00
Aleksana
d8239f707e auth0-cli: install shell completion (#396185) 2025-04-17 09:57:05 +08:00
R. Ryantm
879d4f0e73 auth0-cli: 1.10.1 -> 1.11.0 2025-04-10 01:12:03 +00:00
Mitsuo HEIJO
2b918a018f auth0-cli: install shell completion 2025-04-05 11:15:43 +09:00
Silvan Mosberger
374e6bcc40 treewide: Format all Nix files
Format all Nix files using the officially approved formatter,
making the CI check introduced in the previous commit succeed:

  nix-build ci -A fmt.check

This is the next step of the of the [implementation](https://github.com/NixOS/nixfmt/issues/153)
of the accepted [RFC 166](https://github.com/NixOS/rfcs/pull/166).

This commit will lead to merge conflicts for a number of PRs,
up to an estimated ~1100 (~33%) among the PRs with activity in the past 2
months, but that should be lower than what it would be without the previous
[partial treewide format](https://github.com/NixOS/nixpkgs/pull/322537).

Merge conflicts caused by this commit can now automatically be resolved while rebasing using the
[auto-rebase script](8616af08d9/maintainers/scripts/auto-rebase).

If you run into any problems regarding any of this, please reach out to the
[formatting team](https://nixos.org/community/teams/formatting/) by
pinging @NixOS/nix-formatting.
2025-04-01 20:10:43 +02:00
R. Ryantm
06be7f5d43 auth0-cli: 1.9.2 -> 1.10.1 2025-03-30 06:16:42 +00:00
R. Ryantm
335ad2c2c4 auth0-cli: 1.9.1 -> 1.9.2 2025-03-06 20:20:43 +00:00
R. Ryantm
c68abbad0f auth0-cli: 1.9.0 -> 1.9.1 2025-02-21 15:00:13 +00:00
R. Ryantm
a378c43140 auth0-cli: 1.8.0 -> 1.9.0 2025-02-07 00:34:16 +00:00
R. Ryantm
e75833afea auth0-cli: 1.7.2 -> 1.8.0 2025-01-21 12:32:56 +00:00
R. Ryantm
73266d7a66 auth0-cli: 1.6.1 -> 1.7.2 2025-01-04 04:33:11 +01:00
Peder Bergebakken Sundt
0cd04d3036 treewide: migrate fetchgit rev = "refs/tags/..." to tag 2025-01-04 00:19:17 +01:00
R. Ryantm
d6f805f285 auth0-cli: 1.5.1 -> 1.6.1 2024-12-18 05:18:34 +01:00
aleksana
571c71e6f7 treewide: migrate packages to pkgs/by-name, take 1
We are migrating packages that meet below requirements:

1. using `callPackage`
2. called path is a directory
3. overriding set is empty (`{ }`)
4. not containing path expressions other than relative path (to
makenixpkgs-vet happy)
5. not referenced by nix files outside of the directory, other
than`pkgs/top-level/all-packages.nix`
6. not referencing nix files outside of the directory
7. not referencing `default.nix` (since it's changed to `package.nix`)
8. `outPath` doesn't change after migration

The tool is here: https://github.com/Aleksanaa/by-name-migrate.
2024-11-09 20:04:51 +08:00