activestorage 6.1.3 → 6.1.3.1

Sign up to get free protection for your applications and to get access to all the features.

Potentially problematic release.


This version of activestorage might be problematic. Click here for more details.

checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: c394453fcb90015316928972c840ad4e55d9d416714a815d8de5a053f71fe2f8
4
- data.tar.gz: 268d6d5ad38257e819ea0da120de16acf90f27eff8ad64c114c106ea88fd498b
3
+ metadata.gz: 645186a399a2dbb7842cf5aad3138fd0b33cae1e5906c36b41095ae530c4df75
4
+ data.tar.gz: 722028d745d419c548fdb944c0f9fb39267dcc8a0d110202857d8356acc46211
5
5
  SHA512:
6
- metadata.gz: 900742e2629c95938f358f86c4135ff3a1ba289184da3fc44ca2a9086dd8eedbd58c72c830de616b6b118c4b005b946eba1d3f6d0bc1f1553400cb2ee966e6c4
7
- data.tar.gz: 26c8f0bcf812c970856007898f89f5fb9fed1d512031db3a52620d80a8b7fb217af68c9f7daaeeb8e132617dd75268952ab35220f7a46a58341dd369478711d7
6
+ metadata.gz: 63a5dfbd6fac7fbbfaecc30e3f95efc03242ba5d5785b952914a80c30807f6699954b9b4b5e31c26be8f2573785c0bd50b13358063acb690abf694cc04c8fe98
7
+ data.tar.gz: 0d3e165f3722f166f033735f7cb4203206727980f542d8f8687ff8560dc3d2f67830b928d1c5e33e4279323b3fbbc0cbfdec15d27935fbe6edcd823ed4dcd8a2
data/CHANGELOG.md CHANGED
@@ -1,3 +1,11 @@
1
+ ## Rails 6.1.3.1 (March 26, 2021) ##
2
+
3
+ * Marcel is upgraded to version 1.0.0 to avoid a dependency on GPL-licensed
4
+ mime types data.
5
+
6
+ *George Claghorn*
7
+
8
+
1
9
  ## Rails 6.1.3 (February 17, 2021) ##
2
10
 
3
11
  * No changes.
@@ -1,6 +1,6 @@
1
1
  # frozen_string_literal: true
2
2
 
3
- require "mimemagic"
3
+ require "mini_mime"
4
4
 
5
5
  module ActiveStorage::Blob::Representable
6
6
  extend ActiveSupport::Concern
@@ -110,10 +110,10 @@ module ActiveStorage::Blob::Representable
110
110
  end
111
111
 
112
112
  def format
113
- if filename.extension.present? && MimeMagic.by_extension(filename.extension)&.to_s == content_type
113
+ if filename.extension.present? && MiniMime.lookup_by_extension(filename.extension)&.content_type == content_type
114
114
  filename.extension
115
115
  else
116
- MimeMagic.new(content_type).extensions.first
116
+ MiniMime.lookup_by_content_type(content_type).extension
117
117
  end
118
118
  end
119
119
 
@@ -1,6 +1,6 @@
1
1
  # frozen_string_literal: true
2
2
 
3
- require "mimemagic"
3
+ require "mini_mime"
4
4
 
5
5
  # A set of transformations that can be applied to a blob to create a variant. This class is exposed via
6
6
  # the ActiveStorage::Blob#variant method and should rarely be used directly.
@@ -59,14 +59,14 @@ class ActiveStorage::Variation
59
59
 
60
60
  def format
61
61
  transformations.fetch(:format, :png).tap do |format|
62
- if MimeMagic.by_extension(format).nil?
62
+ if MiniMime.lookup_by_extension(format.to_s).nil?
63
63
  raise ArgumentError, "Invalid variant format (#{format.inspect})"
64
64
  end
65
65
  end
66
66
  end
67
67
 
68
68
  def content_type
69
- MimeMagic.by_extension(format).to_s
69
+ MiniMime.lookup_by_extension(format.to_s).content_type
70
70
  end
71
71
 
72
72
  # Returns a signed key for all the +transformations+ that this variation was instantiated with.
@@ -10,7 +10,7 @@ module ActiveStorage
10
10
  MAJOR = 6
11
11
  MINOR = 1
12
12
  TINY = 3
13
- PRE = nil
13
+ PRE = "1"
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.3
4
+ version: 6.1.3.1
5
5
  platform: ruby
6
6
  authors:
7
7
  - David Heinemeier Hansson
8
- autorequire:
8
+ autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2021-02-17 00:00:00.000000000 Z
11
+ date: 2021-03-26 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: activesupport
@@ -16,84 +16,84 @@ dependencies:
16
16
  requirements:
17
17
  - - '='
18
18
  - !ruby/object:Gem::Version
19
- version: 6.1.3
19
+ version: 6.1.3.1
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.3
26
+ version: 6.1.3.1
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.3
33
+ version: 6.1.3.1
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.3
40
+ version: 6.1.3.1
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.3
47
+ version: 6.1.3.1
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.3
54
+ version: 6.1.3.1
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.3
61
+ version: 6.1.3.1
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.3
68
+ version: 6.1.3.1
69
69
  - !ruby/object:Gem::Dependency
70
70
  name: marcel
71
71
  requirement: !ruby/object:Gem::Requirement
72
72
  requirements:
73
73
  - - "~>"
74
74
  - !ruby/object:Gem::Version
75
- version: 0.3.1
75
+ version: 1.0.0
76
76
  type: :runtime
77
77
  prerelease: false
78
78
  version_requirements: !ruby/object:Gem::Requirement
79
79
  requirements:
80
80
  - - "~>"
81
81
  - !ruby/object:Gem::Version
82
- version: 0.3.1
82
+ version: 1.0.0
83
83
  - !ruby/object:Gem::Dependency
84
- name: mimemagic
84
+ name: mini_mime
85
85
  requirement: !ruby/object:Gem::Requirement
86
86
  requirements:
87
87
  - - "~>"
88
88
  - !ruby/object:Gem::Version
89
- version: 0.3.2
89
+ version: 1.0.2
90
90
  type: :runtime
91
91
  prerelease: false
92
92
  version_requirements: !ruby/object:Gem::Requirement
93
93
  requirements:
94
94
  - - "~>"
95
95
  - !ruby/object:Gem::Version
96
- version: 0.3.2
96
+ version: 1.0.2
97
97
  description: Attach cloud and local files in Rails applications.
98
98
  email: david@loudthinking.com
99
99
  executables: []
@@ -187,11 +187,11 @@ licenses:
187
187
  - MIT
188
188
  metadata:
189
189
  bug_tracker_uri: https://github.com/rails/rails/issues
190
- changelog_uri: https://github.com/rails/rails/blob/v6.1.3/activestorage/CHANGELOG.md
191
- documentation_uri: https://api.rubyonrails.org/v6.1.3/
190
+ changelog_uri: https://github.com/rails/rails/blob/v6.1.3.1/activestorage/CHANGELOG.md
191
+ documentation_uri: https://api.rubyonrails.org/v6.1.3.1/
192
192
  mailing_list_uri: https://discuss.rubyonrails.org/c/rubyonrails-talk
193
- source_code_uri: https://github.com/rails/rails/tree/v6.1.3/activestorage
194
- post_install_message:
193
+ source_code_uri: https://github.com/rails/rails/tree/v6.1.3.1/activestorage
194
+ post_install_message:
195
195
  rdoc_options: []
196
196
  require_paths:
197
197
  - lib
@@ -206,8 +206,8 @@ required_rubygems_version: !ruby/object:Gem::Requirement
206
206
  - !ruby/object:Gem::Version
207
207
  version: '0'
208
208
  requirements: []
209
- rubygems_version: 3.2.3
210
- signing_key:
209
+ rubygems_version: 3.1.2
210
+ signing_key:
211
211
  specification_version: 4
212
212
  summary: Local and cloud file storage framework.
213
213
  test_files: []