bullet 7.0.5 → 7.0.6

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: f67f5d4add512b0606aa27cf26e9d2a628d6eb7dc58078d4c3eaeca4d3bfccf7
4
- data.tar.gz: aa55cdd15e0f585a679595b98b858194c3d217acedf9ef0db70085cc74b7710c
3
+ metadata.gz: 569db7f7d8ef291955677e5d584ddc3b2cd51704173bfdf6e11890d06053fc71
4
+ data.tar.gz: 45e12d9e2ba4129361796d2d5f11c7f98f3e79d8ab466941a960b64bcd044fa5
5
5
  SHA512:
6
- metadata.gz: 919bb619038a60d8657bc09f2c34949934c933de190ae0d3ed2025e4599e6cbe284b132b2ed92ea6f94dfbc06566ba56aa522684107cab1aa3a1386a431a527e
7
- data.tar.gz: 3682a26c40d5a6b6559f7d82324ad3236ba91db28a99f1416117a5147986e26cdc75c643a0a0a58891f781ba5511a44d90124f5f7a637ce43b2d3c3e31baf3a5
6
+ metadata.gz: c6a8690827ab89a72f78eb717dd2576384b7cce02ace9ace4ac3840da1d3e64cda20d8dec0016a06b288fa99b806c8debd309922eb061cf3576413781ee8347a
7
+ data.tar.gz: b3bfe35af8f6a7b2d3e8183fc80d1f106ba71ad3326b2d56592e7b0a4c715dc6b1ac861760a61f3327a371025b58792e07bbd1f0143d2ba7d9710b4151e7a6f6
data/CHANGELOG.md CHANGED
@@ -1,5 +1,9 @@
1
1
  ## Next Release
2
2
 
3
+ ## 7.0.6 (03/01/2023)
4
+
5
+ * Better way to check if `ActionDispatch::ContentSecurityPolicy::Middleware` exists
6
+
3
7
  ## 7.0.5 (01/01/2023)
4
8
 
5
9
  * Fix n+1 false positives in AR 7.0
@@ -1,5 +1,5 @@
1
1
  # frozen_string_literal: true
2
2
 
3
3
  module Bullet
4
- VERSION = '7.0.5'
4
+ VERSION = '7.0.6'
5
5
  end
data/lib/bullet.rb CHANGED
@@ -23,7 +23,7 @@ module Bullet
23
23
  if defined?(Rails::Railtie)
24
24
  class BulletRailtie < Rails::Railtie
25
25
  initializer 'bullet.configure_rails_initialization' do |app|
26
- if defined?(ActionDispatch::ContentSecurityPolicy::Middleware)
26
+ if defined?(ActionDispatch::ContentSecurityPolicy::Middleware) && app.middleware.include?(ActionDispatch::ContentSecurityPolicy::Middleware)
27
27
  app.middleware.insert_before ActionDispatch::ContentSecurityPolicy::Middleware, Bullet::Rack
28
28
  else
29
29
  app.middleware.use Bullet::Rack
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: bullet
3
3
  version: !ruby/object:Gem::Version
4
- version: 7.0.5
4
+ version: 7.0.6
5
5
  platform: ruby
6
6
  authors:
7
7
  - Richard Huang
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2023-01-01 00:00:00.000000000 Z
11
+ date: 2023-01-03 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: activesupport