This is an automated email from the ASF dual-hosted git repository.
duncangrant pushed a change to branch master
in repository https://gitbox.apache.org/repos/asf/brooklyn-client.git.
from 3f58ebd Merge pull request #77 from jcabrerizo/feature/multiHeaders
new 9a5fa7d add tests for Display
new 496e632 switch to using Kubernetes jsonpath package
new fbb110f echo Go version in build.sh
new dbe9001 update notice files with new package
new 111dda9 avoid warnings
new 3101f40 Remove some duplication in test code
new 53b6c1b use path.Join instead of Sprintf
new 46fe70f fix a couple of error returns in (currently unused) functions
new db465a3 tidy error handling and variable naming
new 1896625 try matryer/is instead of testify
new d5c439b do a little more test and make sure to run unit tests during
build
new 669afb3 Merge pull request #78 from geomacy/jsonpath-update
The 433 revisions listed above as "new" are entirely new to this
repository and will be described in separate emails. The revisions
listed as "add" were already present in the repository and have only
been added to this reference.
Summary of changes:
cli/Gopkg.lock | 23 +-
cli/Gopkg.toml | 8 +-
cli/NOTICE | 10 +-
cli/api/locations/locations.go | 4 +-
cli/api/server/server.go | 8 +-
cli/api/usage/usage.go | 2 -
cli/app/app.go | 16 +-
cli/commands/catalog-show.go | 19 +-
cli/commands/catalog-show_test.go | 193 +++++++
cli/commands/utils.go | 31 ++
cli/commands/{add-location.go => utils_test.go} | 22 +-
cli/models/catalog.go | 142 ++---
.../version/version.go => models/catalog_test.go} | 35 +-
cli/models/testcase_test.go | 201 +++++++
cli/release/build.sh | 25 +-
cli/release/license/files/NOTICE | 10 +-
...ense-inclusions-source-go-vendors-embedded.yaml | 2 +-
.../github.com/NodePrime/jsonpath/.drone.yml | 21 -
cli/vendor/github.com/NodePrime/jsonpath/README.md | 138 -----
.../github.com/NodePrime/jsonpath/constants.go | 14 -
cli/vendor/github.com/NodePrime/jsonpath/eval.go | 335 ------------
.../github.com/NodePrime/jsonpath/eval_states.go | 193 -------
.../github.com/NodePrime/jsonpath/expression.go | 429 ---------------
.../NodePrime/jsonpath/expression_states.go | 287 ----------
.../github.com/NodePrime/jsonpath/json_states.go | 266 ---------
cli/vendor/github.com/NodePrime/jsonpath/lexer.go | 86 ---
.../github.com/NodePrime/jsonpath/lexer_reader.go | 161 ------
.../github.com/NodePrime/jsonpath/lexer_slice.go | 131 -----
cli/vendor/github.com/NodePrime/jsonpath/misc.go | 181 -------
cli/vendor/github.com/NodePrime/jsonpath/path.go | 208 -------
.../github.com/NodePrime/jsonpath/path_states.go | 213 --------
cli/vendor/github.com/NodePrime/jsonpath/queue.go | 55 --
cli/vendor/github.com/NodePrime/jsonpath/result.go | 57 --
cli/vendor/github.com/NodePrime/jsonpath/run.go | 27 -
cli/vendor/github.com/NodePrime/jsonpath/stack.go | 148 -----
.../{NodePrime/jsonpath => matryer/is}/.gitignore | 0
cli/vendor/github.com/matryer/is/.travis.yml | 19 +
.../{NodePrime/jsonpath => matryer/is}/LICENSE | 12 +-
cli/vendor/github.com/matryer/is/README.md | 38 ++
cli/vendor/github.com/matryer/is/is.go | 401 ++++++++++++++
cli/{ => vendor/k8s.io/client-go}/LICENSE | 92 +---
.../third_party/forked/golang/template/exec.go | 94 ++++
.../third_party/forked/golang/template/funcs.go | 599 +++++++++++++++++++++
cli/vendor/k8s.io/client-go/util/jsonpath/doc.go | 20 +
.../k8s.io/client-go/util/jsonpath/jsonpath.go | 525 ++++++++++++++++++
cli/vendor/k8s.io/client-go/util/jsonpath/node.go | 256 +++++++++
.../k8s.io/client-go/util/jsonpath/parser.go | 526 ++++++++++++++++++
47 files changed, 3122 insertions(+), 3161 deletions(-)
create mode 100644 cli/commands/catalog-show_test.go
copy cli/commands/{add-location.go => utils_test.go} (72%)
copy cli/{api/version/version.go => models/catalog_test.go} (58%)
create mode 100644 cli/models/testcase_test.go
delete mode 100644 cli/vendor/github.com/NodePrime/jsonpath/.drone.yml
delete mode 100644 cli/vendor/github.com/NodePrime/jsonpath/README.md
delete mode 100644 cli/vendor/github.com/NodePrime/jsonpath/constants.go
delete mode 100644 cli/vendor/github.com/NodePrime/jsonpath/eval.go
delete mode 100644 cli/vendor/github.com/NodePrime/jsonpath/eval_states.go
delete mode 100644 cli/vendor/github.com/NodePrime/jsonpath/expression.go
delete mode 100644
cli/vendor/github.com/NodePrime/jsonpath/expression_states.go
delete mode 100644 cli/vendor/github.com/NodePrime/jsonpath/json_states.go
delete mode 100644 cli/vendor/github.com/NodePrime/jsonpath/lexer.go
delete mode 100644 cli/vendor/github.com/NodePrime/jsonpath/lexer_reader.go
delete mode 100644 cli/vendor/github.com/NodePrime/jsonpath/lexer_slice.go
delete mode 100644 cli/vendor/github.com/NodePrime/jsonpath/misc.go
delete mode 100644 cli/vendor/github.com/NodePrime/jsonpath/path.go
delete mode 100644 cli/vendor/github.com/NodePrime/jsonpath/path_states.go
delete mode 100644 cli/vendor/github.com/NodePrime/jsonpath/queue.go
delete mode 100644 cli/vendor/github.com/NodePrime/jsonpath/result.go
delete mode 100644 cli/vendor/github.com/NodePrime/jsonpath/run.go
delete mode 100644 cli/vendor/github.com/NodePrime/jsonpath/stack.go
rename cli/vendor/github.com/{NodePrime/jsonpath => matryer/is}/.gitignore
(100%)
create mode 100644 cli/vendor/github.com/matryer/is/.travis.yml
rename cli/vendor/github.com/{NodePrime/jsonpath => matryer/is}/LICENSE (86%)
create mode 100644 cli/vendor/github.com/matryer/is/README.md
create mode 100644 cli/vendor/github.com/matryer/is/is.go
copy cli/{ => vendor/k8s.io/client-go}/LICENSE (73%)
create mode 100644
cli/vendor/k8s.io/client-go/third_party/forked/golang/template/exec.go
create mode 100644
cli/vendor/k8s.io/client-go/third_party/forked/golang/template/funcs.go
create mode 100644 cli/vendor/k8s.io/client-go/util/jsonpath/doc.go
create mode 100644 cli/vendor/k8s.io/client-go/util/jsonpath/jsonpath.go
create mode 100644 cli/vendor/k8s.io/client-go/util/jsonpath/node.go
create mode 100644 cli/vendor/k8s.io/client-go/util/jsonpath/parser.go