From b3f5b05f907e1f90d040017d44608d6688215c17 Mon Sep 17 00:00:00 2001 From: Jon de Andres Date: Fri, 16 Sep 2016 01:51:02 +0200 Subject: [PATCH] Release v2.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). --- CHANGELOG.md | 29 ++++++++++++++++++++++++++++- README.md | 2 +- lib/rollbar/version.rb | 2 +- 3 files changed, 30 insertions(+), 3 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index edb36669..651b9e5f 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -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: @@ -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). diff --git a/README.md b/README.md index e2ac228f..0c3dfede 100644 --- a/README.md +++ b/README.md @@ -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) [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. diff --git a/lib/rollbar/version.rb b/lib/rollbar/version.rb index 41c1ddcb..77650647 100644 --- a/lib/rollbar/version.rb +++ b/lib/rollbar/version.rb @@ -1,3 +1,3 @@ module Rollbar - VERSION = '2.12.0' + VERSION = '2.13.0' end