Skip to content

Commit a819ba7

Browse files
chore(deps): bump github.com/auth0/go-auth0/v2 from 2.12.0 to 2.13.0 (#1545)
* chore(deps): bump github.com/auth0/go-auth0/v2 from 2.12.0 to 2.13.0 Bumps [github.com/auth0/go-auth0/v2](https://github.com/auth0/go-auth0) from 2.12.0 to 2.13.0. - [Release notes](https://github.com/auth0/go-auth0/releases) - [Changelog](https://github.com/auth0/go-auth0/blob/main/CHANGELOG.md) - [Commits](auth0/go-auth0@v2.12.0...v2.13.0) --- updated-dependencies: - dependency-name: github.com/auth0/go-auth0/v2 dependency-version: 2.13.0 dependency-type: direct:production update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] <support@github.com> * fix(tests): update phone template IDs to use auth0.String for consistency --------- Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Co-authored-by: Ramya Anusri <62586490+ramya18101@users.noreply.github.com> Co-authored-by: ramya18101 <anusriankisetty@gmail.com>
1 parent a06950e commit a819ba7

3 files changed

Lines changed: 5 additions & 5 deletions

File tree

go.mod

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ require (
77
github.com/PuerkitoBio/rehttp v1.4.0
88
github.com/atotto/clipboard v0.1.4
99
github.com/auth0/go-auth0 v1.43.0
10-
github.com/auth0/go-auth0/v2 v2.12.0
10+
github.com/auth0/go-auth0/v2 v2.13.0
1111
github.com/briandowns/spinner v1.23.2
1212
github.com/charmbracelet/glamour v1.0.0
1313
github.com/chzyer/readline v0.0.0-20180603132655-2972be24d48e

go.sum

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -22,8 +22,8 @@ github.com/atotto/clipboard v0.1.4 h1:EH0zSVneZPSuFR11BlR9YppQTVDbh5+16AmcJi4g1z
2222
github.com/atotto/clipboard v0.1.4/go.mod h1:ZY9tmq7sm5xIbd9bOK4onWV4S6X0u6GY7Vn0Yu86PYI=
2323
github.com/auth0/go-auth0 v1.43.0 h1:sbtJHqukY1esWqlvyRpwIZ/If1m4h8e24TW2UztMXtA=
2424
github.com/auth0/go-auth0 v1.43.0/go.mod h1:32sQB1uAn+99fJo6N819EniKq8h785p0ag0lMWhiTaE=
25-
github.com/auth0/go-auth0/v2 v2.12.0 h1:M6YphgwMB9H/3h9nbNOy05gEj0LkDLujA8QzZ22jk7c=
26-
github.com/auth0/go-auth0/v2 v2.12.0/go.mod h1:Q/Y3VZVoI3sw87VyTPhx2TQL6Sq4Q/iCP67rW2gcn+M=
25+
github.com/auth0/go-auth0/v2 v2.13.0 h1:Lf1cPRypkb879mHin1GlGS6NtWkO47Efo0Bq2HIMez4=
26+
github.com/auth0/go-auth0/v2 v2.13.0/go.mod h1:Q/Y3VZVoI3sw87VyTPhx2TQL6Sq4Q/iCP67rW2gcn+M=
2727
github.com/aybabtme/iocontrol v0.0.0-20150809002002-ad15bcfc95a0 h1:0NmehRCgyk5rljDQLKUO+cRJCnduDyn11+zGZIc9Z48=
2828
github.com/aybabtme/iocontrol v0.0.0-20150809002002-ad15bcfc95a0/go.mod h1:6L7zgvqo0idzI7IO8de6ZC051AfXb5ipkIJ7bIA2tGA=
2929
github.com/aymanbagabas/go-osc52/v2 v2.0.1 h1:HwpRHbFMcZLEVr42D4p7XBqjyuxQH5SMiErDT4WkJ2k=

internal/cli/terraform_fetcher_test.go

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -318,11 +318,11 @@ func Test_phoneNotificationTemplateResourceFetcher_FetchData(t *testing.T) {
318318
&managementv2.ListPhoneTemplatesResponseContent{
319319
Templates: []*managementv2.PhoneTemplate{
320320
{
321-
ID: "pnt_abc123",
321+
ID: auth0.String("pnt_abc123"),
322322
Type: managementv2.PhoneTemplateNotificationTypeEnumOtpVerify,
323323
},
324324
{
325-
ID: "pnt_def456",
325+
ID: auth0.String("pnt_def456"),
326326
Type: managementv2.PhoneTemplateNotificationTypeEnumOtpEnroll,
327327
},
328328
},

0 commit comments

Comments
 (0)