Skip to content

Commit 9a3d57b

Browse files
authored
init changie (#105)
1 parent 63253d6 commit 9a3d57b

File tree

6 files changed

+142
-3
lines changed

6 files changed

+142
-3
lines changed

.changes/0.14.0.md

Lines changed: 78 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,78 @@
1+
## v0.14.0
2+
### Jun 3, 2025
3+
4+
IMPROVEMENTS:
5+
* Updated dependencies:
6+
* Go version: 1.23.6 -> 1.24.3
7+
* `github.com/couchbase/gocb/v2` v2.9.3 -> v2.10.0
8+
* `github.com/hashicorp/vault/sdk` v0.14.1 -> v0.17.0
9+
* `github.com/ory/dockertest/v3` v3.11.0 -> v3.12.0
10+
* `golang.org/x/mod` v0.22.0 -> v0.24.0
11+
12+
## v0.13.0
13+
### Feb 7, 2025
14+
15+
IMPROVEMENTS:
16+
* Updated dependencies:
17+
* (https://github.com/hashicorp/vault-plugin-database-couchbase/pull/89)
18+
* (https://github.com/hashicorp/vault-plugin-database-couchbase/pull/92)
19+
20+
## v0.12.0
21+
### Sept 4, 2024
22+
23+
IMPROVEMENTS:
24+
* Updated dependencies: (https://github.com/hashicorp/vault-plugin-database-couchbase/pull/80)
25+
26+
BUG FIXES:
27+
* allow custom username templates to use the lowercase function (https://github.com/hashicorp/vault-plugin-database-couchbase/pull/81)
28+
29+
## v0.11.0
30+
IMPROVEMENTS:
31+
* Updated dependencies:
32+
* `github.com/jackc/pgx/v4` v4.18.1 -> v4.18.2
33+
* `google.golang.org/protobuf` v1.32.0 -> v1.33.0
34+
* `github.com/hashicorp/go-plugin` v1.5.2 to -> v1.6.0
35+
36+
## v0.10.1
37+
* Revert dependency update causing build failures on 32-bit systems
38+
* github.com/couchbase/gocb/v2 v2.7.1 -> v2.6.5
39+
40+
## v0.10.0
41+
* Updated dependencies:
42+
* github.com/couchbase/gocb/v2 v2.6.3 -> v2.6.5
43+
* github.com/hashicorp/go-hclog v1.5.0 -> v1.6.2
44+
* github.com/hashicorp/vault/sdk v0.10.0 -> v0.10.2
45+
* golang.org/x/mod v0.12.0 -> v0.15.0
46+
* github.com/opencontainers/runc v1.1.6 -> v1.1.12
47+
* github.com/docker/docker v24.0.5+incompatible -> v24.0.9+incompatible
48+
49+
## v0.9.4
50+
51+
IMPROVEMENTS:
52+
* Updated indirect dependency `golang.org/x/net` v0.9.0 -> v0.15.0 due to vulnerability GO-2023-1988 v0.9.0
53+
54+
## v0.9.3
55+
56+
IMPROVEMENTS:
57+
58+
* Updated dependencies:
59+
* `github.com/hashicorp/vault/sdk` v0.9.0 -> v0.10.0
60+
* `github.com/stretchr/testify` v1.8.3 -> v1.8.4
61+
* `golang.org/x/mod` v0.9.0 -> v0.12.0
62+
63+
## v0.9.2
64+
65+
CHANGES:
66+
* Renaming `cmd/couchbase-database-plugin/main.go` to `cmd/vault-plugin-database-couchbase/main.go` [[GH-50](https://github.com/hashicorp/vault-plugin-database-couchbase/pull/50)]
67+
68+
## v0.9.1
69+
70+
IMPROVEMENTS:
71+
* Updated dependencies:
72+
* `github.com/couchbase/gocb/v2` v2.3.3 -> v2.6.3
73+
* `github.com/hashicorp/go-hclog` v1.0.0 -> v1.5.0
74+
* `github.com/hashicorp/go-version` v1.3.0 -> v1.6.0
75+
* `github.com/hashicorp/vault/sdk` v0.5.3 -> v0.9.0
76+
* `github.com/ory/dockertest/v3` v3.8.0 -> v3.10.0
77+
* `github.com/stretchr/testify` v1.7.0 -> v1.8.3
78+
* `golang.org/x/mod` v0.9.0 added

.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-couchbase/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: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -8,4 +8,6 @@
88

99
- [ ] If applicable, I've documented the impact of any changes to security controls.
1010

11+
- [ ] Changelog entry added. See [Updating the Changelog](https://github.com/hashicorp/vault-plugin-database-couchbase/blob/main/README.md#updating-the-changelog).
12+
1113
Examples of changes to security controls include using new access control methods, adding or removing logging pipelines, etc.

CHANGELOG.md

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,3 @@
1-
## Unreleased
2-
31
## v0.14.0
42
### Jun 3, 2025
53

README.md

Lines changed: 40 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -143,4 +143,43 @@ You can run `make dev-vault` in the root of the repo to start up a development v
143143

144144
### Acceptance tests
145145

146-
Run `make testacc`.
146+
Run `make testacc`.
147+
148+
## Updating the Changelog
149+
150+
All pull requests that introduce a user-facing change must include a changelog
151+
entry. We use the [changie](https://changie.dev/) tool to manage these entries
152+
and automate the release process.
153+
154+
---
155+
### 1. Installing Changie
156+
157+
You only need to do this once. If you don't have `changie` installed, choose one of the options below.
158+
159+
* **Homebrew** (macOS):
160+
```shell
161+
brew install changie
162+
```
163+
* **Go Install**:
164+
```shell
165+
go install github.com/miniscruff/changie@latest
166+
```
167+
* **Other Methods**:
168+
See the [official changie installation guide](https://changie.dev/guide/installation/) for other options, including pre-compiled binaries.
169+
170+
---
171+
### 2. Creating an Entry
172+
173+
Once your code changes are complete, create the changelog entry:
174+
175+
1. **Run the command** in your terminal:
176+
```shell
177+
changie new
178+
```
179+
2. **Follow the prompts.** An interactive prompt will ask you to select the
180+
kind of change (e.g., `BREAKING CHANGES`, `NOTES`, `FEATURES`) and write a concise description of
181+
what you changed.
182+
183+
3. **Commit the new file.** After you're done, `changie` will create a new
184+
YAML file in the `.changie/unreleased` directory. Commit this file along with your other
185+
code changes before submitting your pull request.

0 commit comments

Comments
 (0)