Skip to content
This repository was archived by the owner on Dec 30, 2024. It is now read-only.

Commit 22731d7

Browse files
authored
Merge pull request #8 from aleksandr-tuliakov/for-pr
Update deps
2 parents 62cc923 + aa5117f commit 22731d7

File tree

3 files changed

+36
-224
lines changed

3 files changed

+36
-224
lines changed

README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ import (
1515
)
1616

1717
func main() {
18-
w, err := zlogsentry.New("http://e35657dcf4fb4d7c98a1c0b8a9125088@localhost:9000/2")
18+
w, err := zlogsentry.New("http://e35657dcf4fb4d7c98a1c0b8a9125088@localhost:9000/2", zlogsentry.WithEnvironment("dev"), zlogsentry.WithRelease("1.0.0"))
1919
if err != nil {
2020
stdlog.Fatal(err)
2121
}

go.mod

+10-7
Original file line numberDiff line numberDiff line change
@@ -1,17 +1,20 @@
11
module github.com/archdx/zerolog-sentry
22

3-
go 1.18
3+
go 1.20
44

55
require (
6-
github.com/buger/jsonparser v1.0.0
7-
github.com/getsentry/sentry-go v0.12.0
8-
github.com/rs/zerolog v1.26.1
9-
github.com/stretchr/testify v1.7.0
6+
github.com/buger/jsonparser v1.1.1
7+
github.com/getsentry/sentry-go v0.21.0
8+
github.com/rs/zerolog v1.29.1
9+
github.com/stretchr/testify v1.8.4
1010
)
1111

1212
require (
1313
github.com/davecgh/go-spew v1.1.1 // indirect
14+
github.com/mattn/go-colorable v0.1.13 // indirect
15+
github.com/mattn/go-isatty v0.0.17 // indirect
1416
github.com/pmezard/go-difflib v1.0.0 // indirect
15-
golang.org/x/sys v0.0.0-20211007075335-d3039528d8ac // indirect
16-
gopkg.in/yaml.v3 v3.0.0-20200313102051-9f266ea9e77c // indirect
17+
golang.org/x/sys v0.6.0 // indirect
18+
golang.org/x/text v0.8.0 // indirect
19+
gopkg.in/yaml.v3 v3.0.1 // indirect
1720
)

0 commit comments

Comments
 (0)