Skip to content
This repository was archived by the owner on Oct 8, 2021. It is now read-only.

BREAKING CHANGE: private repository moved to public github. #2

Merged
merged 34 commits into from
Jul 30, 2018
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
34 commits
Select commit Hold shift + click to select a range
9454574
BREAKING CHANGE: private repository moved to public github.
adamcbrown Jul 18, 2018
59c38de
Updated to have GetCredentials and allows for v2 mappings
adamcbrown Jul 20, 2018
e44e961
fix: added tests and renamed files to Go Convention
Jul 20, 2018
f957b18
Added Deep Search functionality to parse.go
adamcbrown Jul 20, 2018
1f7ac07
fix: added tests for v2/mappings (untested)
Jul 20, 2018
613aba9
Merge branch 'master' of https://github.com/adamcbrown/ibm-cloud-env-…
Jul 20, 2018
076ad93
added stuff
Jul 20, 2018
26d83ca
Properly returns dictionaries in v2
adamcbrown Jul 20, 2018
4315d67
fix: mappingsv2_test.go
Jul 20, 2018
551ce0b
fix: updated Readme with user provided part
Jul 23, 2018
8609060
fix: README.md
Jul 23, 2018
b85b233
fix: Updated GetCredentials to take a json string instead of a gjson …
adamcbrown Jul 23, 2018
6af8834
Merge branch 'master' of https://github.com/adamcbrown/ibm-cloud-env-…
adamcbrown Jul 23, 2018
c1f58f0
fix: renaming functions/files
Jul 23, 2018
f753dfc
Merge branch 'master' of https://github.com/adamcbrown/ibm-cloud-env-…
Jul 23, 2018
06232d0
fix: Update README Supported Search Pattern Types
sydney-ng Jul 24, 2018
2007280
fix: removed comments on cloud_env.go
sydney-ng Jul 24, 2018
09f211f
fix: removed comments mappingsv1_test.go
sydney-ng Jul 24, 2018
4f4e465
fix: remove comments mappings_test.go
sydney-ng Jul 24, 2018
dae7f9d
chore: remove comments mappingsv2_test.go
sydney-ng Jul 24, 2018
05d71cb
fix: updated gopkg to include all libraries
adamcbrown Jul 24, 2018
f91e14e
chore: Update README.md
sydney-ng Jul 24, 2018
1ceb370
chore: fixed indentations to only use spaces
adamcbrown Jul 24, 2018
fc3c3d8
chore: .go files are correctly formatted
adamcbrown Jul 25, 2018
1cc7a04
chore: fix rephrases
sydney-ng Jul 25, 2018
13324a1
chore: Replaced the term module with package
adamcbrown Jul 25, 2018
d143ea1
Updated README.md with new user-provided pattern
adamcbrown Jul 27, 2018
bf3df10
Added copyright to credentials.go
adamcbrown Jul 27, 2018
7c251b9
chore: fixed copyright alignment
sydney-ng Jul 27, 2018
df4ad28
fix: fixed alignment of filtered credentials
Jul 27, 2018
d5a926d
fix: added travis & fixed linting errors
Jul 27, 2018
c11bd0a
fix: removed travis comments
Jul 27, 2018
80b6b75
fix: add user provided for default unknown prefix
sydney-ng Jul 27, 2018
72185c9
Merge branch 'master' of https://github.com/adamcbrown/ibm-cloud-env-…
Jul 27, 2018
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 2 additions & 0 deletions .gitconfig
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
[commit]
template = .gittemplate
3 changes: 3 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,3 +1,6 @@
vendor/
.DS_Store

# Binaries for programs and plugins
*.exe
*.exe~
Expand Down
20 changes: 20 additions & 0 deletions .gittemplate
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
# Type(<scope>): <subject>
# <body>
# <footer>

# Type should be one of the following:
# * BREAKING CHANGES (breaking change) [major release -- 1.x.x]
# * feat (new feature) [minor release -- x.1.x]
# * fix (bug fix) [patch release -- 0.0.x]
# * docs (changes to documentation)
# * style (formatting, missing semi colons, etc; no code change)
# * refactor (refactoring production code)
# * test (adding missing tests, refactoring tests; no production code change)
# * chore (updating grunt tasks etc; no production code change)
# Scope is just the scope of the change. Something like (admin) or (teacher).
# Subject should use clear words and say what you did.
# The body should go into detail about changes made.
# The footer should contain any Github (or other tool) issue references or actions.

# For a full example of how to write a good commit message, check out
# https://conventionalcommits.org/
25 changes: 25 additions & 0 deletions .travis.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,25 @@
sudo: false

language: go

go:
- "1.10.x"

git:
depth: 1

before_install:
- curl https://raw.githubusercontent.com/golang/dep/master/install.sh | sh
- dep ensure

install: true

notifications:
email: false

before_script:
- go install ./vendor/github.com/golangci/golangci-lint/cmd/golangci-lint

script:
- golangci-lint run
- go test -v -race ./...
Loading