Merge pull request #301875 from sjbodzo/upgrade-auth0-cli-to-1.4.0

auth0-cli: 1.1.2 -> 1.4.0
This commit is contained in:
Fabian Affolter 2024-04-12 09:23:44 +02:00 committed by GitHub
commit 0c250083fb
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with 11 additions and 7 deletions

View File

@ -5,21 +5,22 @@
buildGoModule rec {
pname = "auth0-cli";
version = "1.1.2";
version = "1.4.0";
src = fetchFromGitHub {
owner = "auth0";
repo = "auth0-cli";
rev = "v${version}";
hash = "sha256-EJH+Vn7wvrQ2umjmSXHjbgf2uf/kRbDoo0usTMqDFo4=";
rev = "refs/tags/v${version}";
hash = "sha256-j7HT57/4rrrVkx9Zz+XuWD6UL0spdej+U5gWtFo1FSI=";
};
vendorHash = "sha256-T8y7MPFebDU6skfz4Rqo0ElRRaldtfexOl99D7h+orU=";
vendorHash = "sha256-bWAneCRsQbPRxEM/3jr1/Lov6NV67MRycOgrlj3bKF8=";
ldflags = [
"-s" "-w"
"-X github.com/auth0/auth0-cli/internal/buildinfo.Version=v${version}"
"-X github.com/auth0/auth0-cli/internal/buildinfo.Revision=0000000"
"-s"
"-w"
"-X=github.com/auth0/auth0-cli/internal/buildinfo.Version=v${version}"
"-X=github.com/auth0/auth0-cli/internal/buildinfo.Revision=0000000"
];
preCheck = ''
@ -27,6 +28,9 @@ buildGoModule rec {
# This is because subPackages above limits what is built to just what we
# want but also limits the tests
unset subPackages
# Test requires network access
substituteInPlace internal/cli/universal_login_customize_test.go \
--replace-fail "TestFetchUniversalLoginBrandingData" "SkipFetchUniversalLoginBrandingData"
'';
subPackages = [ "cmd/auth0" ];