From d2923009014d2c4a16e570ffdb89de6540eb28f2 Mon Sep 17 00:00:00 2001 From: Sergiu Ghitea <28300158+sergiught@users.noreply.github.com> Date: Tue, 5 Sep 2023 16:54:30 +0200 Subject: [PATCH] Add changelog for v1.0.0-beta.3 (#810) --- CHANGELOG.md | 19 +++++++++++++++++++ MIGRATION_GUIDE.md | 5 ++--- 2 files changed, 21 insertions(+), 3 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index f31437542..7b050dd72 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,22 @@ +## v1.0.0-beta.3 + +NOTES: + +- :warning: Check our [migration guide](https://github.com/auth0/terraform-provider-auth0/blob/main/MIGRATION_GUIDE.md) to navigate the breaking changes that were added in this release. + +ENHANCEMENTS: + +- `resource/auth0_client`: Improve DX for managing `is_token_endpoint_ip_header_trusted` ([#796](https://github.com/auth0/terraform-provider-auth0/pull/796)) +- `resource/auth0_log_stream`: Improve resource schema ([#798](https://github.com/auth0/terraform-provider-auth0/pull/798)) + +BUG FIXES: + +- `resource/auth0_client_credentials`: Stop requiring `read:client_keys` permission when reading the resource ([#795](https://github.com/auth0/terraform-provider-auth0/pull/795)) +- `resource/auth0_connection`: Passing-through critical connection options for following connection types: Ping Federate, AD, Azure AD, SAML([#802](https://github.com/auth0/terraform-provider-auth0/pull/802)) +- `resource/*`: Fix pagination issues when fetching resources ([#807](https://github.com/auth0/terraform-provider-auth0/pull/807)) +- `data-source/*`: Fix pagination issues when fetching data sources ([#807](https://github.com/auth0/terraform-provider-auth0/pull/807)) + + ## v1.0.0-beta.2 NOTES: diff --git a/MIGRATION_GUIDE.md b/MIGRATION_GUIDE.md index 4d0bc3551..fe0afbb2e 100644 --- a/MIGRATION_GUIDE.md +++ b/MIGRATION_GUIDE.md @@ -828,9 +828,8 @@ resource "auth0_client_grant" "my_client_grant" { ### Actions Node 18 Runtime Beta -The Node 18 Beta runtime option for actions has been removed. - -Now, you will be opted in to the GA version of Node 18 actions runtime instead. +On `v0.x` the `node18` runtime value was setting the runtime to Node 18 Beta, on `v1` this will now opt you in to the +GA version of Node 18. If you were using the `node18-actions` (GA) runtime on `v0.x`, simply rename that to `node18` on `v1`. Ensure that the versions of the trigger types you are using are allowed to use the `node18` runtime. You can retrieve the triggers available within actions and their supported runtimes following this guide: [Retrieve triggers available within actions](https://registry.terraform.io/providers/auth0/auth0/latest/docs/guides/action_triggers).