diff --git a/.circleci/config.yml b/.circleci/config.yml index 3cb8c7c9..04dcb010 100644 --- a/.circleci/config.yml +++ b/.circleci/config.yml @@ -10,7 +10,10 @@ workflows: - lint: requires: - checkout_code - - test: + - test-unit: + requires: + - checkout_code + - test-integration: requires: - checkout_code - security-scan: @@ -19,7 +22,8 @@ workflows: - compile: requires: - lint - - test + - test-unit + - test-integration - security-scan - hold-for-release: type: approval @@ -62,7 +66,7 @@ jobs: name: Lint command: make lint - test: + test-unit: docker: - image: circleci/golang:1.14 steps: @@ -71,6 +75,13 @@ jobs: - run: name: Unit Tests command: make test-unit + + test-integration: + docker: + - image: circleci/golang:1.14 + steps: + - restore_cache: + key: repo-{{ .Environment.CIRCLE_SHA1 }} - run: name: Integration Tests command: make test-integration diff --git a/CHANGELOG.md b/CHANGELOG.md index dae60a15..da85560b 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,6 +2,22 @@ ## [Unreleased] + +## [v0.16.0] - 2020-03-11 +### Bug Fixes +- **build:** Force pull tags after each checkout + +### Documentation Updates +- update community support information + +### Features +- **entities:** Add some more details from BrowserApplicationEntity +- **entities:** Return more data on ApmApplicationEntity, and be consistent in what we return between fetch and search + +### Refactor +- **entities:** Change Entity.Type type... Add more to the ENUMs + + ## [v0.15.0] - 2020-03-09 ### Bug Fixes @@ -329,7 +345,8 @@ - rename packages for clarity, promote Config to the public package -[Unreleased]: https://github.com/newrelic/newrelic-client-go/compare/v0.15.0...HEAD +[Unreleased]: https://github.com/newrelic/newrelic-client-go/compare/v0.16.0...HEAD +[v0.16.0]: https://github.com/newrelic/newrelic-client-go/compare/v0.15.0...v0.16.0 [v0.15.0]: https://github.com/newrelic/newrelic-client-go/compare/v0.14.0...v0.15.0 [v0.14.0]: https://github.com/newrelic/newrelic-client-go/compare/v0.13.0...v0.14.0 [v0.13.0]: https://github.com/newrelic/newrelic-client-go/compare/v0.12.0...v0.13.0 diff --git a/internal/version/version.go b/internal/version/version.go index f5cdc11a..a72f660b 100644 --- a/internal/version/version.go +++ b/internal/version/version.go @@ -1,4 +1,4 @@ package version // Version of this library -const Version string = "0.15.0" +const Version string = "0.16.0"