Skip to content

Commit

Permalink
deps: Update all dependencies and prepare changelog
Browse files Browse the repository at this point in the history
  • Loading branch information
kamilogorek committed Oct 4, 2022
1 parent 64b90ef commit cb2ed2f
Show file tree
Hide file tree
Showing 3 changed files with 136 additions and 107 deletions.
7 changes: 7 additions & 0 deletions CHANGELOG.md
Expand Up @@ -2,7 +2,14 @@

## Unreleased

- feat: Add function to continue from trace string (#434)
- feat: Add `max-depth` options (#428)
- ref: Use a `Context` type mapping to a `map[string]interface{}` for all event contexts (#444)
- ref: Optimize `stacktrace.go` from size and speed (#467)
- ci: Test against `go1.18`, drop `go1.15` support (#432)
- ci: Use `go1.17` for lint/test until we officially support `go1.18` (#430)
- ci: Update `golangci-lint-action` to `1.45.2` for `go1.18` support (#429)
- deps: Dependency update to fix CVEs (#462, #464, #477)

## v0.13.0

Expand Down
65 changes: 34 additions & 31 deletions go.mod
Expand Up @@ -3,20 +3,23 @@ module github.com/getsentry/sentry-go
go 1.18

require (
github.com/gin-gonic/gin v1.7.7
github.com/go-errors/errors v1.0.1
github.com/gin-gonic/gin v1.8.1
github.com/go-errors/errors v1.4.2
github.com/go-martini/martini v0.0.0-20170121215854-22fa46961aab
github.com/google/go-cmp v0.5.8
github.com/kataras/iris/v12 v12.2.0-beta4
github.com/labstack/echo/v4 v4.5.0
github.com/google/go-cmp v0.5.9
github.com/kataras/iris/v12 v12.2.0-beta5
github.com/labstack/echo/v4 v4.9.0
github.com/pingcap/errors v0.11.4
github.com/pkg/errors v0.8.1
github.com/pkg/errors v0.9.1
github.com/urfave/negroni v1.0.0
github.com/valyala/fasthttp v1.34.0
golang.org/x/sys v0.0.0-20220804214406-8e32c043e418
github.com/valyala/fasthttp v1.40.0
golang.org/x/sys v0.0.0-20220928140112-f11e5e49a4ec
golang.org/x/text v0.3.7
)

// v1.15.10 deprecated go1.16 which we support for now - https://github.com/klauspost/compress/releases/tag/v1.15.10
replace github.com/klauspost/compress => github.com/klauspost/compress v1.15.9 // indirect

require (
github.com/BurntSushi/toml v1.2.0 // indirect
github.com/CloudyKit/fastprinter v0.0.0-20200109182630-33d98a066a53 // indirect
Expand All @@ -29,50 +32,50 @@ require (
github.com/fatih/structs v1.1.0 // indirect
github.com/flosch/pongo2/v4 v4.0.2 // indirect
github.com/gin-contrib/sse v0.1.0 // indirect
github.com/go-playground/locales v0.13.0 // indirect
github.com/go-playground/universal-translator v0.17.0 // indirect
github.com/go-playground/validator/v10 v10.4.1 // indirect
github.com/go-playground/locales v0.14.0 // indirect
github.com/go-playground/universal-translator v0.18.0 // indirect
github.com/go-playground/validator/v10 v10.11.1 // indirect
github.com/goccy/go-json v0.9.11 // indirect
github.com/golang-jwt/jwt v3.2.2+incompatible // indirect
github.com/golang/protobuf v1.5.2 // indirect
github.com/golang/snappy v0.0.4 // indirect
github.com/google/uuid v1.3.0 // indirect
github.com/gorilla/css v1.0.0 // indirect
github.com/iris-contrib/jade v1.1.4 // indirect
github.com/iris-contrib/schema v0.0.6 // indirect
github.com/josharian/intern v1.0.0 // indirect
github.com/json-iterator/go v1.1.12 // indirect
github.com/kataras/blocks v0.0.6 // indirect
github.com/kataras/blocks v0.0.7 // indirect
github.com/kataras/golog v0.1.7 // indirect
github.com/kataras/pio v0.0.10 // indirect
github.com/kataras/sitemap v0.0.5 // indirect
github.com/kataras/pio v0.0.11 // indirect
github.com/kataras/sitemap v0.0.6 // indirect
github.com/kataras/tunnel v0.0.4 // indirect
github.com/klauspost/compress v1.15.9 // indirect
github.com/labstack/gommon v0.3.0 // indirect
github.com/leodido/go-urn v1.2.0 // indirect
github.com/klauspost/compress v1.15.11 // indirect
github.com/labstack/gommon v0.3.1 // indirect
github.com/leodido/go-urn v1.2.1 // indirect
github.com/mailgun/raymond/v2 v2.0.46 // indirect
github.com/mailru/easyjson v0.7.7 // indirect
github.com/mattn/go-colorable v0.1.12 // indirect
github.com/mattn/go-isatty v0.0.14 // indirect
github.com/microcosm-cc/bluemonday v1.0.19 // indirect
github.com/mattn/go-colorable v0.1.13 // indirect
github.com/mattn/go-isatty v0.0.16 // indirect
github.com/microcosm-cc/bluemonday v1.0.21 // indirect
github.com/modern-go/concurrent v0.0.0-20180306012644-bacd9c7ef1dd // indirect
github.com/modern-go/reflect2 v1.0.2 // indirect
github.com/pelletier/go-toml/v2 v2.0.5 // indirect
github.com/russross/blackfriday/v2 v2.1.0 // indirect
github.com/schollz/closestmatch v2.1.0+incompatible // indirect
github.com/sirupsen/logrus v1.8.1 // indirect
github.com/tdewolff/minify/v2 v2.12.0 // indirect
github.com/tdewolff/parse/v2 v2.6.1 // indirect
github.com/ugorji/go/codec v1.1.7 // indirect
github.com/sirupsen/logrus v1.9.0 // indirect
github.com/tdewolff/minify/v2 v2.12.4 // indirect
github.com/tdewolff/parse/v2 v2.6.4 // indirect
github.com/ugorji/go/codec v1.2.7 // indirect
github.com/valyala/bytebufferpool v1.0.0 // indirect
github.com/valyala/fasttemplate v1.2.1 // indirect
github.com/vmihailenco/msgpack/v5 v5.3.5 // indirect
github.com/vmihailenco/tagparser/v2 v2.0.0 // indirect
github.com/yosssi/ace v0.0.5 // indirect
golang.org/x/crypto v0.0.0-20220507011949-2cf3adece122 // indirect
golang.org/x/net v0.0.0-20220805013720-a33c5aa5df48 // indirect
golang.org/x/time v0.0.0-20220411224347-583f2d630306 // indirect
google.golang.org/protobuf v1.28.0 // indirect
gopkg.in/check.v1 v1.0.0-20201130134442-10cb98267c6c // indirect
gopkg.in/ini.v1 v1.66.6 // indirect
golang.org/x/crypto v0.0.0-20220926161630-eccd6366d1be // indirect
golang.org/x/net v0.0.0-20221002022538-bcab6841153b // indirect
golang.org/x/time v0.0.0-20220922220347-f3bd1da661af // indirect
google.golang.org/protobuf v1.28.1 // indirect
gopkg.in/ini.v1 v1.67.0 // indirect
gopkg.in/yaml.v2 v2.4.0 // indirect
gopkg.in/yaml.v3 v3.0.1 // indirect
)

0 comments on commit cb2ed2f

Please sign in to comment.