Skip to content

Commit 931acbf

Browse files
committed
Use latest 1.1.x release
Drop `1.1.0` since it's superseded by `1.1.1`
1 parent 5fa393d commit 931acbf

File tree

4 files changed

+18
-4
lines changed

4 files changed

+18
-4
lines changed

CHANGELOG.md

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -53,6 +53,18 @@ Change line format:
5353

5454
## Unreleased (master)
5555

56+
### Added
57+
58+
* Testing against Vault `1.1.1` ; Ref: https://github.com/sumup-oss/terraform-provider-vaulted/pull/1
59+
60+
### Changed
61+
62+
* Updated to Vault (API) library to release v1.1.2 (latest) ; Ref: https://github.com/sumup-oss/terraform-provider-vaulted/pull/1
63+
64+
### Removed
65+
66+
* Testing against Vault `1.1.0` ; Ref: https://github.com/sumup-oss/terraform-provider-vaulted/pull/1
67+
5668
## v0.1.0
5769

5870
### Added

magefile.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ var (
3535
"0.9.6",
3636
"0.11.6",
3737
"1.0.3",
38-
"1.1.0",
38+
"1.1.1",
3939
}
4040
vaultExperimentalImageVersions = []string{"latest"}
4141
)

provider/provider.go

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -18,11 +18,12 @@ import (
1818
stdRsa "crypto/rsa"
1919
"errors"
2020
"fmt"
21+
"log"
22+
"strings"
23+
2124
"github.com/hashicorp/terraform/plugin"
2225
"github.com/sumup-oss/go-pkgs/executor/vault"
2326
"github.com/sumup-oss/go-pkgs/logger"
24-
"log"
25-
"strings"
2627

2728
"github.com/hashicorp/terraform/helper/logging"
2829
"github.com/hashicorp/terraform/helper/schema"

provider/resource_vault_secret.go

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,11 +17,12 @@ package provider
1717
import (
1818
"encoding/json"
1919
"fmt"
20-
"github.com/sumup-oss/go-pkgs/executor/vault"
2120
"log"
2221
"reflect"
2322
"regexp"
2423

24+
"github.com/sumup-oss/go-pkgs/executor/vault"
25+
2526
"github.com/hashicorp/terraform/helper/schema"
2627
"github.com/sumup-oss/go-pkgs/os"
2728
"github.com/sumup-oss/vaulted/pkg/aes"

0 commit comments

Comments
 (0)