From 4772031b4c1d108eb350c1f0ebff4a2c299c7917 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Fri, 1 Dec 2023 11:05:45 +0000 Subject: [PATCH 1/3] Bump github.com/auth0/go-auth0 from 1.3.0 to 1.3.1 (#929) --- go.mod | 2 +- go.sum | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/go.mod b/go.mod index 3bdffe579..9e62e7c13 100644 --- a/go.mod +++ b/go.mod @@ -5,7 +5,7 @@ go 1.20 require ( github.com/AlecAivazis/survey/v2 v2.3.7 github.com/PuerkitoBio/rehttp v1.3.0 - github.com/auth0/go-auth0 v1.3.0 + github.com/auth0/go-auth0 v1.3.1 github.com/briandowns/spinner v1.23.0 github.com/charmbracelet/glamour v0.6.0 github.com/fsnotify/fsnotify v1.7.0 diff --git a/go.sum b/go.sum index 48e300036..b9b9f227e 100644 --- a/go.sum +++ b/go.sum @@ -18,8 +18,8 @@ github.com/andybalholm/brotli v1.0.5 h1:8uQZIdzKmjc/iuPu7O2ioW48L81FgatrcpfFmiq/ github.com/andybalholm/brotli v1.0.5/go.mod h1:fO7iG3H7G2nSZ7m0zPUDn85XEX2GTukHGRSepvi9Eig= github.com/apparentlymart/go-textseg/v15 v15.0.0 h1:uYvfpb3DyLSCGWnctWKGj857c6ew1u1fNQOlOtuGxQY= github.com/apparentlymart/go-textseg/v15 v15.0.0/go.mod h1:K8XmNZdhEBkdlyDdvbmmsvpAG721bKi0joRfFdHIWJ4= -github.com/auth0/go-auth0 v1.3.0 h1:46bo0C6HYtsdSj4BEF4j6IaQrSAiUqehwuv+IO3qDJ0= -github.com/auth0/go-auth0 v1.3.0/go.mod h1:gm0NUM340x77a9YVZB50HUrJJkSchD9DkiqqbAl+s34= +github.com/auth0/go-auth0 v1.3.1 h1:J9QIKOMKs/uE9eo1OvTHfci8inuPau0M4WSgdNmPRaQ= +github.com/auth0/go-auth0 v1.3.1/go.mod h1:lpfYGQAGw5RFFWCmVc0kJI4c6w9mA1CbEaJfZ7xZycw= github.com/aybabtme/iocontrol v0.0.0-20150809002002-ad15bcfc95a0 h1:0NmehRCgyk5rljDQLKUO+cRJCnduDyn11+zGZIc9Z48= github.com/aybabtme/iocontrol v0.0.0-20150809002002-ad15bcfc95a0/go.mod h1:6L7zgvqo0idzI7IO8de6ZC051AfXb5ipkIJ7bIA2tGA= github.com/aymanbagabas/go-osc52 v1.0.3 h1:DTwqENW7X9arYimJrPeGZcV0ln14sGMt3pHZspWD+Mg= From a5f751d4fe3849199c9c0c078b818bd76fa4a898 Mon Sep 17 00:00:00 2001 From: Will Vedder Date: Fri, 1 Dec 2023 11:31:16 -0500 Subject: [PATCH 2/3] 1.3.0 (#927) * Adding initial changelog for 1.3.0 * Update CHANGELOG.md --------- Co-authored-by: Will Vedder --- CHANGELOG.md | 39 +++++++++++++++++++++++++++++++++++++++ 1 file changed, 39 insertions(+) diff --git a/CHANGELOG.md b/CHANGELOG.md index dcfdcad2d..824674405 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -7,6 +7,32 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## [Unreleased] +## [v1.3.0](https://github.com/auth0/auth0-cli/tree/v1.3.0) (Dec 1, 2023) + +[Full Changelog](https://github.com/auth0/auth0-cli/compare/v1.2.0...v1.3.0) + +### Added + +- Audience dropdown UI when running `auth0 test token` [#906] +- Scopes dropdown UI when running `auth0 test token` [#910] +- Active tenant indicator when running `auth0 tenants list` [#907] +- Prompt dropdown UI when running `auth0 ul prompts update` and `auth0 ul prompts list` [#913] +- Signing algorithm management when running `auth0 apis create` and `auth0 apis update` [#926] +- Log stream dropdown UI when running `auth0 logs streams show` [#920] +- Validate connection is enabled before creating and importing users [#921] + +### Fixed + +- Display description field when updating roles in interactive mode [#915] +- Only store access token in config file if keyring unavailable [#919] +- Only display undeployed actions when running `auth0 actions deploy` [#916] +- Don't require any scopes when authenticating with client credentials [#917] +- Show help text when no arguments provided when running `auth0 api` [#914] + +### Changed + +- Removal of "Getting members of organization" loader messaging when running `auth0 orgs members list` [#918] + ## [v1.2.0](https://github.com/auth0/auth0-cli/tree/v1.2.0) (Nov 2, 2023) [Full Changelog](https://github.com/auth0/auth0-cli/compare/v1.1.2...v1.2.0) @@ -228,6 +254,19 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 - Updating of action triggers which inevitably results in error [#597] [unreleased]: https://github.com/auth0/auth0-cli/compare/v1.0.0...HEAD +[#906]: https://github.com/auth0/auth0-cli/issues/906 +[#910]: https://github.com/auth0/auth0-cli/issues/910 +[#907]: https://github.com/auth0/auth0-cli/issues/907 +[#913]: https://github.com/auth0/auth0-cli/issues/913 +[#926]: https://github.com/auth0/auth0-cli/issues/926 +[#920]: https://github.com/auth0/auth0-cli/issues/920 +[#921]: https://github.com/auth0/auth0-cli/issues/921 +[#915]: https://github.com/auth0/auth0-cli/issues/915 +[#919]: https://github.com/auth0/auth0-cli/issues/919 +[#916]: https://github.com/auth0/auth0-cli/issues/916 +[#917]: https://github.com/auth0/auth0-cli/issues/917 +[#914]: https://github.com/auth0/auth0-cli/issues/914 +[#918]: https://github.com/auth0/auth0-cli/issues/918 [#882]: https://github.com/auth0/auth0-cli/issues/882 [#858]: https://github.com/auth0/auth0-cli/issues/858 [#857]: https://github.com/auth0/auth0-cli/issues/857 From 2bd069cfc1ee0501ed039fc80b2e550447c8ef14 Mon Sep 17 00:00:00 2001 From: Michael Christenson II Date: Fri, 1 Dec 2023 11:54:12 -0500 Subject: [PATCH 3/3] Version bump goreleaser (#930) * Bump github.com/auth0/go-auth0 from 1.2.0 to 1.3.0 (#908) Bumps [github.com/auth0/go-auth0](https://github.com/auth0/go-auth0) from 1.2.0 to 1.3.0. - [Release notes](https://github.com/auth0/go-auth0/releases) - [Changelog](https://github.com/auth0/go-auth0/blob/main/CHANGELOG.md) - [Commits](https://github.com/auth0/go-auth0/compare/v1.2.0...v1.3.0) --- updated-dependencies: - dependency-name: github.com/auth0/go-auth0 dependency-type: direct:production update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> * dxcdt-615-goreleaser-upgrade (#909) * Fix: Remove or replace deprecations for GoReleaser config Remove deprecated replacements Replace deprecated brews tap Replace deprecated scoop entries Fix name_template to reflect exact current naming conventions * DXCDT-582: Convert audience into a drop down in interactive mode in test token cmd (#906) Convert audience into a drop down in interactive mode in test token cmd * Bump github.com/auth0/go-auth0 from 1.2.0 to 1.3.0 (#908) Bumps [github.com/auth0/go-auth0](https://github.com/auth0/go-auth0) from 1.2.0 to 1.3.0. - [Release notes](https://github.com/auth0/go-auth0/releases) - [Changelog](https://github.com/auth0/go-auth0/blob/main/CHANGELOG.md) - [Commits](https://github.com/auth0/go-auth0/compare/v1.2.0...v1.3.0) --- updated-dependencies: - dependency-name: github.com/auth0/go-auth0 dependency-type: direct:production update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> --------- Signed-off-by: dependabot[bot] Co-authored-by: Sergiu Ghitea <28300158+sergiught@users.noreply.github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> * DXCDT-582: Convert audience into a drop down in interactive mode in test token cmd (#906) Convert audience into a drop down in interactive mode in test token cmd Title Os for final release name fit * Bump goreleaser version --------- Signed-off-by: dependabot[bot] Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Co-authored-by: Sergiu Ghitea <28300158+sergiught@users.noreply.github.com> --- .github/workflows/release.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 4a72051b8..ec3bc0c9d 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -27,7 +27,7 @@ jobs: - name: Run GoReleaser uses: goreleaser/goreleaser-action@336e29918d653399e599bfca99fadc1d7ffbc9f7 # pin@4.3.0 with: - version: v1.18.2 + version: v1.22.1 args: release --rm-dist env: GITHUB_TOKEN: ${{ secrets.GORELEASER_GITHUB_TOKEN }}