Skip to content

Commit

Permalink
Merge pull request #15 from johnbellone/next
Browse files Browse the repository at this point in the history
chore: update grpc and middleware dependencies
  • Loading branch information
johnbellone authored Apr 10, 2023
2 parents c112fb4 + 186472c commit 846853f
Show file tree
Hide file tree
Showing 3 changed files with 81 additions and 16 deletions.
38 changes: 28 additions & 10 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,8 +1,9 @@
# Changelog

All notable changes to this project will be documented in this file.

The format is based on [Keep a Changelog](http://keepachangelog.com/en/1.0.0/)
and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.html).
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).

Types of changes:
- `Added` for new features.
Expand All @@ -12,14 +13,31 @@ Types of changes:
- `Fixed` for any bug fixes.
- `Security` in case of vulnerabilities.

## [Unreleased]
## [0.3]

### Changed

- Update to v0.20 version of Sentry SDK (and indirects).
- Update to v1.54.0 version of gRPC SDK (and indirects).
- Update to v1.4.0 version of gRPC Middleware (and indirects).

## [0.2]

### Fixed

- [@GTB3NW]: [PR#4] passes the span and context as intended by Sentry SDK.

## [0.1]

### Added
### Fixed

- Initial release of server/client interceptors for Sentry.
- Report exceptions
- Recover from panics
- Export tags from context
- Distributed tracing
- [@slavaromanov]: [PR#3] exports functions and option types for client/server interceptors.

[Unreleased]: https://github.com/johnbellone/grpc-middleware-sentry/compare/v1.0.0...HEAD
[Unreleased]: https://github.com/johnbellone/grpc-middleware-sentry/compare/v0.2.0...HEAD
[0.3]: https://github.com/johnbellone/grpc-middleware-sentry/tree/v0.3.0
[0.2]: https://github.com/johnbellone/grpc-middleware-sentry/tree/v0.2.0
[0.1]: https://github.com/johnbellone/grpc-middleware-sentry/tree/v0.1.0
[@slavaromanov]: https://github.com/slavaromanov
[@GTB3NW]: https://github.com/GTB3NW
[PR#4]: https://github.com/johnbellone/grpc-middleware-sentry/pull/4
[PR#3]: https://github.com/johnbellone/grpc-middleware-sentry/pull/3
12 changes: 6 additions & 6 deletions go.mod
Original file line number Diff line number Diff line change
Expand Up @@ -4,15 +4,15 @@ go 1.17

require (
github.com/getsentry/sentry-go v0.20.0
github.com/grpc-ecosystem/go-grpc-middleware v1.2.2
google.golang.org/grpc v1.35.0
github.com/grpc-ecosystem/go-grpc-middleware v1.4.0
google.golang.org/grpc v1.54.0
)

require (
github.com/golang/protobuf v1.5.0 // indirect
golang.org/x/net v0.8.0 // indirect
github.com/golang/protobuf v1.5.3 // indirect
golang.org/x/net v0.9.0 // indirect
golang.org/x/sys v0.7.0 // indirect
golang.org/x/text v0.9.0 // indirect
google.golang.org/genproto v0.0.0-20200526211855-cb27e3aa2013 // indirect
google.golang.org/protobuf v1.29.1 // indirect
google.golang.org/genproto v0.0.0-20230410155749-daa745c078e1 // indirect
google.golang.org/protobuf v1.30.0 // indirect
)
Loading

0 comments on commit 846853f

Please sign in to comment.