Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Drop fork and update to latest sentry-go #92

Merged
merged 1 commit into from
Feb 14, 2022
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion fmttests/datadriven_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@ import (
"github.com/cockroachdb/errors/withstack"
"github.com/cockroachdb/logtags"
"github.com/cockroachdb/redact"
"github.com/cockroachdb/sentry-go"
"github.com/getsentry/sentry-go"
"github.com/kr/pretty"
pkgErr "github.com/pkg/errors"
)
Expand Down
4 changes: 1 addition & 3 deletions go.mod
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ require (
github.com/cockroachdb/datadriven v1.0.0
github.com/cockroachdb/logtags v0.0.0-20190617123548-eb05cc24525f
github.com/cockroachdb/redact v1.1.1
github.com/cockroachdb/sentry-go v0.6.1-cockroachdb.2
github.com/getsentry/sentry-go v0.12.0
github.com/gogo/googleapis v1.4.1 // gogoproto 1.2-compatible, for CRDB
github.com/gogo/protobuf v1.3.2
github.com/gogo/status v1.1.0
Expand All @@ -15,8 +15,6 @@ require (
github.com/kr/text v0.2.0 // indirect
github.com/pkg/errors v0.9.1
github.com/stretchr/testify v1.7.0
golang.org/x/net v0.0.0-20210614182718-04defd469f4e // indirect
golang.org/x/sys v0.0.0-20210616094352-59db8d763f22 // indirect
google.golang.org/genproto v0.0.0-20210624195500-8bfb893ecb84 // indirect
google.golang.org/grpc v1.38.0
google.golang.org/protobuf v1.26.0
Expand Down
59 changes: 53 additions & 6 deletions go.sum

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion report/report.go
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ import (
"github.com/cockroachdb/errors/errbase"
"github.com/cockroachdb/errors/withstack"
"github.com/cockroachdb/redact"
"github.com/cockroachdb/sentry-go"
"github.com/getsentry/sentry-go"
)

// BuildSentryReport builds the components of a sentry report. This
Expand Down
2 changes: 1 addition & 1 deletion report/report_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ import (
"github.com/cockroachdb/errors/safedetails"
"github.com/cockroachdb/errors/testutils"
"github.com/cockroachdb/errors/withstack"
"github.com/cockroachdb/sentry-go"
"github.com/getsentry/sentry-go"
"github.com/kr/pretty"
)

Expand Down
2 changes: 1 addition & 1 deletion report/reportables.go
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ import (
"bytes"
"fmt"

"github.com/cockroachdb/sentry-go"
"github.com/getsentry/sentry-go"
)

// StackTrace is an object suitable for inclusion in errors that can
Expand Down
2 changes: 1 addition & 1 deletion report_api.go
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ package errors

import (
"github.com/cockroachdb/errors/report"
"github.com/cockroachdb/sentry-go"
"github.com/getsentry/sentry-go"
)

// BuildSentryReport builds the components of a sentry report. This
Expand Down
2 changes: 1 addition & 1 deletion withstack/reportable.go
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ import (
"strings"

"github.com/cockroachdb/errors/errbase"
"github.com/cockroachdb/sentry-go"
"github.com/getsentry/sentry-go"
pkgErr "github.com/pkg/errors"
)

Expand Down