Skip to content

Commit

Permalink
Merge pull request #8 from aleksandr-tuliakov/for-pr
Browse files Browse the repository at this point in the history
Update deps
  • Loading branch information
archdx authored Jun 5, 2023
2 parents 62cc923 + aa5117f commit 22731d7
Show file tree
Hide file tree
Showing 3 changed files with 36 additions and 224 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ import (
)

func main() {
w, err := zlogsentry.New("http://e35657dcf4fb4d7c98a1c0b8a9125088@localhost:9000/2")
w, err := zlogsentry.New("http://e35657dcf4fb4d7c98a1c0b8a9125088@localhost:9000/2", zlogsentry.WithEnvironment("dev"), zlogsentry.WithRelease("1.0.0"))
if err != nil {
stdlog.Fatal(err)
}
Expand Down
17 changes: 10 additions & 7 deletions go.mod
Original file line number Diff line number Diff line change
@@ -1,17 +1,20 @@
module github.com/archdx/zerolog-sentry

go 1.18
go 1.20

require (
github.com/buger/jsonparser v1.0.0
github.com/getsentry/sentry-go v0.12.0
github.com/rs/zerolog v1.26.1
github.com/stretchr/testify v1.7.0
github.com/buger/jsonparser v1.1.1
github.com/getsentry/sentry-go v0.21.0
github.com/rs/zerolog v1.29.1
github.com/stretchr/testify v1.8.4
)

require (
github.com/davecgh/go-spew v1.1.1 // indirect
github.com/mattn/go-colorable v0.1.13 // indirect
github.com/mattn/go-isatty v0.0.17 // indirect
github.com/pmezard/go-difflib v1.0.0 // indirect
golang.org/x/sys v0.0.0-20211007075335-d3039528d8ac // indirect
gopkg.in/yaml.v3 v3.0.0-20200313102051-9f266ea9e77c // indirect
golang.org/x/sys v0.6.0 // indirect
golang.org/x/text v0.8.0 // indirect
gopkg.in/yaml.v3 v3.0.1 // indirect
)
Loading

0 comments on commit 22731d7

Please sign in to comment.