Releases: buildkite-plugins/secrets-buildkite-plugin
Releases · buildkite-plugins/secrets-buildkite-plugin
v2.0.0
What's Changed
- chore(deps): update buildkite/plugin-tester docker tag to v4.3.0 by @renovate[bot] in #7
- chore(deps): update buildkite plugin plugin-tester to v1.3.0 by @renovate[bot] in #8
- feat: Refactor into modular design, improve functionality by @JoeColeman95 in #9
- docs: update versions, reduce length of upgrade prose by @mcncl in #10
New Contributors
Full Changelog: v1.0.2...v2.0.0
v1.0.2
Warning
This change introduces the requirement to define env files. If you were previously depending on default behaviour to detect an env file named env, ensure you set the attribute env: "env" like so:
steps:
- command: build.sh
plugins:
- secrets#v1.0.2:
env: "env"
What's Changed
- Fix env parameter to only fetch secret when explicitly set by @JoeColeman95 in #6
Full Changelog: v1.0.1...v1.0.2
v1.0.1
What's Changed
- chore(deps): update buildkite/plugin-tester docker tag to v4.2.0 by @renovate[bot] in #3
- chore(deps): update buildkite plugin plugin-tester to v1.2.0 by @renovate[bot] in #2
- fix: update plugin config name from key to env by @lizrabuya in #4
- Adds automatic retry logic with exponential backoff by @JoeColeman95 in #5
New Contributors
- @renovate[bot] made their first contribution in #3
- @lizrabuya made their first contribution in #4
- @JoeColeman95 made their first contribution in #5
Full Changelog: v1.0.0...v1.0.1
v1.0.0
(Round Two 🛎️🥊) v1.0.0
Originally cluster-secrets the secrets plugin has been renamed and re-released.
This release adds the ability to reference individual secret keys as well as the keeping the existing functionality of referencing an env key in Buildkite Secrets!
steps:
- command: echo "The content of ANIMAL is \$ANIMAL"
plugins:
- cluster-secrets#v1.0.0:
env: "foo"
variables:
ANIMAL: llamas
FOO: barCheck the README for details on the new features!