Skip to content

Commit 583752a

Browse files
authored
init changie (#131)
1 parent f36a856 commit 583752a

File tree

6 files changed

+154
-4
lines changed

6 files changed

+154
-4
lines changed

.changes/0.14.1.md

Lines changed: 92 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,92 @@
1+
## 0.14.1
2+
### June 5, 2025
3+
4+
IMPROVEMENTS:
5+
6+
* Added key-pair auth support for database configuration in Vault 1.20.x (https://github.com/hashicorp/vault-plugin-database-snowflake/pull/116)
7+
8+
## 0.14.0
9+
### May 23, 2025
10+
11+
IMPROVEMENTS:
12+
13+
* Updated dependencies (https://github.com/hashicorp/vault-plugin-database-snowflake/pull/105)
14+
15+
## 0.13.2
16+
### June 5, 2025
17+
18+
IMPROVEMENTS:
19+
20+
* Added key-pair auth support for database configuration in Vault 1.19.6 (https://github.com/hashicorp/vault-plugin-database-snowflake/pull/117)
21+
22+
## 0.13.0
23+
### Feb 11, 2025
24+
25+
IMPROVEMENTS:
26+
27+
* Updated dependencies (https://github.com/hashicorp/vault-plugin-database-snowflake/pull/100)
28+
29+
## 0.12.2
30+
### June 5, 2025
31+
32+
IMPROVEMENTS:
33+
34+
* Added key-pair auth support for database configuration in Vault 1.18.11 Enterprise (https://github.com/hashicorp/vault-plugin-database-snowflake/pull/118)
35+
36+
## 0.12.0
37+
### Sept 4, 2024
38+
39+
IMPROVEMENTS:
40+
* Updated dependencies (https://github.com/hashicorp/vault-plugin-database-snowflake/pull/92)
41+
42+
## 0.11.2
43+
### June 5, 2025
44+
45+
IMPROVEMENTS:
46+
47+
* Added key-pair auth support for database configuration in Vault 1.17.18 Enterprise (https://github.com/hashicorp/vault-plugin-database-snowflake/pull/119)
48+
49+
## 0.11.0
50+
### May 20, 2024
51+
52+
IMPROVEMENTS:
53+
* Updated dependencies (https://github.com/hashicorp/vault-plugin-database-snowflake/pull/90)
54+
* Updated dependencies [GH-82](https://github.com/hashicorp/vault-plugin-database-snowflake/pull/82):
55+
* `github.com/hashicorp/vault/sdk` v0.10.2 -> v0.11.0
56+
* `github.com/jackc/pgx/v4` v4.18.1 -> v4.18.2
57+
* `github.com/snowflakedb/gosnowflake` v1.7.2 -> v1.8.0
58+
59+
## 0.10.3
60+
### June 5, 2025
61+
62+
IMPROVEMENTS:
63+
64+
* Added key-pair auth support for database configuration in Vault 1.16.22 Enterprise (https://github.com/hashicorp/vault-plugin-database-snowflake/pull/120)
65+
66+
## 0.10.0
67+
### Jan 31, 2024
68+
CHANGES:
69+
* bump go.mod go version from 1.20 to 1.21 [GH-80](https://github.com/hashicorp/vault-plugin-database-snowflake/pull/80)
70+
71+
## 0.9.2
72+
### Jan 24, 2024
73+
CHANGES:
74+
* downgrade go.mod go version from 1.21 to 1.20 [GH-78](https://github.com/hashicorp/vault-plugin-database-snowflake/pull/78)
75+
76+
## 0.9.1
77+
### Jan 23, 2024
78+
IMPROVEMENTS:
79+
* Updated dependencies:
80+
* github.com/hashicorp/vault/sdk v0.9.2 -> v0.10.2
81+
* github.com/snowflakedb/gosnowflake v1.6.24 -> v1.7.2
82+
83+
## 0.9.0
84+
### August 22, 2023
85+
86+
IMPROVEMENTS:
87+
* Updated dependencies [GH-68](https://github.com/hashicorp/vault-plugin-database-snowflake/pull/68)::
88+
* `github.com/snowflakedb/gosnowflake` v1.6.23 -> v1.6.24
89+
* Updated dependencies [GH-67](https://github.com/hashicorp/vault-plugin-database-snowflake/pull/67)::
90+
* `github.com/hashicorp/vault/sdk` v0.9.0 -> v0.9.2
91+
* `github.com/snowflakedb/gosnowflake` v1.6.18 -> v1.6.23
92+
* `github.com/stretchr/testify` v1.8.2 -> v1.8.4

.changes/unreleased/.gitkeep

Whitespace-only changes.

.changie.yaml

Lines changed: 22 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,22 @@
1+
changesDir: .changes
2+
unreleasedDir: unreleased
3+
changelogPath: CHANGELOG.md
4+
versionExt: md
5+
versionFormat: '## {{.Version}} ({{.Time.Format "January 02, 2006"}})'
6+
kindFormat: '{{.Kind}}:'
7+
changeFormat: '* {{.Body}} ([#{{.Custom.Issue}}](https://github.com/hashicorp/vault-plugin-database-snowflake/issues/{{.Custom.Issue}}))'
8+
custom:
9+
- key: Issue
10+
label: Issue/PR Number
11+
type: int
12+
minInt: 1
13+
kinds:
14+
- label: BREAKING CHANGES
15+
- label: NOTES
16+
- label: FEATURES
17+
- label: ENHANCEMENTS
18+
- label: BUG FIXES
19+
newlines:
20+
afterKind: 1
21+
beforeKind: 1
22+
endOfVersion: 2

.github/PULL_REQUEST_TEMPLATE.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -18,6 +18,7 @@ How was this change implemented?
1818
[Example](https://github.com/hashicorp/vault/commit/2715f5cec982aabc7b7a6ae878c547f6f475bba6)
1919
[ ] Add output for any tests not ran in CI to the PR description (eg, acceptance tests)
2020
[ ] Backwards compatible
21+
[ ] Changelog entry added. See [Updating the Changelog](https://github.com/hashicorp/vault-plugin-database-snowflake/blob/main/README.md#updating-the-changelog).
2122

2223
## PCI review checklist
2324

CHANGELOG.md

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,3 @@
1-
## Unreleased
2-
3-
* Add changes here
4-
51
## 0.14.1
62
### June 5, 2025
73

README.md

Lines changed: 39 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -71,3 +71,42 @@ To run the acceptance tests, invoke `make testacc`:
7171
```sh
7272
$ make testacc
7373
```
74+
75+
## Updating the Changelog
76+
77+
All pull requests that introduce a user-facing change must include a changelog
78+
entry. We use the [changie](https://changie.dev/) tool to manage these entries
79+
and automate the release process.
80+
81+
---
82+
### 1. Installing Changie
83+
84+
You only need to do this once. If you don't have `changie` installed, choose one of the options below.
85+
86+
* **Homebrew** (macOS):
87+
```shell
88+
brew install changie
89+
```
90+
* **Go Install**:
91+
```shell
92+
go install github.com/miniscruff/changie@latest
93+
```
94+
* **Other Methods**:
95+
See the [official changie installation guide](https://changie.dev/guide/installation/) for other options, including pre-compiled binaries.
96+
97+
---
98+
### 2. Creating an Entry
99+
100+
Once your code changes are complete, create the changelog entry:
101+
102+
1. **Run the command** in your terminal:
103+
```shell
104+
changie new
105+
```
106+
2. **Follow the prompts.** An interactive prompt will ask you to select the
107+
kind of change (e.g., `BREAKING CHANGES`, `NOTES`, `FEATURES`) and write a concise description of
108+
what you changed.
109+
110+
3. **Commit the new file.** After you're done, `changie` will create a new
111+
YAML file in the `.changie/unreleased` directory. Commit this file along with your other
112+
code changes before submitting your pull request.

0 commit comments

Comments
 (0)