blouson 1.1.3 → 1.1.4

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
  SHA256:
3
- metadata.gz: 3c5a05fbdf574e2e9c8420e7d24ad36ba81786df09d1916073d409ba47f764ec
4
- data.tar.gz: 4d14dbf88a1e8aa457bcc5b2dae76846bf02d1cb5da4fb32e9ef23909e600f5a
3
+ metadata.gz: a561df78a14ba07951254ce32982357a83a32eab60691ba688fe95a4049e1d77
4
+ data.tar.gz: 53d9f65de40ed900cf5e3fbb4ac2525c74eb563695a1320dd5ae3b0d53b50b73
5
5
  SHA512:
6
- metadata.gz: 552ac7c5c3f6faaafe54355ea30d016ab47b5ac419b4466a27b0976bfdd60c89e9b4becf2aebc74a7937e25b9076e440f66fac65f141881d3e606c1257759f2a
7
- data.tar.gz: 242d596166fc9beb1ca7380c1b9ae066d044e687ed9e783449c51788a6578e9f200178a04b6a63554f3576adab494800774d2694bbc3d9ab23820aad9223dc6d
6
+ metadata.gz: aec465e833f9b260e8d2180ae9147accf15220d3431cf4975a50d73075c56975288d83c0b1245396a281ac492546b3aa36d2f43410ce016f9e770436e0d459aa
7
+ data.tar.gz: 2ff71f692ae850d89b3a702480bbb4c13ce226c77984bd1092835a0b1cf55e4335e2d03d7f68857056909d2589a84e895c389a31eccd041437a46aaef640f2b6
@@ -0,0 +1,64 @@
1
+ name: CI
2
+
3
+ on:
4
+ push:
5
+ pull_request:
6
+
7
+ jobs:
8
+ test:
9
+ runs-on: ubuntu-latest
10
+ strategy:
11
+ fail-fast: false
12
+ matrix:
13
+ ruby:
14
+ - '2.6'
15
+ - '2.7'
16
+ - '3.0'
17
+ - '3.1'
18
+ gemfile:
19
+ - rails_5.0
20
+ - rails_5.1
21
+ - rails_5.2
22
+ - rails_6.0
23
+ - rails_6.1
24
+ - rails_7.0
25
+ exclude:
26
+ # Ruby >= 3.0 is supported since Rails 6.0
27
+ - ruby: '3.0'
28
+ gemfile: rails_5.0
29
+ - ruby: '3.0'
30
+ gemfile: rails_5.1
31
+ - ruby: '3.0'
32
+ gemfile: rails_5.2
33
+ - ruby: '3.1'
34
+ gemfile: rails_5.0
35
+ - ruby: '3.1'
36
+ gemfile: rails_5.1
37
+ - ruby: '3.1'
38
+ gemfile: rails_5.2
39
+ # Rails 7.0 supports Ruby >= 2.7 only
40
+ - ruby: '2.6'
41
+ gemfile: rails_7.0
42
+ name: Run test with Ruby ${{ matrix.ruby }} and Gemfile ${{ matrix.gemfile }}
43
+ services:
44
+ mysql:
45
+ image: mysql:5.7
46
+ env:
47
+ MYSQL_ALLOW_EMPTY_PASSWORD: '1'
48
+ MYSQL_DATABASE: blouson
49
+ ports:
50
+ - 3306:3306
51
+ options: >-
52
+ --health-cmd "mysqladmin ping"
53
+ --health-interval 10s
54
+ --health-timeout 5s
55
+ --health-retries 5
56
+ env:
57
+ BUNDLE_GEMFILE: ${{ github.workspace }}/gemfiles/${{ matrix.gemfile }}.gemfile
58
+ steps:
59
+ - uses: actions/checkout@v3
60
+ - uses: ruby/setup-ruby@v1
61
+ with:
62
+ ruby-version: ${{ matrix.ruby }}
63
+ bundler-cache: true
64
+ - run: bundle exec rake spec
data/Appraisals CHANGED
@@ -1,7 +1,3 @@
1
- appraise 'rails-4.2' do
2
- gem 'rails', '~> 4.2.0'
3
- end
4
-
5
1
  appraise 'rails-5.0' do
6
2
  gem 'rails', '~> 5.0.0'
7
3
  end
@@ -18,4 +14,12 @@ appraise 'rails-6.0' do
18
14
  gem 'rails', '~> 6.0.0'
19
15
  end
20
16
 
17
+ appraise 'rails-6.1' do
18
+ gem 'rails', '~> 6.1.0'
19
+ end
20
+
21
+ appraise 'rails-7.0' do
22
+ gem 'rails', '~> 7.0.0'
23
+ end
24
+
21
25
  # vim: set ft=ruby:
data/CHANGELOG.md CHANGED
@@ -1,3 +1,6 @@
1
+ # 1.1.4 (2022-05-02)
2
+ - Fix ArgumentError on activerecord 7.0
3
+
1
4
  # 1.1.3 (2020-12-11)
2
5
  - Fix cookies not being filtered when used with Raven::Rack
3
6
 
data/README.md CHANGED
@@ -1,6 +1,6 @@
1
1
  # Blouson
2
2
  [![Gem Version](https://badge.fury.io/rb/blouson.svg)](https://badge.fury.io/rb/blouson)
3
- [![Build Status](https://travis-ci.org/cookpad/blouson.svg?branch=master)](https://travis-ci.org/cookpad/blouson)
3
+ [![Build Status](https://github.com/cookpad/blouson/actions/workflows/ci.yml/badge.svg)](https://github.com/cookpad/blouson/actions/workflows/ci.yml)
4
4
 
5
5
  Blouson is a filter tool for Rails to conceal sensitive data from various logs.
6
6
 
@@ -2,6 +2,6 @@
2
2
 
3
3
  source "https://rubygems.org"
4
4
 
5
- gem "rails", "~> 4.2.0"
5
+ gem "rails", "~> 6.1.0"
6
6
 
7
7
  gemspec path: "../"
@@ -0,0 +1,7 @@
1
+ # This file was generated by Appraisal
2
+
3
+ source "https://rubygems.org"
4
+
5
+ gem "rails", "~> 7.0.0"
6
+
7
+ gemspec path: "../"
@@ -1,13 +1,13 @@
1
1
  module Blouson
2
2
  class SensitiveTableQueryLogSilencer < Arproxy::Base
3
- def execute(sql, name=nil)
3
+ def execute(sql, name=nil, **kwargs)
4
4
  if Rails.logger.level != Logger::DEBUG || !(Blouson::SENSITIVE_TABLE_REGEXP === sql)
5
- return super(sql, name)
5
+ return super(sql, name, **kwargs)
6
6
  end
7
7
 
8
8
  ActiveRecord::Base.logger.silence(Logger::INFO) do
9
9
  Rails.logger.info " [Blouson::SensitiveTableQueryLogSilencer] SQL Log is skipped for sensitive table"
10
- super(sql, name)
10
+ super(sql, name, **kwargs)
11
11
  end
12
12
  end
13
13
  end
@@ -1,3 +1,3 @@
1
1
  module Blouson
2
- VERSION = "1.1.3"
2
+ VERSION = "1.1.4"
3
3
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: blouson
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.1.3
4
+ version: 1.1.4
5
5
  platform: ruby
6
6
  authors:
7
7
  - Cookpad Inc.
8
- autorequire:
8
+ autorequire:
9
9
  bindir: exe
10
10
  cert_chain: []
11
- date: 2020-12-11 00:00:00.000000000 Z
11
+ date: 2022-05-02 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: rails
@@ -143,9 +143,9 @@ executables: []
143
143
  extensions: []
144
144
  extra_rdoc_files: []
145
145
  files:
146
+ - ".github/workflows/ci.yml"
146
147
  - ".gitignore"
147
148
  - ".rspec"
148
- - ".travis.yml"
149
149
  - Appraisals
150
150
  - CHANGELOG.md
151
151
  - Gemfile
@@ -155,11 +155,12 @@ files:
155
155
  - bin/console
156
156
  - bin/setup
157
157
  - blouson.gemspec
158
- - gemfiles/rails_4.2.gemfile
159
158
  - gemfiles/rails_5.0.gemfile
160
159
  - gemfiles/rails_5.1.gemfile
161
160
  - gemfiles/rails_5.2.gemfile
162
161
  - gemfiles/rails_6.0.gemfile
162
+ - gemfiles/rails_6.1.gemfile
163
+ - gemfiles/rails_7.0.gemfile
163
164
  - lib/blouson.rb
164
165
  - lib/blouson/engine.rb
165
166
  - lib/blouson/raven_parameter_filter_processor.rb
@@ -173,7 +174,7 @@ homepage: https://github.com/cookpad/blouson
173
174
  licenses:
174
175
  - MIT
175
176
  metadata: {}
176
- post_install_message:
177
+ post_install_message:
177
178
  rdoc_options: []
178
179
  require_paths:
179
180
  - lib
@@ -188,8 +189,8 @@ required_rubygems_version: !ruby/object:Gem::Requirement
188
189
  - !ruby/object:Gem::Version
189
190
  version: '0'
190
191
  requirements: []
191
- rubygems_version: 3.1.4
192
- signing_key:
192
+ rubygems_version: 3.3.8
193
+ signing_key:
193
194
  specification_version: 4
194
195
  summary: Filter tools to mask sensitive data in various logs
195
196
  test_files: []
data/.travis.yml DELETED
@@ -1,24 +0,0 @@
1
- sudo: false
2
- language: ruby
3
- services:
4
- - mysql
5
- gemfile:
6
- - gemfiles/rails_4.2.gemfile
7
- - gemfiles/rails_5.0.gemfile
8
- - gemfiles/rails_5.1.gemfile
9
- - gemfiles/rails_5.2.gemfile
10
- - gemfiles/rails_6.0.gemfile
11
- rvm:
12
- - 2.3.8
13
- - 2.4.6
14
- - 2.5.5
15
- - 2.6.3
16
- matrix:
17
- exclude:
18
- - rvm: 2.3.8
19
- gemfile: gemfiles/rails_6.0.gemfile
20
- - rvm: 2.4.6
21
- gemfile: gemfiles/rails_6.0.gemfile
22
- before_install:
23
- - "[[ $BUNDLE_GEMFILE =~ rails_4\\.2 ]] && gem uninstall -v '>= 2' -i $(rvm gemdir)@global -ax bundler || true"
24
- - "[[ $BUNDLE_GEMFILE =~ rails_4\\.2 ]] && gem install bundler -v '< 2' || true"