activestorage 6.1.7.6 → 6.1.7.8

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: 26da54c9eadb4be0027c342697cdda5b3e2db9f81af78f730d00d1b6755af62e
4
- data.tar.gz: fb5a9b64bfaffbd8071469d8c6910f98bddb41a809917e7a405af2b87911bd58
3
+ metadata.gz: 337b1f1d3cc044cab04177ac160dc827cd24a462edabec4747efdd5486aceabd
4
+ data.tar.gz: f58f211c9ca15440449b71848ea4d5362855e8e81c63d672b3dbf43134d90d0c
5
5
  SHA512:
6
- metadata.gz: 81846b05d474d776edf5d7d169847e9b2e5299d0667c023e09450767323635591682ad7f6289c4cdec02d6927d24e4ddbed7e1e6064e83f2cac9e7d2a36ebd90
7
- data.tar.gz: 56e09dcdd851fa7fa9f08f122fa2ecc09c34265b1de2585e57c7ce985800dbb654277a77deaafb9290d9a4e8019ea08dd31f05bca668b7160b612bc9ad9e2b4f
6
+ metadata.gz: 6352b8d9721effd6b2bd9eb5b8590927b134df3680c9eb26e16f70c51df108aaf4280a8381a65f056a750c4edecf7ddf397e77d637b53a0ac4a4c7ff1f6cc3da
7
+ data.tar.gz: 51231c82fa03e28883d62a63fcd07a672de79d707b73549934fa85bf4ec8fd594a153a63cebf91ae1441016d3a782ad8767e2545971b96757517538e46007daf
data/CHANGELOG.md CHANGED
@@ -1,3 +1,18 @@
1
+ ## Rails 6.1.7.8 (June 04, 2024) ##
2
+
3
+ * No changes.
4
+
5
+
6
+ ## Rails 6.1.7.7 (February 21, 2024) ##
7
+
8
+ * Disables the session in `ActiveStorage::Blobs::ProxyController`
9
+ and `ActiveStorage::Representations::ProxyController`
10
+ in order to allow caching by default in some CDNs as CloudFlare
11
+
12
+ Fixes #44136
13
+
14
+ *Bruno Prieto*
15
+
1
16
  ## Rails 6.1.7.6 (August 22, 2023) ##
2
17
 
3
18
  * No changes.
@@ -4,6 +4,7 @@
4
4
  class ActiveStorage::Blobs::ProxyController < ActiveStorage::BaseController
5
5
  include ActiveStorage::SetBlob
6
6
  include ActiveStorage::SetHeaders
7
+ include ActiveStorage::DisableSession
7
8
 
8
9
  def show
9
10
  http_cache_forever public: true do
@@ -3,6 +3,7 @@
3
3
  # Proxy files through application. This avoids having a redirect and makes files easier to cache.
4
4
  class ActiveStorage::Representations::ProxyController < ActiveStorage::Representations::BaseController
5
5
  include ActiveStorage::SetHeaders
6
+ include ActiveStorage::DisableSession
6
7
 
7
8
  def show
8
9
  http_cache_forever public: true do
@@ -0,0 +1,12 @@
1
+ # frozen_string_literal: true
2
+
3
+ # This concern disables the session in order to allow caching by default in some CDNs as CloudFlare.
4
+ module ActiveStorage::DisableSession
5
+ extend ActiveSupport::Concern
6
+
7
+ included do
8
+ before_action do
9
+ request.session_options[:skip] = true
10
+ end
11
+ end
12
+ end
@@ -10,7 +10,7 @@ module ActiveStorage
10
10
  MAJOR = 6
11
11
  MINOR = 1
12
12
  TINY = 7
13
- PRE = "6"
13
+ PRE = "8"
14
14
 
15
15
  STRING = [MAJOR, MINOR, TINY, PRE].compact.join(".")
16
16
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: activestorage
3
3
  version: !ruby/object:Gem::Version
4
- version: 6.1.7.6
4
+ version: 6.1.7.8
5
5
  platform: ruby
6
6
  authors:
7
7
  - David Heinemeier Hansson
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2023-08-22 00:00:00.000000000 Z
11
+ date: 2024-06-04 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: activesupport
@@ -16,56 +16,56 @@ dependencies:
16
16
  requirements:
17
17
  - - '='
18
18
  - !ruby/object:Gem::Version
19
- version: 6.1.7.6
19
+ version: 6.1.7.8
20
20
  type: :runtime
21
21
  prerelease: false
22
22
  version_requirements: !ruby/object:Gem::Requirement
23
23
  requirements:
24
24
  - - '='
25
25
  - !ruby/object:Gem::Version
26
- version: 6.1.7.6
26
+ version: 6.1.7.8
27
27
  - !ruby/object:Gem::Dependency
28
28
  name: actionpack
29
29
  requirement: !ruby/object:Gem::Requirement
30
30
  requirements:
31
31
  - - '='
32
32
  - !ruby/object:Gem::Version
33
- version: 6.1.7.6
33
+ version: 6.1.7.8
34
34
  type: :runtime
35
35
  prerelease: false
36
36
  version_requirements: !ruby/object:Gem::Requirement
37
37
  requirements:
38
38
  - - '='
39
39
  - !ruby/object:Gem::Version
40
- version: 6.1.7.6
40
+ version: 6.1.7.8
41
41
  - !ruby/object:Gem::Dependency
42
42
  name: activejob
43
43
  requirement: !ruby/object:Gem::Requirement
44
44
  requirements:
45
45
  - - '='
46
46
  - !ruby/object:Gem::Version
47
- version: 6.1.7.6
47
+ version: 6.1.7.8
48
48
  type: :runtime
49
49
  prerelease: false
50
50
  version_requirements: !ruby/object:Gem::Requirement
51
51
  requirements:
52
52
  - - '='
53
53
  - !ruby/object:Gem::Version
54
- version: 6.1.7.6
54
+ version: 6.1.7.8
55
55
  - !ruby/object:Gem::Dependency
56
56
  name: activerecord
57
57
  requirement: !ruby/object:Gem::Requirement
58
58
  requirements:
59
59
  - - '='
60
60
  - !ruby/object:Gem::Version
61
- version: 6.1.7.6
61
+ version: 6.1.7.8
62
62
  type: :runtime
63
63
  prerelease: false
64
64
  version_requirements: !ruby/object:Gem::Requirement
65
65
  requirements:
66
66
  - - '='
67
67
  - !ruby/object:Gem::Version
68
- version: 6.1.7.6
68
+ version: 6.1.7.8
69
69
  - !ruby/object:Gem::Dependency
70
70
  name: marcel
71
71
  requirement: !ruby/object:Gem::Requirement
@@ -112,6 +112,7 @@ files:
112
112
  - app/controllers/active_storage/representations/base_controller.rb
113
113
  - app/controllers/active_storage/representations/proxy_controller.rb
114
114
  - app/controllers/active_storage/representations/redirect_controller.rb
115
+ - app/controllers/concerns/active_storage/disable_session.rb
115
116
  - app/controllers/concerns/active_storage/file_server.rb
116
117
  - app/controllers/concerns/active_storage/set_blob.rb
117
118
  - app/controllers/concerns/active_storage/set_current.rb
@@ -188,10 +189,10 @@ licenses:
188
189
  - MIT
189
190
  metadata:
190
191
  bug_tracker_uri: https://github.com/rails/rails/issues
191
- changelog_uri: https://github.com/rails/rails/blob/v6.1.7.6/activestorage/CHANGELOG.md
192
- documentation_uri: https://api.rubyonrails.org/v6.1.7.6/
192
+ changelog_uri: https://github.com/rails/rails/blob/v6.1.7.8/activestorage/CHANGELOG.md
193
+ documentation_uri: https://api.rubyonrails.org/v6.1.7.8/
193
194
  mailing_list_uri: https://discuss.rubyonrails.org/c/rubyonrails-talk
194
- source_code_uri: https://github.com/rails/rails/tree/v6.1.7.6/activestorage
195
+ source_code_uri: https://github.com/rails/rails/tree/v6.1.7.8/activestorage
195
196
  rubygems_mfa_required: 'true'
196
197
  post_install_message:
197
198
  rdoc_options: []
@@ -208,7 +209,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
208
209
  - !ruby/object:Gem::Version
209
210
  version: '0'
210
211
  requirements: []
211
- rubygems_version: 3.3.3
212
+ rubygems_version: 3.3.27
212
213
  signing_key:
213
214
  specification_version: 4
214
215
  summary: Local and cloud file storage framework.