Skip to content

Releases: buildkite-plugins/secrets-buildkite-plugin

v2.0.0

22 Jan 03:52
a01ca18

Choose a tag to compare

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

  • @mcncl made their first contribution in #10

Full Changelog: v1.0.2...v2.0.0

v1.0.2

07 Nov 14:20
ca17a67

Choose a tag to compare

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

07 Nov 09:41
a8ea975

Choose a tag to compare

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

Full Changelog: v1.0.0...v1.0.1

v1.0.0

19 Jun 16:30

Choose a tag to compare

(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: bar

Check the README for details on the new features!