circleci v0.3.0 Release Notes
Release Date: 2019-06-29 // almost 4 years ago-
โ Added:
- ๐
Build
s now returnWorkflow
information - ๐
Build
s now returnPicard
information which describes the execution environment - ๐
Build
s now returnPlatform
information Action
s now returnBackground
informationCommitDetails
now returnBranch
andPullRequest
- ๐
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 astruct
frommap[string]bool
as it was found that not all feature flags arebool
s (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 underlyingmap[string]interface{}
to access unknown feature flags.
- Switched