This repository has been archived by the owner on Sep 11, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 36
/
Copy pathNEWS
79 lines (56 loc) · 2.32 KB
/
NEWS
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
0.5.1 - October 11, 2017
========================
* Added BuildStackWithCallers. Thanks @seriousben!
0.5.0 - May 22, 2017
========================
* Added Errorf function
* Always close response body
* Updated README
* Stop using and remove custom fingerprint
0.4.0 - October 13, 2015
========================
* Added PostErrors(), which returns a channel that receives errors encountered
while POSTing items to the Rollbar API. Thanks @tike!
* Added MIT license. See LICENSE. Thanks @paulmach!
* It is now acceptable to send nil items. Thanks @paulmach!
* Fixed a bug that caused custom fields to be ignored. Thanks @nazwa!
* Added the ability to send the code_version attribute to Rollbar. Thanks
@ossareh!
0.3.1 - December 9th, 2014
==========================
* ErrorWriter and Platform are now configurable. Thanks @Soulou!
0.3.0 - October 30th, 2014
==========================
* Added support for passing custom fields to Rollbar. Thanks @Soulou!
0.2.0 - September 30th, 2014
============================
* Added support for including `http.Request` details in Rollbar items. Thanks
@paulmach!
0.1.0 - June 27th, 2014
=======================
Important: this release changes the grouping of errors in Rollbar. Be sure to
test if the grouping of errors in Rollbar is important to your Go projects.
* Errors are now fingerprinted by the full stacktrace (filen ames, method
names, and line numbers). This significantly improves the grouping of errors
in Rollbar. Contributed by @kjk
* File paths now omit unneeded prefixes. Contributed by @kjk
* Add severity constants (`rollbar.CRIT`, etc.)
* Fix `Close()` call on nil responses. Thanks @Soulou!
* Increase default buffer size to 1,000.
0.0.4 - November 25th, 2013
===========================
* When an empty API token is set, all `rollbar` methods will be
no-ops.
0.0.3 - November 25th, 2013
===========================
* Remove incorrect "root" value that was being sent. That setting
is meant for the path to the root code directory, but we're running compiled
binaries, so it doesn't make sense to submit that value.
0.0.2 - November 11th, 2013
===========================
* Add `Wait()` command to wait for all errors to be sent to
Rollbar.
* Simplify reported error class for `errors.errorString` errors.
0.0.1 - June 24th, 2013
=======================
* Initial release.