rollbar 2.6.2 → 2.6.3

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 6f8b07e2d8e3d2992b1a1fd184ea691fcd4acec2
4
- data.tar.gz: 035042188f3d6fa98900729ac77fc031274e9b66
3
+ metadata.gz: 719fb1702368226fe659a956193cb0476c6b96ae
4
+ data.tar.gz: c144264db862735c7821968b10964923b804d577
5
5
  SHA512:
6
- metadata.gz: 30fb1d65967e4d6d5fc5b1912bdcc46fcfa859bc15a7c65fc644b625906b65134ce5b6c07af72de59a3de484575c0d00c68faeff30f8ed4e550a324b443272ca
7
- data.tar.gz: 6a6eb792d773a6a56738e1a554bcd686de7e3b54ebea97d17f87096ba578bfcf0c1c717e90a04711e9199442382225a9e39e7dbb3c4ad8dc6b3cb51eb49b5141
6
+ metadata.gz: 3a9d33625014e9e3736dabc1a18f23b0b6604603eb1716f39bef8f27be5d88836983f1dece46fda0106062bbd7c8b7c99b2e224b3c685ec66b9981644bc4f550
7
+ data.tar.gz: 7eb6361019cad3de5a3184fcc9db7d3ed5fa43459b6748eeb1570fe3d5a058f857d507dae735295aba892c1df8a540c713cbc078c0a6235094baf29b4aec5519
data/CHANGELOG.md CHANGED
@@ -1,5 +1,12 @@
1
1
  # Change Log
2
2
 
3
+ ## 2.6.3
4
+
5
+ Change:
6
+
7
+ - Add default scrub fields, "api_key" and "access_token". See [#348](https://github.com/rollbar/rollbar-gem/pull/348).
8
+
9
+
3
10
  ## 2.6.2
4
11
 
5
12
  Bug fix:
data/README.md CHANGED
@@ -1,4 +1,4 @@
1
- # Rollbar notifier for Ruby [![Build Status](https://api.travis-ci.org/rollbar/rollbar-gem.svg?branch=v2.6.2)](https://travis-ci.org/rollbar/rollbar-gem/branches)
1
+ # Rollbar notifier for Ruby [![Build Status](https://api.travis-ci.org/rollbar/rollbar-gem.svg?branch=v2.6.3)](https://travis-ci.org/rollbar/rollbar-gem/branches)
2
2
 
3
3
  <!-- RemoveNext -->
4
4
  [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.
@@ -12,7 +12,7 @@ This is the Ruby library for Rollbar. It will instrument many kinds of Ruby appl
12
12
  Add this line to your application's Gemfile:
13
13
 
14
14
  ```ruby
15
- gem 'rollbar', '~> 2.6.2'
15
+ gem 'rollbar', '~> 2.6.3'
16
16
  ```
17
17
 
18
18
  If you are not using JRuby we suggest using [Oj](https://github.com/ohler55/oj) for JSON serialization. In order to install Oj you can add this line to your Gemfile:
@@ -83,7 +83,8 @@ module Rollbar
83
83
  @report_dj_data = true
84
84
  @request_timeout = 3
85
85
  @scrub_fields = [:passwd, :password, :password_confirmation, :secret,
86
- :confirm_password, :password_confirmation, :secret_token]
86
+ :confirm_password, :password_confirmation, :secret_token,
87
+ :api_key, :access_token ]
87
88
  @scrub_user = true
88
89
  @scrub_password = true
89
90
  @randomize_scrub_length = true
@@ -1,3 +1,3 @@
1
1
  module Rollbar
2
- VERSION = "2.6.2"
2
+ VERSION = "2.6.3"
3
3
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: rollbar
3
3
  version: !ruby/object:Gem::Version
4
- version: 2.6.2
4
+ version: 2.6.3
5
5
  platform: ruby
6
6
  authors:
7
7
  - Rollbar, Inc.
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2015-11-25 00:00:00.000000000 Z
11
+ date: 2015-11-26 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: rails