Skip to content

Commit c9450d8

Browse files
committed
Finalize changelog and release for version v7.2.0
1 parent 75afbe3 commit c9450d8

File tree

3 files changed

+19
-3
lines changed

3 files changed

+19
-3
lines changed

CHANGELOG.md

Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -14,6 +14,22 @@
1414
- Format
1515
- fix infinite loop for OSMH resource discovery
1616

17+
## 7.2.0 (Unreleased)
18+
19+
### Added
20+
- Support for Autonomous Recovery Service - Long Term Archive Feature
21+
- MySQL HeatWave Service: Network Security Group (NSG)
22+
- README.md of service examples with magic button
23+
- README.md of service examples with magic button
24+
- Release for v7.1.0
25+
- Support for OpenSearch OBO metering for external customers
26+
- Support for bulk PDB enablement and monitoring in Database Management Service
27+
### Bug Fix
28+
- fixed oci_adm_knowledge_bases data source docs to reflect the implementation
29+
- Remove computed parameter from target_ids UA/SA unset Baseline APIs in Data Safe
30+
- Format
31+
- fix infinite loop for OSMH resource discovery
32+
1733
## 7.1.0 (May 14, 2025)
1834

1935
### Added

internal/integrationtest/recovery_long_term_backup_test.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,9 +10,9 @@ import (
1010
"testing"
1111
"time"
1212

13-
"github.com/hashicorp/terraform-plugin-sdk/v2/helper/resource"
1413
"github.com/hashicorp/terraform-plugin-sdk/v2/helper/schema"
1514
"github.com/hashicorp/terraform-plugin-sdk/v2/terraform"
15+
"github.com/hashicorp/terraform-plugin-testing/helper/resource"
1616
"github.com/oracle/oci-go-sdk/v65/common"
1717
oci_recovery "github.com/oracle/oci-go-sdk/v65/recovery"
1818

internal/service/recovery/recovery_long_term_backup_resource.go

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ import (
1010
"strings"
1111
"time"
1212

13-
"github.com/hashicorp/terraform-plugin-sdk/v2/helper/resource"
13+
"github.com/hashicorp/terraform-plugin-sdk/v2/helper/retry"
1414
"github.com/hashicorp/terraform-plugin-sdk/v2/helper/schema"
1515

1616
oci_common "github.com/oracle/oci-go-sdk/v65/common"
@@ -340,7 +340,7 @@ func longTermBackupWaitForWorkRequest(wId *string, entityType string, action oci
340340
retryPolicy.ShouldRetryOperation = longTermBackupWorkRequestShouldRetryFunc(timeout)
341341

342342
response := oci_recovery.GetWorkRequestResponse{}
343-
stateConf := &resource.StateChangeConf{
343+
stateConf := &retry.StateChangeConf{
344344
Pending: []string{
345345
string(oci_recovery.OperationStatusInProgress),
346346
string(oci_recovery.OperationStatusAccepted),

0 commit comments

Comments
 (0)