Skip to content

v1.0.0

Latest
Compare
Choose a tag to compare
@eversC eversC released this 03 Jul 21:23
· 29 commits to master since this release
97c798c

Breaking Change

If you use the CircleCIContext type, you'll now need to specify (in app config) either OrgID or (VcsType and OrgName):

e.g.:

  "AccountKeyLocations": [
    {
      "ServiceAccountName": "my_aws_machine_user",
      "CircleCIContext": [
        {
          "ContextID": "my-uuid-context-id",
          "OrgID": "my-uuid-org-id",
        }
      ]
    }
  ],

or

  "AccountKeyLocations": [
    {
      "ServiceAccountName": "my_aws_machine_user",
      "CircleCIContext": [
        {
          "ContextID": "my-uuid-context-id",
          "VcsType": "github",
          "OrgName": "ovotech"
        }
      ]
    }
  ],

see the CircleCI contexts examples for more details

What's Changed

Full Changelog: v0.29.5...v1.0.0