All Versions
11
Latest Version
Avg Release Cycle
-
Latest Release
-
Changelog History
Page 1
Changelog History
Page 1
-
v0.11.0 Changes
- โ Added handling of rate limiting from the Rollbar API.
-
v0.10.0 Changes
- ๐ฅ BREAKING CHANGE: Increased Elixir version requirement to 1.4 and higher.
- ๐ง Made invalid configurations raise.
- ๐ Allowed to configure Rollbax to use a proxy (#105).
-
v0.9.2 Changes
- ๐ Fixed some code that wouldn't let Rollbax start if
:enabled
wasfalse
but the access token or environment were not set.
- ๐ Fixed some code that wouldn't let Rollbax start if
-
v0.9.1 Changes
- ๐ Fixed a bug where we didn't list Jason as an application in the
:applications
key.
- ๐ Fixed a bug where we didn't list Jason as an application in the
-
v0.9.0 Changes
- ๐ฅ BREAKING CHANGE: Increased Elixir version requirement to 1.3 and higher.
- Introduced
Rollbax.report_message/4
. - ๐ฒ Reworked logging support. Now
Rollbax.Logger
is not aLogger
backend, and you cannot send logs to Rollbar automatically viaLogger.*
macros (Rollbar is not a logging aggregation service after all! :stuck_out_tongue:). UseRollbax.report_message/4
instead. Check out the documentation for more information on how to use the newRollbax.Logger
. - ๐ง Made the
:access_token
configuration parameter be only required if:enabled
istrue
. - โ Added support for customizing the Rollbar API endpoint.
- Stopped overriding occurrence data provided by the user.
- โ Added support for runtime configuration through a callback that can be set with
:config_callback
. - โฌ๏ธ Dropped support for configuring some options through
{:system, variable}
"special" values. The new:config_callback
configuration option allows to fetch variables from the environment at runtime, so that should be used instead.
-
v0.8.2 Changes
- Made sure that JSON encoding never cause
Rollbax.Client
crashing. - ๐ Improved formatting of stacktraces, and exceptions reported as exits.
- ๐ Fixed a possible infinite loop when a report is send while
Rollbax.Client
is not available.
- Made sure that JSON encoding never cause
-
v0.8.1 Changes
- ๐ Fixed a bug when reporting a term that is not an exception and using kind
:error
inRollbax.report/5
.
- ๐ Fixed a bug when reporting a term that is not an exception and using kind
-
v0.8.0 Changes
- ๐ Fixed a bug with custom data not being reported correctly.
- โฌ๏ธ Bumped Elixir requirement from ~> 1.0 to ~> 1.1.
-
v0.7.0 Changes
- โ Added support for blacklisting logger messages through the
:blacklist
configuration option. This way, it's possible to prevent logged messages that match a given pattern from being reported. - ๐ง Started allowing globally-set custom data: the data in the
:custom
configuration option for the:rollbax
application is now sent alongside everything reported to Rollbax (and merged with report-specific custom data).
- โ Added support for blacklisting logger messages through the
-
v0.6.1 Changes
- ๐ Fixed a bug involving invalid unicode codepoints in
Rollbax.Logger
.
- ๐ Fixed a bug involving invalid unicode codepoints in