From 33f3c1228eceb6ac0a96c804820c1643a9637f7e Mon Sep 17 00:00:00 2001 From: Sergiu Ghitea <28300158+sergiught@users.noreply.github.com> Date: Tue, 20 Dec 2022 17:08:07 +0100 Subject: [PATCH] Add changelog for v0.41.0 (#422) --- CHANGELOG.md | 8 ++++++++ docs/resources/connection_client.md | 3 --- internal/provider/resource_auth0_connection_client.go | 4 +--- 3 files changed, 9 insertions(+), 6 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index f0ad1b77c..42852b8ae 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,11 @@ +## 0.41.0 + +BREAKING CHANGES: + +- `resource/auth0_connection`: Removed `enabled_clients` field ([#421](https://github.com/auth0/terraform-provider-auth0/pull/421)) + - It is necessary to migrate all `enabled_clients` on the `auth0_connection` resource to the [auth0_connection_client](https://registry.terraform.io/providers/auth0/auth0/latest/docs/resources/connection_client) resource. + + ## 0.40.1 FEATURES: diff --git a/docs/resources/connection_client.md b/docs/resources/connection_client.md index b629322d6..ee1b941ec 100644 --- a/docs/resources/connection_client.md +++ b/docs/resources/connection_client.md @@ -2,15 +2,12 @@ page_title: "Resource: auth0_connection_client" description: |- With this resource, you can manage enabled clients on a connection. - ~> Avoid using the enabledclients property on the "auth0connection" if making use of this resource, to avoid unexpected behavior. --- # Resource: auth0_connection_client With this resource, you can manage enabled clients on a connection. -~> Avoid using the enabled_clients property on the "auth0_connection" if making use of this resource, to avoid unexpected behavior. - ## Example Usage ```terraform diff --git a/internal/provider/resource_auth0_connection_client.go b/internal/provider/resource_auth0_connection_client.go index 32d24d4aa..5d7ec8310 100644 --- a/internal/provider/resource_auth0_connection_client.go +++ b/internal/provider/resource_auth0_connection_client.go @@ -50,9 +50,7 @@ func newConnectionClient() *schema.Resource { Importer: &schema.ResourceImporter{ StateContext: importConnectionClient, }, - Description: `With this resource, you can manage enabled clients on a connection. - -~> Avoid using the enabled_clients property on the "auth0_connection" if making use of this resource, to avoid unexpected behavior.`, + Description: "With this resource, you can manage enabled clients on a connection.", } }