Skip to content
This repository has been archived by the owner on Mar 14, 2022. It is now read-only.

Commit

Permalink
Merge pull request #8 from hellofresh/hotfix/logrus-logstash-hook
Browse files Browse the repository at this point in the history
Updated logrus-logstash-hook for logrus 1.0.3 compatibility fix
  • Loading branch information
vgarvardt committed Sep 22, 2017
2 parents 65bfc84 + 831666b commit c286a76
Show file tree
Hide file tree
Showing 6 changed files with 197 additions and 102 deletions.
7 changes: 1 addition & 6 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,13 +2,8 @@ language: go

go:
- 1.x
- 1.7
- 1.8

before_install:
- sudo add-apt-repository ppa:masterminds/glide -y
- sudo apt-get update -q
- sudo apt-get install glide -y
- 1.9

install:
- mkdir -p $GOPATH/bin
Expand Down
147 changes: 147 additions & 0 deletions Gopkg.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

46 changes: 46 additions & 0 deletions Gopkg.toml
Original file line number Diff line number Diff line change
@@ -0,0 +1,46 @@

# Gopkg.toml example
#
# Refer to https://github.com/golang/dep/blob/master/docs/Gopkg.toml.md
# for detailed Gopkg.toml documentation.
#
# required = ["github.com/user/thing/cmd/thing"]
# ignored = ["github.com/user/project/pkgX", "bitbucket.org/user/project/pkgA/pkgY"]
#
# [[constraint]]
# name = "github.com/user/project"
# version = "1.0.0"
#
# [[constraint]]
# name = "github.com/user/project2"
# branch = "dev"
# source = "github.com/myfork/project2"
#
# [[override]]
# name = "github.com/x/y"
# version = "2.4.0"


[[constraint]]
name = "github.com/bshuster-repo/logrus-logstash-hook"
version = "1.0-beta"

[[constraint]]
name = "github.com/kelseyhightower/envconfig"
version = "1.3.0"

[[constraint]]
name = "github.com/sirupsen/logrus"
version = "1.0.3"

[[constraint]]
name = "github.com/spf13/viper"
version = "1.0.0"

[[constraint]]
name = "github.com/stretchr/testify"
version = "1.1.4"

[[constraint]]
name = "gopkg.in/gemnasium/logrus-graylog-hook.v2"
version = "2.0.6"
6 changes: 3 additions & 3 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -15,10 +15,10 @@ IGNORED_PACKAGES := /vendor/
all: deps test lint

deps:
@echo "$(OK_COLOR)==> Installing glide dependencies$(NO_COLOR)"
@go get -u github.com/Masterminds/glide
@echo "$(OK_COLOR)==> Installing dependencies$(NO_COLOR)"
@go get -u github.com/golang/dep/cmd/dep
@go get -u github.com/golang/lint/golint
@glide install
@dep ensure

test:
@/bin/sh -c "./build/test.sh $(allpackages)"
Expand Down
76 changes: 0 additions & 76 deletions glide.lock

This file was deleted.

17 changes: 0 additions & 17 deletions glide.yaml

This file was deleted.

0 comments on commit c286a76

Please sign in to comment.