Skip to content

Commit 161d308

Browse files
committed
UPdated changelog, notifier version and readme.
1 parent f07c720 commit 161d308

3 files changed

Lines changed: 13 additions & 6 deletions

File tree

CHANGELOG.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,11 @@
22

33
## master
44

5+
## [v5.3.0][v5.3.0] (february 7, 2022)
6+
7+
* Added the [Fiber](https://github.com/gofiber/fiber) integration ([#227](https://github.com/airbrake/gobrake/pull/227)),
8+
([#232](https://github.com/airbrake/gobrake/pull/232))
9+
510
## [v5.2.0][v5.2.0] (December 13, 2021)
611

712
* Deprecated `NewMiddleware` func and replaced with `New` func in gin middleware ([#224](https://github.com/airbrake/gobrake/pull/224))
@@ -118,3 +123,4 @@ Features:
118123
[v5.1.0]: https://github.com/airbrake/gobrake/releases/tag/v5.1.0
119124
[v5.1.1]: https://github.com/airbrake/gobrake/releases/tag/v5.1.1
120125
[v5.2.0]: https://github.com/airbrake/gobrake/releases/tag/v5.2.0
126+
[v5.3.0]: https://github.com/airbrake/gobrake/releases/tag/v5.3.0

README.md

Lines changed: 6 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212

1313
## Introduction
1414

15-
_Gobrake_ is the official notifier library for [Airbrake][airbrake.io] for the
15+
_Gobrake_ is the official notifier package for [Airbrake][airbrake.io] for the
1616
Go programming language. Gobrake provides a minimalist API that enables the
1717
ability to send _any_ Go error or panic to the Airbrake dashboard. The library
1818
is extremely lightweight, with minimal overhead.
@@ -33,7 +33,7 @@ is extremely lightweight, with minimal overhead.
3333
* Automatic deploy tracking
3434
* Performance monitoring features such as HTTP route statistics, SQL queries,
3535
and Job execution statistics
36-
* Integrations with [Beego][beego], [Gin][gin] and [Negroni][negroni]
36+
* Integrations with [Beego][beego], [Gin][gin] and [Negroni][negroni], [Fiber][fiber]
3737
* Last but not least, we follow [semantic versioning 2.0.0][semver2]
3838

3939
## Installation
@@ -266,8 +266,8 @@ In order to collect routes stats you can instrument your application
266266
using `notifier.Routes.Notify` API.
267267

268268
Below is an example using the net/http middleware. We also have HTTP middleware
269-
examples for [Gin](examples/gin), [Beego](examples/beego) and
270-
[Negroni](examples/negroni).
269+
examples for [Gin](examples/gin), [Beego](examples/beego),
270+
[Negroni](examples/negroni) and [Fiber](examples/fiber).
271271

272272
```go
273273
package main
@@ -425,9 +425,10 @@ The project uses the MIT License. See [LICENSE.md](https://github.com/airbrake/g
425425
[gobrake-github]: https://github.com/airbrake/gobrake
426426
[docs]: https://pkg.go.dev/github.com/airbrake/gobrake/v5
427427
[docs/performance]: https://docs.airbrake.io/docs/overview/apm/#monitoring-go-apps
428-
[beego]: https://beego.me
428+
[beego]: https://github.com/beego/beego
429429
[gin]: https://github.com/gin-gonic/gin
430430
[negroni]: https://github.com/urfave/negroni
431+
[fiber]: https://github.com/gofiber/fiber
431432
[semver2]: http://semver.org/spec/v2.0.0.html
432433
[go-mod]: https://github.com/golang/go/wiki/Modules
433434
[project-idkey]: https://s3.amazonaws.com/airbrake-github-assets/gobrake/project-id-key.png

notifier.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ import (
1717
)
1818

1919
const notifierName = "gobrake"
20-
const notifierVersion = "5.2.0"
20+
const notifierVersion = "5.3.0"
2121
const userAgent = notifierName + "/" + notifierVersion
2222

2323
const waitTimeout = 5 * time.Second

0 commit comments

Comments
 (0)