circleci v0.3.0 Release Notes

Release Date: 2019-06-29 // almost 5 years ago
  • โž• Added:

    • ๐Ÿ— Builds now return Workflow information
    • ๐Ÿ— Builds now return Picard information which describes the execution environment
    • ๐Ÿ— Builds now return Platform information
    • Actions now return Background information
    • CommitDetails now return Branch and PullRequest
    • ๐Ÿ— BuildOpts method for building a project with arbitrary parameters

    ๐Ÿ› Bug fixes:

    • ๐Ÿ›  Fix issue with paginating queries returning a 401
    • ๐Ÿ— Actually send build parameters for ParameterizedBuild
    • ๐Ÿ›  Fix feature flag parsing to not cause a null pointer panic

Previous changes from v0.2.0

  • Backwards incomptabile changes:

    • Switched FeatureFlags to a struct from map[string]bool as it was found that not all feature flags are bools (https://github.com/jszwedko/go-circleci/issues/8) which resulted in non-bool values being inaccessible. Known feature flags are encoded as struct fields with a .Raw() method to access the underlying map[string]interface{} to access unknown feature flags.