Releases: buildkite-plugins/vault-secrets-buildkite-plugin
Releases · buildkite-plugins/vault-secrets-buildkite-plugin
v2.2.0 (📝 Jot It Down)
What's Changed
- chore(deps): update buildkite plugin docker-compose to v5.4.0 by @renovate in #58
- chore(deps): update buildkite plugin shellcheck to v1.4.0 by @renovate in #59
- fix: JWT auth method by @jeremybumsted in #60
- update README for release by @jeremybumsted in #61
Upgrading
To upgrade, update your pipeline.yml
files:
steps:
- command: ./run_build.sh
plugins:
- vault-secrets#v2.1.1:
+ vault-secrets#v2.2.0:
server: "https://my-vault-server"
path: secret/buildkite
auth:
method: "approle"
role-id: "my-role-id"
Full Changelog: v2.1.1...v2.2.0
v2.1.1 (🐞Squashing Bugs)
What's Changed
- updated README due to the new release by @ivannalisetska in #53
- SUP-2419: Add CODEOWNERS by @tomowatt in #54
- Fix integration tests by @toote in #56
- Remove explicit targeting of the hosted queue by @yob in #57
Upgrading
To upgrade, update your pipeline.yml
files:
steps:
- command: ./run_build.sh
plugins:
- vault-secrets#v2.1.0:
+ vault-secrets#v2.1.1:
server: "https://my-vault-server"
path: secret/buildkite
auth:
method: "approle"
role-id: "my-role-id"
Full Changelog: v2.1.0...v2.1.1
v2.0.0 ( ☔ Beautiful Rainy Day)
What's Changed
- As per the documentation of vault (https://developer.hashicorp.com/vault/docs/enterprise/namespaces#namespace-naming-restrictions) the top level namespace default is
root
; we previously had it set to admin, so we are making the change to align with the expected behavior.
This means it would break for users that are usingadmin
as it's default namespace. By @nsuma8989 (#36 ) - Support for Custom Secret Key, by @jeremybumsted (#34)
Full Changelog: v1.1.0...v2.0.0
v1.1.0 ☀️ Summertime
What's Changed
- Add support for AWS auth @jeremybumsted in #24
- Add support for JWT authentication by @jeremybumsted in #32
- Updates to dependencies & test improvements
New Contributors
Full Changelog: v1.0.0...v1.1.0
v1.0.0 (❄️ Spring Snow 🌸)
The first official release of the Vault Secrets Buildkite plugin 🎉
What's Changed
- Full support for AppRole Authentication
- Fix errors evaluating secrets with special characters by @jeremybumsted in #19
- Enable support for Vault Namespaces by @jeremybumsted in #21
Full Changelog: v0.2.2...v1.0.0
v0.2.2
Fix issues that prevent custom secret paths from being used
0.2.1
Fixes issues with VAULT_TOKEN
not being exported properly.
First day of Fall 🍁
Brings plugin up-to-date with the latest version of the Vault CLI
- Support AppRole authentication
- Support KV2 secrets engine
- Updated README with examples for usage