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

Commit

Permalink
BREAKING CHANGE: private repository moved to public github. (#2)
Browse files Browse the repository at this point in the history
* BREAKING CHANGE: private repository moved to public github.

Co-authored-by: sydney-ng <sydney.ng@yahoo.com>

* Updated to have GetCredentials and allows for v2 mappings

* fix: added tests and renamed files to Go Convention

* Added Deep Search functionality to parse.go

* fix: added tests for v2/mappings (untested)

* added stuff

* Properly returns dictionaries in v2

* fix: mappingsv2_test.go

* fix: updated Readme with user provided part

* fix: README.md

* fix: Updated GetCredentials to take a json string instead of a gjson object. Added test for GetCredentials function

* fix: renaming functions/files

* fix: Update README Supported Search Pattern Types 

added user-provided description in supported search patterns types

* fix: removed comments on cloud_env.go

* fix: removed comments mappingsv1_test.go

* fix: remove comments mappings_test.go

* chore: remove comments mappingsv2_test.go

* fix: updated gopkg to include all libraries

* chore: Update README.md

Fixed wording from Pull Request #3

* chore: fixed indentations to only use spaces

* chore: .go files are correctly formatted

* chore: fix rephrases

* chore: Replaced the term module with package

* Updated README.md with new user-provided pattern

* Added copyright to credentials.go

* chore: fixed copyright alignment

* fix: fixed alignment of filtered credentials

* fix: added travis & fixed linting errors

* fix: removed travis comments

* fix: add user provided for default unknown prefix
  • Loading branch information
adamcbrown authored and Jennifer Oliver committed Jul 30, 2018
1 parent c0e62cd commit f4bcbfc
Show file tree
Hide file tree
Showing 18 changed files with 1,675 additions and 2 deletions.
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

0 comments on commit f4bcbfc

Please sign in to comment.