Skip to content

Latest commit

 

History

History
49 lines (32 loc) · 1.55 KB

CHANGELOG.md

File metadata and controls

49 lines (32 loc) · 1.55 KB

Change Log

ATTN: This project uses semantic versioning.

[Unreleased]

0.4.0 - 2023-01-27

Added:

  • UnfollowProject function added to unfollow projects
  • BuildByProjectBranch function added to build a project for a specific branch
  • BuildByProjectRevision function added to build a project for a specific revision
  • BuildByProjectTag function added to build a project for a specific tag

Bug fixes:

  • 429s from CircleCI are now handled gracefully by returning an error to the user

0.3.0 - 2019-06-29

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

0.2.0 - 2018-03-10

Backwards incomptabile changes:

  • Switched FeatureFlags to a struct from map[string]bool as it was found that not all feature flags are bools (#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.

0.1.0 - 2018-03-10

Added

  • Initial implementation.