Skip to content

Commit

Permalink
Merge pull request #315 from airbrake/update-notifier
Browse files Browse the repository at this point in the history
Update changelog and notifier version
  • Loading branch information
chimanjain authored Sep 26, 2022
2 parents d84cd88 + 8211788 commit cbb0df0
Show file tree
Hide file tree
Showing 3 changed files with 18 additions and 5 deletions.
15 changes: 15 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,20 @@

## master

## [v5.6.0][v5.6.0] (July 22, 2022)

* Dependency updates

* Add custom method to set the depth of notices in apex/log and zerolog integration ([#297](https://github.com/airbrake/gobrake/pull/297))

* We have deprecated negroni middleware. It won't be maintained going forward ([#298](https://github.com/airbrake/gobrake/pull/298))

* Add in zap integration ([#299](https://github.com/airbrake/gobrake/pull/299))

* Updated minimum supported go version to 1.17 ([#300](https://github.com/airbrake/gobrake/pull/300))

* Added the feature to retry sending Error and APM data in case of failures from Airbrake Server ([#314](https://github.com/airbrake/gobrake/pull/314))

## [v5.5.2][v5.5.2] (July 22, 2022)

* dependency updates ([#275](https://github.com/airbrake/gobrake/pull/275)),
Expand Down Expand Up @@ -189,3 +203,4 @@ Features:
[v5.5.0]: https://github.com/airbrake/gobrake/releases/tag/v5.5.0
[v5.5.1]: https://github.com/airbrake/gobrake/releases/tag/v5.5.1
[v5.5.2]: https://github.com/airbrake/gobrake/releases/tag/v5.5.2
[v5.6.0]: https://github.com/airbrake/gobrake/releases/tag/v5.6.0
6 changes: 2 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -130,7 +130,7 @@ will be truncated to fit the size.

### Logging

We support two major logging frameworks:
We support major logging frameworks:

* There's a [glog fork][glog], which integrates with Gobrake. It provides all of
original glog's functionality and adds the ability to send errors/logs to
Expand All @@ -141,7 +141,7 @@ original glog's functionality and adds the ability to send errors/logs to

## Supported Go versions

The library supports Go v1.16+. The CI file would be the best source of truth
The library supports Go v1.17+. The CI file would be the best source of truth
because it contains all Go versions that we test against.

## Contact
Expand All @@ -161,7 +161,6 @@ The project uses the MIT License. See [LICENSE.md](https://github.com/airbrake/g
[airbrake.io]: https://airbrake.io
[docs-official]: https://docs.airbrake.io/docs/platforms/go-lang/
[docs]: https://pkg.go.dev/github.com/airbrake/gobrake/v5
[docs/performance]: https://docs.airbrake.io/docs/overview/apm/#monitoring-go-apps
[beego]: https://github.com/beego/beego
[buffalo]: https://github.com/gobuffalo/buffalo
[echo]: https://github.com/labstack/echo
Expand All @@ -173,7 +172,6 @@ The project uses the MIT License. See [LICENSE.md](https://github.com/airbrake/g
[negroni]: https://github.com/urfave/negroni
[nethttp]: https://pkg.go.dev/net/http
[semver2]: http://semver.org/spec/v2.0.0.html
[go-mod]: https://github.com/golang/go/wiki/Modules
[project-idkey]: https://s3.amazonaws.com/airbrake-github-assets/gobrake/project-id-key.png
[issues]: https://github.com/airbrake/gobrake/issues
[twitter]: https://twitter.com/airbrake
Expand Down
2 changes: 1 addition & 1 deletion notifier.go
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ import (

const (
notifierName = "gobrake"
notifierVersion = "5.5.2"
notifierVersion = "5.6.0"
userAgent = notifierName + "/" + notifierVersion
waitTimeout = 5 * time.Second
flushPeriod = 15 * time.Second
Expand Down

0 comments on commit cbb0df0

Please sign in to comment.