activestorage 6.1.4.7 → 6.1.6

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: 78649b7f2ca40b322750c583e72493acf680a1b7f32bb2c8a1e20eb69ebd1df8
4
- data.tar.gz: fe790afaf918cb57fedbfac741cb3f6baeed0e62a6cbb3854568ab1b8a1ab126
3
+ metadata.gz: 985aeed1b2150be57a83d7779240e61be0b36689b342ccd710c8ba35c3f6c84d
4
+ data.tar.gz: 8334b4728bd51120473b7f720a20cda36df0f6f96acaf2e76c12d0eb94bf95a1
5
5
  SHA512:
6
- metadata.gz: 2e94e94a8f3b462d223a930446344d9f315de7881be67b841f45cecafb4ae11895308dea426a4b073dd8d9495ed6eda7ad53b9051d8c2ba1a24ec40319069ab3
7
- data.tar.gz: 527abfc288dfa20d5e24224bc50580f0f2b65f2e5273be729b914976a5cb649dadfab7428bc0a6eac0aa76e331bd6a10b6002f7d0e1a17a60f1741e259749904
6
+ metadata.gz: 5227ab769b5adff20f44dc3bca81e3eca7e72fe589d0dbec32be507a57bb6f285d55289934340214ee692d8a38ff421e59658c9b60c6da5ddee96336eed688ab
7
+ data.tar.gz: c3490ed2c45b821f619d6837f9adffbc43c854d953bf43e29c0092452819c53a95ed87b5f45c3fed6e0f169070b6532f4bbb85cbc5bf64e8d1fc4cf90df2ca63
data/CHANGELOG.md CHANGED
@@ -1,3 +1,17 @@
1
+ ## Rails 6.1.5.1 (April 26, 2022) ##
2
+
3
+ * No changes.
4
+
5
+
6
+ ## Rails 6.1.5 (March 09, 2022) ##
7
+
8
+ * Attachments can be deleted after their association is no longer defined.
9
+
10
+ Fixes #42514
11
+
12
+ *Don Sisco*
13
+
14
+
1
15
  ## Rails 6.1.4.7 (March 08, 2022) ##
2
16
 
3
17
  * Added image transformation validation via configurable allow-list.
@@ -47,7 +61,7 @@
47
61
 
48
62
  * Fix Active Storage update task when running in an engine.
49
63
 
50
- Justin Malčić*
64
+ *Justin Malčić*
51
65
 
52
66
  * Don't raise an error if the mime type is not recognized.
53
67
 
data/MIT-LICENSE CHANGED
@@ -1,4 +1,4 @@
1
- Copyright (c) 2017-2020 David Heinemeier Hansson, Basecamp
1
+ Copyright (c) 2017-2022 David Heinemeier Hansson, Basecamp
2
2
 
3
3
  Permission is hereby granted, free of charge, to any person obtaining
4
4
  a copy of this software and associated documentation files (the
@@ -51,7 +51,7 @@ class ActiveStorage::Attachment < ActiveStorage::Record
51
51
  end
52
52
 
53
53
  def dependent
54
- record.attachment_reflections[name]&.options[:dependent]
54
+ record.attachment_reflections[name]&.options&.fetch(:dependent, nil)
55
55
  end
56
56
  end
57
57
 
@@ -4,7 +4,7 @@
4
4
  # These variants are used to create thumbnails, fixed-size avatars, or any other derivative image from the
5
5
  # original.
6
6
  #
7
- # Variants rely on {ImageProcessing}[https://github.com/janko-m/image_processing] gem for the actual transformations
7
+ # Variants rely on {ImageProcessing}[https://github.com/janko/image_processing] gem for the actual transformations
8
8
  # of the file, so you must add <tt>gem "image_processing"</tt> to your Gemfile if you wish to use variants. By
9
9
  # default, images will be processed with {ImageMagick}[http://imagemagick.org] using the
10
10
  # {MiniMagick}[https://github.com/minimagick/minimagick] gem, but you can also switch to the
@@ -46,9 +46,9 @@
46
46
  #
47
47
  # Visit the following links for a list of available ImageProcessing commands and ImageMagick/libvips operations:
48
48
  #
49
- # * {ImageProcessing::MiniMagick}[https://github.com/janko-m/image_processing/blob/master/doc/minimagick.md#methods]
49
+ # * {ImageProcessing::MiniMagick}[https://github.com/janko/image_processing/blob/master/doc/minimagick.md#methods]
50
50
  # * {ImageMagick reference}[https://www.imagemagick.org/script/mogrify.php]
51
- # * {ImageProcessing::Vips}[https://github.com/janko-m/image_processing/blob/master/doc/vips.md#methods]
51
+ # * {ImageProcessing::Vips}[https://github.com/janko/image_processing/blob/master/doc/vips.md#methods]
52
52
  # * {ruby-vips reference}[http://www.rubydoc.info/gems/ruby-vips/Vips/Image]
53
53
  class ActiveStorage::Variant
54
54
  attr_reader :blob, :variation
@@ -10,7 +10,7 @@ require "mini_mime"
10
10
  #
11
11
  # ActiveStorage::Variation.new(resize_to_limit: [100, 100], monochrome: true, trim: true, rotate: "-90")
12
12
  #
13
- # The options map directly to {ImageProcessing}[https://github.com/janko-m/image_processing] commands.
13
+ # The options map directly to {ImageProcessing}[https://github.com/janko/image_processing] commands.
14
14
  class ActiveStorage::Variation
15
15
  attr_reader :transformations
16
16
 
@@ -73,20 +73,6 @@ module ActiveStorage
73
73
  application/pdf
74
74
  )
75
75
 
76
- default_unsupported_image_processing_arguments = %w(
77
- -debug
78
- -display
79
- -distribute-cache
80
- -help
81
- -path
82
- -print
83
- -set
84
- -verbose
85
- -version
86
- -write
87
- -write-mask
88
- )
89
-
90
76
  config.eager_load_namespaces << ActiveStorage
91
77
 
92
78
  initializer "active_storage.configs" do
@@ -100,8 +86,20 @@ module ActiveStorage
100
86
  ActiveStorage.draw_routes = app.config.active_storage.draw_routes != false
101
87
  ActiveStorage.resolve_model_to_route = app.config.active_storage.resolve_model_to_route || :rails_storage_redirect
102
88
 
103
- ActiveStorage.supported_image_processing_methods = app.config.active_storage.supported_image_processing_methods || []
104
- ActiveStorage.unsupported_image_processing_arguments = app.config.active_storage.unsupported_image_processing_arguments || default_unsupported_image_processing_arguments
89
+ ActiveStorage.supported_image_processing_methods += app.config.active_storage.supported_image_processing_methods || []
90
+ ActiveStorage.unsupported_image_processing_arguments = app.config.active_storage.unsupported_image_processing_arguments || %w(
91
+ -debug
92
+ -display
93
+ -distribute-cache
94
+ -help
95
+ -path
96
+ -print
97
+ -set
98
+ -verbose
99
+ -version
100
+ -write
101
+ -write-mask
102
+ )
105
103
 
106
104
  ActiveStorage.variable_content_types = app.config.active_storage.variable_content_types || []
107
105
  ActiveStorage.web_image_content_types = app.config.active_storage.web_image_content_types || []
@@ -9,8 +9,8 @@ module ActiveStorage
9
9
  module VERSION
10
10
  MAJOR = 6
11
11
  MINOR = 1
12
- TINY = 4
13
- PRE = "7"
12
+ TINY = 6
13
+ PRE = nil
14
14
 
15
15
  STRING = [MAJOR, MINOR, TINY, PRE].compact.join(".")
16
16
  end
@@ -1,5 +1,7 @@
1
1
  # frozen_string_literal: true
2
2
 
3
+ require "shellwords"
4
+
3
5
  module ActiveStorage
4
6
  class Previewer::VideoPreviewer < Previewer
5
7
  class << self
@@ -15,297 +15,6 @@ module ActiveStorage
15
15
  private
16
16
  class UnsupportedImageProcessingMethod < StandardError; end
17
17
  class UnsupportedImageProcessingArgument < StandardError; end
18
- SUPPORTED_IMAGE_PROCESSING_METHODS = [
19
- "adaptive_blur",
20
- "adaptive_resize",
21
- "adaptive_sharpen",
22
- "adjoin",
23
- "affine",
24
- "alpha",
25
- "annotate",
26
- "antialias",
27
- "append",
28
- "apply",
29
- "attenuate",
30
- "authenticate",
31
- "auto_gamma",
32
- "auto_level",
33
- "auto_orient",
34
- "auto_threshold",
35
- "backdrop",
36
- "background",
37
- "bench",
38
- "bias",
39
- "bilateral_blur",
40
- "black_point_compensation",
41
- "black_threshold",
42
- "blend",
43
- "blue_primary",
44
- "blue_shift",
45
- "blur",
46
- "border",
47
- "bordercolor",
48
- "borderwidth",
49
- "brightness_contrast",
50
- "cache",
51
- "canny",
52
- "caption",
53
- "channel",
54
- "channel_fx",
55
- "charcoal",
56
- "chop",
57
- "clahe",
58
- "clamp",
59
- "clip",
60
- "clip_path",
61
- "clone",
62
- "clut",
63
- "coalesce",
64
- "colorize",
65
- "colormap",
66
- "color_matrix",
67
- "colors",
68
- "colorspace",
69
- "colourspace",
70
- "color_threshold",
71
- "combine",
72
- "combine_options",
73
- "comment",
74
- "compare",
75
- "complex",
76
- "compose",
77
- "composite",
78
- "compress",
79
- "connected_components",
80
- "contrast",
81
- "contrast_stretch",
82
- "convert",
83
- "convolve",
84
- "copy",
85
- "crop",
86
- "cycle",
87
- "deconstruct",
88
- "define",
89
- "delay",
90
- "delete",
91
- "density",
92
- "depth",
93
- "descend",
94
- "deskew",
95
- "despeckle",
96
- "direction",
97
- "displace",
98
- "dispose",
99
- "dissimilarity_threshold",
100
- "dissolve",
101
- "distort",
102
- "dither",
103
- "draw",
104
- "duplicate",
105
- "edge",
106
- "emboss",
107
- "encoding",
108
- "endian",
109
- "enhance",
110
- "equalize",
111
- "evaluate",
112
- "evaluate_sequence",
113
- "extent",
114
- "extract",
115
- "family",
116
- "features",
117
- "fft",
118
- "fill",
119
- "filter",
120
- "flatten",
121
- "flip",
122
- "floodfill",
123
- "flop",
124
- "font",
125
- "foreground",
126
- "format",
127
- "frame",
128
- "function",
129
- "fuzz",
130
- "fx",
131
- "gamma",
132
- "gaussian_blur",
133
- "geometry",
134
- "gravity",
135
- "grayscale",
136
- "green_primary",
137
- "hald_clut",
138
- "highlight_color",
139
- "hough_lines",
140
- "iconGeometry",
141
- "iconic",
142
- "identify",
143
- "ift",
144
- "illuminant",
145
- "immutable",
146
- "implode",
147
- "insert",
148
- "intensity",
149
- "intent",
150
- "interlace",
151
- "interline_spacing",
152
- "interpolate",
153
- "interpolative_resize",
154
- "interword_spacing",
155
- "kerning",
156
- "kmeans",
157
- "kuwahara",
158
- "label",
159
- "lat",
160
- "layers",
161
- "level",
162
- "level_colors",
163
- "limit",
164
- "limits",
165
- "linear_stretch",
166
- "linewidth",
167
- "liquid_rescale",
168
- "list",
169
- "loader",
170
- "log",
171
- "loop",
172
- "lowlight_color",
173
- "magnify",
174
- "map",
175
- "mattecolor",
176
- "median",
177
- "mean_shift",
178
- "metric",
179
- "mode",
180
- "modulate",
181
- "moments",
182
- "monitor",
183
- "monochrome",
184
- "morph",
185
- "morphology",
186
- "mosaic",
187
- "motion_blur",
188
- "name",
189
- "negate",
190
- "noise",
191
- "normalize",
192
- "opaque",
193
- "ordered_dither",
194
- "orient",
195
- "page",
196
- "paint",
197
- "pause",
198
- "perceptible",
199
- "ping",
200
- "pointsize",
201
- "polaroid",
202
- "poly",
203
- "posterize",
204
- "precision",
205
- "preview",
206
- "process",
207
- "quality",
208
- "quantize",
209
- "quiet",
210
- "radial_blur",
211
- "raise",
212
- "random_threshold",
213
- "range_threshold",
214
- "red_primary",
215
- "regard_warnings",
216
- "region",
217
- "remote",
218
- "render",
219
- "repage",
220
- "resample",
221
- "resize",
222
- "resize_to_fill",
223
- "resize_to_fit",
224
- "resize_to_limit",
225
- "resize_and_pad",
226
- "respect_parentheses",
227
- "reverse",
228
- "roll",
229
- "rotate",
230
- "sample",
231
- "sampling_factor",
232
- "saver",
233
- "scale",
234
- "scene",
235
- "screen",
236
- "seed",
237
- "segment",
238
- "selective_blur",
239
- "separate",
240
- "sepia_tone",
241
- "shade",
242
- "shadow",
243
- "shared_memory",
244
- "sharpen",
245
- "shave",
246
- "shear",
247
- "sigmoidal_contrast",
248
- "silent",
249
- "similarity_threshold",
250
- "size",
251
- "sketch",
252
- "smush",
253
- "snaps",
254
- "solarize",
255
- "sort_pixels",
256
- "sparse_color",
257
- "splice",
258
- "spread",
259
- "statistic",
260
- "stegano",
261
- "stereo",
262
- "storage_type",
263
- "stretch",
264
- "strip",
265
- "stroke",
266
- "strokewidth",
267
- "style",
268
- "subimage_search",
269
- "swap",
270
- "swirl",
271
- "synchronize",
272
- "taint",
273
- "text_font",
274
- "threshold",
275
- "thumbnail",
276
- "tile_offset",
277
- "tint",
278
- "title",
279
- "transform",
280
- "transparent",
281
- "transparent_color",
282
- "transpose",
283
- "transverse",
284
- "treedepth",
285
- "trim",
286
- "type",
287
- "undercolor",
288
- "unique_colors",
289
- "units",
290
- "unsharp",
291
- "update",
292
- "valid_image",
293
- "view",
294
- "vignette",
295
- "virtual_pixel",
296
- "visual",
297
- "watermark",
298
- "wave",
299
- "wavelet_denoise",
300
- "weight",
301
- "white_balance",
302
- "white_point",
303
- "white_threshold",
304
- "window",
305
- "window_group"
306
- ].concat(ActiveStorage.supported_image_processing_methods)
307
-
308
- UNSUPPORTED_IMAGE_PROCESSING_ARGUMENTS = ActiveStorage.unsupported_image_processing_arguments
309
18
 
310
19
  def process(file, format:)
311
20
  processor.
@@ -340,9 +49,9 @@ module ActiveStorage
340
49
  end
341
50
 
342
51
  def validate_transformation(name, argument)
343
- method_name = name.to_s.gsub("-","_")
52
+ method_name = name.to_s.tr("-", "_")
344
53
 
345
- unless SUPPORTED_IMAGE_PROCESSING_METHODS.any? { |method| method_name == method }
54
+ unless ActiveStorage.supported_image_processing_methods.any? { |method| method_name == method }
346
55
  raise UnsupportedImageProcessingMethod, <<~ERROR.squish
347
56
  One or more of the provided transformation methods is not supported.
348
57
  ERROR
@@ -360,7 +69,11 @@ module ActiveStorage
360
69
  end
361
70
 
362
71
  def validate_arg_string(argument)
363
- if UNSUPPORTED_IMAGE_PROCESSING_ARGUMENTS.any? { |bad_arg| argument.to_s.downcase.include?(bad_arg) }; raise UnsupportedImageProcessingArgument end
72
+ unsupported_arguments = ActiveStorage.unsupported_image_processing_arguments.any? do |bad_arg|
73
+ argument.to_s.downcase.include?(bad_arg)
74
+ end
75
+
76
+ raise UnsupportedImageProcessingArgument if unsupported_arguments
364
77
  end
365
78
 
366
79
  def validate_arg_array(argument)
@@ -1,7 +1,7 @@
1
1
  # frozen_string_literal: true
2
2
 
3
3
  #--
4
- # Copyright (c) 2017-2020 David Heinemeier Hansson, Basecamp
4
+ # Copyright (c) 2017-2022 David Heinemeier Hansson, Basecamp
5
5
  #
6
6
  # Permission is hereby granted, free of charge, to any person obtaining
7
7
  # a copy of this software and associated documentation files (the
@@ -58,7 +58,295 @@ module ActiveStorage
58
58
  mattr_accessor :content_types_to_serve_as_binary, default: []
59
59
  mattr_accessor :content_types_allowed_inline, default: []
60
60
 
61
- mattr_accessor :supported_image_processing_methods, default: []
61
+ mattr_accessor :supported_image_processing_methods, default: [
62
+ "adaptive_blur",
63
+ "adaptive_resize",
64
+ "adaptive_sharpen",
65
+ "adjoin",
66
+ "affine",
67
+ "alpha",
68
+ "annotate",
69
+ "antialias",
70
+ "append",
71
+ "apply",
72
+ "attenuate",
73
+ "authenticate",
74
+ "auto_gamma",
75
+ "auto_level",
76
+ "auto_orient",
77
+ "auto_threshold",
78
+ "backdrop",
79
+ "background",
80
+ "bench",
81
+ "bias",
82
+ "bilateral_blur",
83
+ "black_point_compensation",
84
+ "black_threshold",
85
+ "blend",
86
+ "blue_primary",
87
+ "blue_shift",
88
+ "blur",
89
+ "border",
90
+ "bordercolor",
91
+ "borderwidth",
92
+ "brightness_contrast",
93
+ "cache",
94
+ "canny",
95
+ "caption",
96
+ "channel",
97
+ "channel_fx",
98
+ "charcoal",
99
+ "chop",
100
+ "clahe",
101
+ "clamp",
102
+ "clip",
103
+ "clip_path",
104
+ "clone",
105
+ "clut",
106
+ "coalesce",
107
+ "colorize",
108
+ "colormap",
109
+ "color_matrix",
110
+ "colors",
111
+ "colorspace",
112
+ "colourspace",
113
+ "color_threshold",
114
+ "combine",
115
+ "combine_options",
116
+ "comment",
117
+ "compare",
118
+ "complex",
119
+ "compose",
120
+ "composite",
121
+ "compress",
122
+ "connected_components",
123
+ "contrast",
124
+ "contrast_stretch",
125
+ "convert",
126
+ "convolve",
127
+ "copy",
128
+ "crop",
129
+ "cycle",
130
+ "deconstruct",
131
+ "define",
132
+ "delay",
133
+ "delete",
134
+ "density",
135
+ "depth",
136
+ "descend",
137
+ "deskew",
138
+ "despeckle",
139
+ "direction",
140
+ "displace",
141
+ "dispose",
142
+ "dissimilarity_threshold",
143
+ "dissolve",
144
+ "distort",
145
+ "dither",
146
+ "draw",
147
+ "duplicate",
148
+ "edge",
149
+ "emboss",
150
+ "encoding",
151
+ "endian",
152
+ "enhance",
153
+ "equalize",
154
+ "evaluate",
155
+ "evaluate_sequence",
156
+ "extent",
157
+ "extract",
158
+ "family",
159
+ "features",
160
+ "fft",
161
+ "fill",
162
+ "filter",
163
+ "flatten",
164
+ "flip",
165
+ "floodfill",
166
+ "flop",
167
+ "font",
168
+ "foreground",
169
+ "format",
170
+ "frame",
171
+ "function",
172
+ "fuzz",
173
+ "fx",
174
+ "gamma",
175
+ "gaussian_blur",
176
+ "geometry",
177
+ "gravity",
178
+ "grayscale",
179
+ "green_primary",
180
+ "hald_clut",
181
+ "highlight_color",
182
+ "hough_lines",
183
+ "iconGeometry",
184
+ "iconic",
185
+ "identify",
186
+ "ift",
187
+ "illuminant",
188
+ "immutable",
189
+ "implode",
190
+ "insert",
191
+ "intensity",
192
+ "intent",
193
+ "interlace",
194
+ "interline_spacing",
195
+ "interpolate",
196
+ "interpolative_resize",
197
+ "interword_spacing",
198
+ "kerning",
199
+ "kmeans",
200
+ "kuwahara",
201
+ "label",
202
+ "lat",
203
+ "layers",
204
+ "level",
205
+ "level_colors",
206
+ "limit",
207
+ "limits",
208
+ "linear_stretch",
209
+ "linewidth",
210
+ "liquid_rescale",
211
+ "list",
212
+ "loader",
213
+ "log",
214
+ "loop",
215
+ "lowlight_color",
216
+ "magnify",
217
+ "map",
218
+ "mattecolor",
219
+ "median",
220
+ "mean_shift",
221
+ "metric",
222
+ "mode",
223
+ "modulate",
224
+ "moments",
225
+ "monitor",
226
+ "monochrome",
227
+ "morph",
228
+ "morphology",
229
+ "mosaic",
230
+ "motion_blur",
231
+ "name",
232
+ "negate",
233
+ "noise",
234
+ "normalize",
235
+ "opaque",
236
+ "ordered_dither",
237
+ "orient",
238
+ "page",
239
+ "paint",
240
+ "pause",
241
+ "perceptible",
242
+ "ping",
243
+ "pointsize",
244
+ "polaroid",
245
+ "poly",
246
+ "posterize",
247
+ "precision",
248
+ "preview",
249
+ "process",
250
+ "quality",
251
+ "quantize",
252
+ "quiet",
253
+ "radial_blur",
254
+ "raise",
255
+ "random_threshold",
256
+ "range_threshold",
257
+ "red_primary",
258
+ "regard_warnings",
259
+ "region",
260
+ "remote",
261
+ "render",
262
+ "repage",
263
+ "resample",
264
+ "resize",
265
+ "resize_to_fill",
266
+ "resize_to_fit",
267
+ "resize_to_limit",
268
+ "resize_and_pad",
269
+ "respect_parentheses",
270
+ "reverse",
271
+ "roll",
272
+ "rotate",
273
+ "sample",
274
+ "sampling_factor",
275
+ "saver",
276
+ "scale",
277
+ "scene",
278
+ "screen",
279
+ "seed",
280
+ "segment",
281
+ "selective_blur",
282
+ "separate",
283
+ "sepia_tone",
284
+ "shade",
285
+ "shadow",
286
+ "shared_memory",
287
+ "sharpen",
288
+ "shave",
289
+ "shear",
290
+ "sigmoidal_contrast",
291
+ "silent",
292
+ "similarity_threshold",
293
+ "size",
294
+ "sketch",
295
+ "smush",
296
+ "snaps",
297
+ "solarize",
298
+ "sort_pixels",
299
+ "sparse_color",
300
+ "splice",
301
+ "spread",
302
+ "statistic",
303
+ "stegano",
304
+ "stereo",
305
+ "storage_type",
306
+ "stretch",
307
+ "strip",
308
+ "stroke",
309
+ "strokewidth",
310
+ "style",
311
+ "subimage_search",
312
+ "swap",
313
+ "swirl",
314
+ "synchronize",
315
+ "taint",
316
+ "text_font",
317
+ "threshold",
318
+ "thumbnail",
319
+ "tile_offset",
320
+ "tint",
321
+ "title",
322
+ "transform",
323
+ "transparent",
324
+ "transparent_color",
325
+ "transpose",
326
+ "transverse",
327
+ "treedepth",
328
+ "trim",
329
+ "type",
330
+ "undercolor",
331
+ "unique_colors",
332
+ "units",
333
+ "unsharp",
334
+ "update",
335
+ "valid_image",
336
+ "view",
337
+ "vignette",
338
+ "virtual_pixel",
339
+ "visual",
340
+ "watermark",
341
+ "wave",
342
+ "wavelet_denoise",
343
+ "weight",
344
+ "white_balance",
345
+ "white_point",
346
+ "white_threshold",
347
+ "window",
348
+ "window_group"
349
+ ]
62
350
  mattr_accessor :unsupported_image_processing_arguments
63
351
 
64
352
  mattr_accessor :service_urls_expire_in, default: 5.minutes
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.4.7
4
+ version: 6.1.6
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: 2022-03-08 00:00:00.000000000 Z
11
+ date: 2022-05-09 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: activesupport
@@ -16,70 +16,70 @@ dependencies:
16
16
  requirements:
17
17
  - - '='
18
18
  - !ruby/object:Gem::Version
19
- version: 6.1.4.7
19
+ version: 6.1.6
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.4.7
26
+ version: 6.1.6
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.4.7
33
+ version: 6.1.6
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.4.7
40
+ version: 6.1.6
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.4.7
47
+ version: 6.1.6
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.4.7
54
+ version: 6.1.6
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.4.7
61
+ version: 6.1.6
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.4.7
68
+ version: 6.1.6
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: 1.0.0
75
+ version: '1.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: 1.0.0
82
+ version: '1.0'
83
83
  - !ruby/object:Gem::Dependency
84
84
  name: mini_mime
85
85
  requirement: !ruby/object:Gem::Requirement
@@ -188,10 +188,11 @@ licenses:
188
188
  - MIT
189
189
  metadata:
190
190
  bug_tracker_uri: https://github.com/rails/rails/issues
191
- changelog_uri: https://github.com/rails/rails/blob/v6.1.4.7/activestorage/CHANGELOG.md
192
- documentation_uri: https://api.rubyonrails.org/v6.1.4.7/
191
+ changelog_uri: https://github.com/rails/rails/blob/v6.1.6/activestorage/CHANGELOG.md
192
+ documentation_uri: https://api.rubyonrails.org/v6.1.6/
193
193
  mailing_list_uri: https://discuss.rubyonrails.org/c/rubyonrails-talk
194
- source_code_uri: https://github.com/rails/rails/tree/v6.1.4.7/activestorage
194
+ source_code_uri: https://github.com/rails/rails/tree/v6.1.6/activestorage
195
+ rubygems_mfa_required: 'true'
195
196
  post_install_message:
196
197
  rdoc_options: []
197
198
  require_paths:
@@ -207,7 +208,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
207
208
  - !ruby/object:Gem::Version
208
209
  version: '0'
209
210
  requirements: []
210
- rubygems_version: 3.1.6
211
+ rubygems_version: 3.3.7
211
212
  signing_key:
212
213
  specification_version: 4
213
214
  summary: Local and cloud file storage framework.