All Versions
3
Latest Version
Avg Release Cycle
281 days
Latest Release
2095 days ago
Changelog History
Changelog History
-
v0.3.0 Changes
June 29, 2019โ 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
- ๐
-
v0.2.0 Changes
March 10, 2018Backwards 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
-
v0.1.0 Changes
December 15, 2017โ Added
- ๐ Initial implementation.