Skip to content

Commit 7d7ee18

Browse files
Merge pull request #1642 from oracle/release_gh
Releasing version v4.86.1
2 parents 08af69f + 2e6ce61 commit 7d7ee18

File tree

2,469 files changed

+7217
-7209
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

2,469 files changed

+7217
-7209
lines changed

CHANGELOG.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,8 @@
1+
## 4.86.1 (July 28, 2022)
2+
3+
### Bug Fix
4+
- Fix module name in go.mod
5+
16
## 4.86.0 (July 26, 2022)
27

38
### Added

go.mod

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
module terraform-provider-oci
1+
module github.com/oracle/terraform-provider-oci
22

33
require (
44
github.com/fatih/color v1.7.0

internal/acctest/acctest.go

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,8 +5,8 @@ import (
55

66
"github.com/hashicorp/terraform-plugin-sdk/v2/helper/schema"
77

8-
"terraform-provider-oci/internal/globalvar"
9-
"terraform-provider-oci/internal/utils"
8+
"github.com/oracle/terraform-provider-oci/internal/globalvar"
9+
"github.com/oracle/terraform-provider-oci/internal/utils"
1010

1111
"os"
1212
"path"

internal/acctest/oci_sweeper.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ import (
1515

1616
"github.com/hashicorp/terraform-plugin-sdk/v2/helper/resource"
1717

18-
utils "terraform-provider-oci/internal/utils"
18+
utils "github.com/oracle/terraform-provider-oci/internal/utils"
1919
)
2020

2121
/* This map holds the list of ocids for a given resourceType by compartment

internal/acctest/oci_sweeper_test.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ import (
1414
"github.com/hashicorp/terraform-plugin-sdk/v2/helper/schema"
1515
oci_identity "github.com/oracle/oci-go-sdk/v65/identity"
1616

17-
"terraform-provider-oci/internal/client"
17+
"github.com/oracle/terraform-provider-oci/internal/client"
1818
)
1919

2020
func setUp(t *testing.T) {

internal/acctest/provider_test.go

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -16,18 +16,18 @@ import (
1616

1717
oci_identity "github.com/oracle/oci-go-sdk/v65/identity"
1818

19-
"terraform-provider-oci/internal/globalvar"
19+
"github.com/oracle/terraform-provider-oci/internal/globalvar"
2020

21-
"terraform-provider-oci/httpreplay"
21+
"github.com/oracle/terraform-provider-oci/httpreplay"
2222

2323
"github.com/hashicorp/terraform-plugin-sdk/v2/helper/schema"
2424
"github.com/stretchr/testify/assert"
2525

2626
oci_common "github.com/oracle/oci-go-sdk/v65/common"
2727

28-
tf_client "terraform-provider-oci/internal/client"
29-
"terraform-provider-oci/internal/provider"
30-
"terraform-provider-oci/internal/utils"
28+
tf_client "github.com/oracle/terraform-provider-oci/internal/client"
29+
"github.com/oracle/terraform-provider-oci/internal/provider"
30+
"github.com/oracle/terraform-provider-oci/internal/utils"
3131
)
3232

3333
// This test runs the Provider sanity checks.

internal/acctest/test_helpers.go

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -20,23 +20,23 @@ import (
2020

2121
"github.com/stretchr/testify/assert"
2222

23-
"terraform-provider-oci/internal/globalvar"
23+
"github.com/oracle/terraform-provider-oci/internal/globalvar"
2424

2525
"github.com/hashicorp/go-multierror"
2626

27-
"terraform-provider-oci/httpreplay"
27+
"github.com/oracle/terraform-provider-oci/httpreplay"
2828

2929
"github.com/hashicorp/terraform-plugin-sdk/v2/helper/resource"
3030
"github.com/hashicorp/terraform-plugin-sdk/v2/helper/schema"
3131
"github.com/hashicorp/terraform-plugin-sdk/v2/terraform"
3232
oci_common "github.com/oracle/oci-go-sdk/v65/common"
3333

34-
tf_client "terraform-provider-oci/internal/client"
35-
tf_provider "terraform-provider-oci/internal/provider"
34+
tf_client "github.com/oracle/terraform-provider-oci/internal/client"
35+
tf_provider "github.com/oracle/terraform-provider-oci/internal/provider"
3636

37-
//tf_resource_discovery "terraform-provider-oci/oci/resourcediscovery"
38-
tf_resource "terraform-provider-oci/internal/tfresource"
39-
"terraform-provider-oci/internal/utils"
37+
//tf_resource_discovery "github.com/oracle/terraform-provider-oci/oci/resourcediscovery"
38+
tf_resource "github.com/oracle/terraform-provider-oci/internal/tfresource"
39+
"github.com/oracle/terraform-provider-oci/internal/utils"
4040
)
4141

4242
var (

internal/acctest/test_helpers_test.go

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -6,14 +6,14 @@ import (
66
"reflect"
77
"testing"
88

9-
tf_client "terraform-provider-oci/internal/client"
9+
tf_client "github.com/oracle/terraform-provider-oci/internal/client"
1010

1111
"github.com/stretchr/testify/assert"
1212

13-
"terraform-provider-oci/internal/globalvar"
14-
"terraform-provider-oci/internal/provider"
13+
"github.com/oracle/terraform-provider-oci/internal/globalvar"
14+
"github.com/oracle/terraform-provider-oci/internal/provider"
1515

16-
"terraform-provider-oci/internal/utils"
16+
"github.com/oracle/terraform-provider-oci/internal/utils"
1717

1818
"github.com/hashicorp/go-cty/cty"
1919
"github.com/hashicorp/terraform-plugin-sdk/v2/helper/resource"

internal/client/provider_clients.go

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -11,12 +11,12 @@ import (
1111

1212
oci_kms "github.com/oracle/oci-go-sdk/v65/keymanagement"
1313

14-
"terraform-provider-oci/internal/globalvar"
14+
"github.com/oracle/terraform-provider-oci/internal/globalvar"
1515

1616
oci_common "github.com/oracle/oci-go-sdk/v65/common"
1717
oci_work_requests "github.com/oracle/oci-go-sdk/v65/workrequests"
1818

19-
utils "terraform-provider-oci/internal/utils"
19+
utils "github.com/oracle/terraform-provider-oci/internal/utils"
2020
)
2121

2222
var OracleClientRegistrationsVar *OracleClientRegistrations // This is a global registration for all oracle clients. This is invariant information about all clients regardless of region

internal/globalvar/version.go

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,8 +7,8 @@ import (
77
"log"
88
)
99

10-
const Version = "4.86.0"
11-
const ReleaseDate = "2022-07-27"
10+
const Version = "4.86.1"
11+
const ReleaseDate = "2022-07-28"
1212

1313
func PrintVersion() {
1414
log.Printf("[INFO] terraform-provider-oci %s\n", Version)

0 commit comments

Comments
 (0)