Skip to content

Commit

Permalink
Merge pull request #405 from airbrake/release-3-2-0
Browse files Browse the repository at this point in the history
Release v3.2.0
  • Loading branch information
kyrylo authored Feb 8, 2019
2 parents 6d89499 + b8b62c1 commit ef743cf
Show file tree
Hide file tree
Showing 5 changed files with 33 additions and 5 deletions.
28 changes: 28 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,33 @@ Airbrake Ruby Changelog

### master

### [v3.2.0][v3.2.0] (February 8, 2019)

* Dropped `tdigest` dependency. Airbrake Ruby imports that code, instead
([#400](https://github.com/airbrake/airbrake-ruby/pull/400))
* Started depending on [rbtree3](https://rubygems.org/gems/rbtree3) instead of
[rbtree](https://rubygems.org/gems/rbtree), which fixed [`_dump': instance of
IO needed (TypeError)`](https://github.com/airbrake/airbrake/issues/894) when
trying to dump an RBTree
([#400](https://github.com/airbrake/airbrake-ruby/pull/400))
* Added `Airbrake.notify_query` to send SQL queries to Airbrake
([#379](https://github.com/airbrake/airbrake-ruby/pull/376))
* Added `Airbrake.add_performance_filter` and
`Airbrake.delete_performance_filter` to filter out sensitive SQL query and
route data ([#395](https://github.com/airbrake/airbrake-ruby/pull/395))
* Added `Airbrake.notifiers` to access the new performance notifier
([#398](https://github.com/airbrake/airbrake-ruby/pull/398))
* Deprecated `config.route_stats` in favor of `config.performance_stats`
([#381](https://github.com/airbrake/airbrake-ruby/pull/381))
* Deprecated `Airbrake::Notifier` in favor of `Airbrake::NoticeNotifier`
([#386](https://github.com/airbrake/airbrake-ruby/pull/386))
* Fixed time truncation on `Airbrake.notify_request`, which wasn't respecting
UTC offset ([#394](https://github.com/airbrake/airbrake-ruby/pull/394))
* Fixed bug where `GitRepositoryFilter` invokes `get-url`, which doesn't exist
on Git 2.6 and lower
([#399](https://github.com/airbrake/airbrake-ruby/pull/399))
([#404](https://github.com/airbrake/airbrake-ruby/pull/404))

### [v3.1.0][v3.1.0] (January 23, 2019)

* Added `Airbrake.delete_filter`, which can be used for deleting filters added
Expand Down Expand Up @@ -575,3 +602,4 @@ Airbrake Ruby Changelog
[v3.0.0.rc.9]: https://github.com/airbrake/airbrake-ruby/releases/tag/v3.0.0.rc.9
[v3.0.0]: https://github.com/airbrake/airbrake-ruby/releases/tag/v3.0.0
[v3.1.0]: https://github.com/airbrake/airbrake-ruby/releases/tag/v3.1.0
[v3.2.0]: https://github.com/airbrake/airbrake-ruby/releases/tag/v3.2.0
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -59,7 +59,7 @@ Installation
Add the Airbrake Ruby gem to your Gemfile:

```ruby
gem 'airbrake-ruby', '~> 3.1'
gem 'airbrake-ruby', '~> 3.2'
```

### Manual
Expand Down
2 changes: 1 addition & 1 deletion lib/airbrake-ruby.rb
Original file line number Diff line number Diff line change
Expand Up @@ -154,7 +154,7 @@ def delete_filter(_filter_class); end
# {Airbrake::DeployNotifier} and serves only the purpose of making the library
# API easier to use.
#
# @since v3.1.0
# @since v3.2.0
class NilDeployNotifier
# @see Airbrake.create_deploy
def notify(_deploy_info); end
Expand Down
4 changes: 2 additions & 2 deletions lib/airbrake-ruby/config.rb
Original file line number Diff line number Diff line change
Expand Up @@ -86,13 +86,13 @@ class Config
# @return [Boolean] true if the library should send performance stats
# information to Airbrake (routes, SQL queries), false otherwise
# @api public
# @since v3.1.0
# @since v3.2.0
attr_accessor :performance_stats

# @return [Integer] how many seconds to wait before sending collected route
# stats
# @api public
# @since v3.1.0
# @since v3.2.0
attr_accessor :performance_stats_flush_period

# @param [Hash{Symbol=>Object}] user_config the hash to be used to build the
Expand Down
2 changes: 1 addition & 1 deletion lib/airbrake-ruby/version.rb
Original file line number Diff line number Diff line change
Expand Up @@ -2,5 +2,5 @@
# More information: http://semver.org/
module Airbrake
# @return [String] the library version
AIRBRAKE_RUBY_VERSION = '3.1.0'.freeze
AIRBRAKE_RUBY_VERSION = '3.2.0'.freeze
end

0 comments on commit ef743cf

Please sign in to comment.