Skip to content

Commit

Permalink
Release v2.13.0
Browse files Browse the repository at this point in the history
[skip ci]

Features:
- Allow to override config. See [#519](#519).
- Send code and context frame data. See [#523](#523).
- Send GET, POST and raw body in their correct place. See [#522](#522).
- Increase max payload from 128kb to 512kb. See [#521](#521).
- Add resque-rollbar functionality to the gem. See [#516](#516).
- Send custom.orig_host and custom.orig_uuid on too large payloads. See [#518](#518).
- Add Content-Length and Content-Type headers to the reports. See [#513](#513).

Bug fixes:
- SecureHeaders fixes. See [#478](#478).
- Include validations plugin in activerecord base. See [#503](#503).
- Require tempfile and use ::Tempfile. See [#514](#514).
- Extract correct client IP from X-Forwarded-For header. See [#515](#515).
- Delayed job fix on job serialization. See [#512](#512).

Others:
- Fix tests on rails40 and ruby 1.8.7. See [#485](#485).
- Move log methods to public section. See [#498](#498).
- Change rails50.gemfile to use Rails 5.0.0. See [#495](#495).
- Update CHANGELOG.md to fix incorrect links. See [#502](#502).
- Improve Rake support to avoid conflicts with other services. See [#517](#517).
- Make Codeclimate happier with Rollbar::Middlware::Js. See [#520](#520).
  • Loading branch information
Jon de Andres committed Sep 15, 2016
1 parent 26bdd9c commit 63e468e
Show file tree
Hide file tree
Showing 3 changed files with 30 additions and 3 deletions.
29 changes: 28 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,32 @@
# Change Log

## 2.13.0

Features:
- Allow to override config. See [#519](https://github.com/rollbar/rollbar-gem/pull/519).
- Send code and context frame data. See [#523](https://github.com/rollbar/rollbar-gem/pull/523).
- Send GET, POST and raw body in their correct place. See [#522](https://github.com/rollbar/rollbar-gem/pull/522).
- Increase max payload from 128kb to 512kb. See [#521](https://github.com/rollbar/rollbar-gem/pull/521).
- Add resque-rollbar functionality to the gem. See [#516](https://github.com/rollbar/rollbar-gem/pull/516).
- Send custom.orig_host and custom.orig_uuid on too large payloads. See [#518](https://github.com/rollbar/rollbar-gem/pull/518).
- Add Content-Length and Content-Type headers to the reports. See [#513](https://github.com/rollbar/rollbar-gem/pull/513).

Bug fixes:
- SecureHeaders fixes. See [#478](https://github.com/rollbar/rollbar-gem/pull/478).
- Include validations plugin in activerecord base. See [#503](https://github.com/rollbar/rollbar-gem/pull/503).
- Require tempfile and use ::Tempfile. See [#514](https://github.com/rollbar/rollbar-gem/pull/514).
- Extract correct client IP from X-Forwarded-For header. See [#515](https://github.com/rollbar/rollbar-gem/pull/515).
- Delayed job fix on job serialization. See [#512](https://github.com/rollbar/rollbar-gem/pull/512).

Others:
- Fix tests on rails40 and ruby 1.8.7. See [#485](https://github.com/rollbar/rollbar-gem/pull/485).
- Move log methods to public section. See [#498](https://github.com/rollbar/rollbar-gem/pull/498).
- Change rails50.gemfile to use Rails 5.0.0. See [#495](https://github.com/rollbar/rollbar-gem/pull/495).
- Update CHANGELOG.md to fix incorrect links. See [#502](https://github.com/rollbar/rollbar-gem/pull/502).
- Improve Rake support to avoid conflicts with other services. See [#517](https://github.com/rollbar/rollbar-gem/pull/517).
- Make Codeclimate happier with Rollbar::Middlware::Js. See [#520](https://github.com/rollbar/rollbar-gem/pull/520).


## 2.12.0

Features:
Expand All @@ -13,7 +40,7 @@ Others:

## 2.11.5

Bugfixes:
Bugf ixes:

- Use require_dependency for rake and sidekiq plugins. See [#485](https://github.com/rollbar/rollbar-gem/pull/485).
- Add immediate ActiveModel::Validations monkey patch. See [#484](https://github.com/rollbar/rollbar-gem/pull/484).
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# Rollbar [![Build Status](https://api.travis-ci.org/rollbar/rollbar-gem.svg?branch=v2.12.0)](https://travis-ci.org/rollbar/rollbar-gem/branches)
# Rollbar [![Build Status](https://api.travis-ci.org/rollbar/rollbar-gem.svg?branch=v2.13.0)](https://travis-ci.org/rollbar/rollbar-gem/branches)

<!-- RemoveNext -->
[Rollbar](https://rollbar.com) is an error tracking service for Ruby and other languages. The Rollbar service will alert you of problems with your code and help you understand them in a ways never possible before. We love it and we hope you will too.
Expand Down
2 changes: 1 addition & 1 deletion lib/rollbar/version.rb
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
module Rollbar
VERSION = '2.12.0'
VERSION = '2.13.0'.freeze
end

0 comments on commit 63e468e

Please sign in to comment.