activestorage 6.0.6.1 → 6.1.7.3
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 +4 -4
- data/CHANGELOG.md +215 -167
- data/MIT-LICENSE +1 -1
- data/README.md +35 -3
- data/app/controllers/active_storage/base_controller.rb +11 -0
- data/app/controllers/active_storage/blobs/proxy_controller.rb +14 -0
- data/app/controllers/active_storage/{blobs_controller.rb → blobs/redirect_controller.rb} +2 -2
- data/app/controllers/active_storage/direct_uploads_controller.rb +1 -1
- data/app/controllers/active_storage/disk_controller.rb +8 -20
- data/app/controllers/active_storage/representations/base_controller.rb +14 -0
- data/app/controllers/active_storage/representations/proxy_controller.rb +13 -0
- data/app/controllers/active_storage/{representations_controller.rb → representations/redirect_controller.rb} +2 -4
- data/app/controllers/concerns/active_storage/file_server.rb +18 -0
- data/app/controllers/concerns/active_storage/set_blob.rb +1 -1
- data/app/controllers/concerns/active_storage/set_current.rb +2 -2
- data/app/controllers/concerns/active_storage/set_headers.rb +12 -0
- data/app/jobs/active_storage/mirror_job.rb +15 -0
- data/app/models/active_storage/attachment.rb +19 -11
- data/app/models/active_storage/blob/analyzable.rb +6 -2
- data/app/models/active_storage/blob/identifiable.rb +7 -6
- data/app/models/active_storage/blob/representable.rb +34 -4
- data/app/models/active_storage/blob.rb +122 -57
- data/app/models/active_storage/preview.rb +31 -10
- data/app/models/active_storage/record.rb +7 -0
- data/app/models/active_storage/variant.rb +31 -44
- data/app/models/active_storage/variant_record.rb +8 -0
- data/app/models/active_storage/variant_with_record.rb +54 -0
- data/app/models/active_storage/variation.rb +26 -21
- data/config/routes.rb +58 -8
- data/db/migrate/20170806125915_create_active_storage_tables.rb +30 -9
- data/db/update_migrate/20190112182829_add_service_name_to_active_storage_blobs.rb +21 -0
- data/db/update_migrate/20191206030411_create_active_storage_variant_records.rb +26 -0
- data/lib/active_storage/analyzer/image_analyzer.rb +3 -0
- data/lib/active_storage/analyzer/null_analyzer.rb +4 -0
- data/lib/active_storage/analyzer/video_analyzer.rb +14 -3
- data/lib/active_storage/analyzer.rb +6 -0
- data/lib/active_storage/attached/changes/create_many.rb +1 -0
- data/lib/active_storage/attached/changes/create_one.rb +17 -4
- data/lib/active_storage/attached/many.rb +4 -3
- data/lib/active_storage/attached/model.rb +67 -14
- data/lib/active_storage/attached/one.rb +4 -3
- data/lib/active_storage/engine.rb +41 -43
- data/lib/active_storage/errors.rb +3 -0
- data/lib/active_storage/gem_version.rb +3 -3
- data/lib/active_storage/log_subscriber.rb +6 -0
- data/lib/active_storage/previewer/mupdf_previewer.rb +3 -3
- data/lib/active_storage/previewer/poppler_pdf_previewer.rb +2 -2
- data/lib/active_storage/previewer/video_previewer.rb +5 -3
- data/lib/active_storage/previewer.rb +13 -3
- data/lib/active_storage/service/azure_storage_service.rb +40 -35
- data/lib/active_storage/service/configurator.rb +3 -1
- data/lib/active_storage/service/disk_service.rb +36 -31
- data/lib/active_storage/service/gcs_service.rb +18 -16
- data/lib/active_storage/service/mirror_service.rb +31 -7
- data/lib/active_storage/service/registry.rb +32 -0
- data/lib/active_storage/service/s3_service.rb +51 -23
- data/lib/active_storage/service.rb +35 -7
- data/lib/active_storage/transformers/image_processing_transformer.rb +21 -308
- data/lib/active_storage/transformers/transformer.rb +0 -3
- data/lib/active_storage.rb +301 -7
- data/lib/tasks/activestorage.rake +5 -1
- metadata +53 -16
- data/db/update_migrate/20180723000244_add_foreign_key_constraint_to_active_storage_attachments_for_blob_id.rb +0 -9
- data/lib/active_storage/downloading.rb +0 -47
- data/lib/active_storage/transformers/mini_magick_transformer.rb +0 -38
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 59e5cc83813a0136920a9a585e16b2b644c84e63311d6eb21741d04bd7560b03
|
4
|
+
data.tar.gz: 166529db9627032b8f9d8a47370c79a578465233a06cd315790b244c7010408d
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 7667868123f98d6364ee53959eefa994e76b3dc39d73064440a90130262559b5295d128c175fed1f893a5ed60d700c6933c7607a871fefd268c13f64611942a2
|
7
|
+
data.tar.gz: 95d296b91d52ff8b8ac28b651d1a59e7157586d461364fdb317cd84d67a9c12739d2ccfe36c85198b49078c0f5bf6adbe111ee218afc4dab4d6ef3ed22453530
|
data/CHANGELOG.md
CHANGED
@@ -1,29 +1,49 @@
|
|
1
|
-
## Rails 6.
|
1
|
+
## Rails 6.1.7.3 (March 13, 2023) ##
|
2
2
|
|
3
3
|
* No changes.
|
4
4
|
|
5
5
|
|
6
|
-
## Rails 6.
|
6
|
+
## Rails 6.1.7.2 (January 24, 2023) ##
|
7
7
|
|
8
8
|
* No changes.
|
9
9
|
|
10
10
|
|
11
|
-
## Rails 6.
|
11
|
+
## Rails 6.1.7.1 (January 17, 2023) ##
|
12
12
|
|
13
13
|
* No changes.
|
14
14
|
|
15
15
|
|
16
|
-
## Rails 6.
|
16
|
+
## Rails 6.1.7 (September 09, 2022) ##
|
17
|
+
|
18
|
+
* Respect Active Record's primary_key_type in Active Storage migrations. Backported from 7.0.
|
19
|
+
|
20
|
+
*fatkodima*
|
21
|
+
|
22
|
+
## Rails 6.1.6.1 (July 12, 2022) ##
|
23
|
+
|
24
|
+
* No changes.
|
25
|
+
|
26
|
+
|
27
|
+
## Rails 6.1.6 (May 09, 2022) ##
|
17
28
|
|
18
29
|
* No changes.
|
19
30
|
|
20
31
|
|
21
|
-
## Rails 6.
|
32
|
+
## Rails 6.1.5.1 (April 26, 2022) ##
|
22
33
|
|
23
34
|
* No changes.
|
24
35
|
|
25
36
|
|
26
|
-
## Rails 6.
|
37
|
+
## Rails 6.1.5 (March 09, 2022) ##
|
38
|
+
|
39
|
+
* Attachments can be deleted after their association is no longer defined.
|
40
|
+
|
41
|
+
Fixes #42514
|
42
|
+
|
43
|
+
*Don Sisco*
|
44
|
+
|
45
|
+
|
46
|
+
## Rails 6.1.4.7 (March 08, 2022) ##
|
27
47
|
|
28
48
|
* Added image transformation validation via configurable allow-list.
|
29
49
|
|
@@ -33,311 +53,339 @@
|
|
33
53
|
[CVE-2022-21831]
|
34
54
|
|
35
55
|
|
36
|
-
## Rails 6.
|
56
|
+
## Rails 6.1.4.6 (February 11, 2022) ##
|
37
57
|
|
38
58
|
* No changes.
|
39
59
|
|
40
60
|
|
41
|
-
## Rails 6.
|
61
|
+
## Rails 6.1.4.5 (February 11, 2022) ##
|
42
62
|
|
43
63
|
* No changes.
|
44
64
|
|
45
65
|
|
46
|
-
## Rails 6.
|
66
|
+
## Rails 6.1.4.4 (December 15, 2021) ##
|
47
67
|
|
48
68
|
* No changes.
|
49
69
|
|
50
70
|
|
51
|
-
## Rails 6.
|
71
|
+
## Rails 6.1.4.3 (December 14, 2021) ##
|
52
72
|
|
53
73
|
* No changes.
|
54
74
|
|
55
75
|
|
56
|
-
## Rails 6.
|
76
|
+
## Rails 6.1.4.2 (December 14, 2021) ##
|
57
77
|
|
58
78
|
* No changes.
|
59
79
|
|
60
80
|
|
61
|
-
## Rails 6.
|
81
|
+
## Rails 6.1.4.1 (August 19, 2021) ##
|
62
82
|
|
63
83
|
* No changes.
|
64
84
|
|
65
85
|
|
66
|
-
## Rails 6.
|
67
|
-
|
68
|
-
* The Poppler PDF previewer renders a preview image using the original
|
69
|
-
document's crop box rather than its media box, hiding print margins. This
|
70
|
-
matches the behavior of the MuPDF previewer.
|
71
|
-
|
72
|
-
*Vincent Robert*
|
86
|
+
## Rails 6.1.4 (June 24, 2021) ##
|
73
87
|
|
88
|
+
* The parameters sent to `ffmpeg` for generating a video preview image are now
|
89
|
+
configurable under `config.active_storage.video_preview_arguments`.
|
74
90
|
|
75
|
-
|
91
|
+
*Brendon Muir*
|
76
92
|
|
77
|
-
*
|
93
|
+
* Fix Active Storage update task when running in an engine.
|
78
94
|
|
95
|
+
*Justin Malčić*
|
79
96
|
|
80
|
-
|
97
|
+
* Don't raise an error if the mime type is not recognized.
|
81
98
|
|
82
|
-
|
83
|
-
mime types data.
|
99
|
+
Fixes #41777.
|
84
100
|
|
85
|
-
*
|
101
|
+
*Alex Ghiculescu*
|
86
102
|
|
103
|
+
* `ActiveStorage::PreviewError` is raised when a previewer is unable to generate a preview image.
|
87
104
|
|
88
|
-
|
105
|
+
*Alex Robbin*
|
89
106
|
|
90
|
-
*
|
107
|
+
* respond with 404 given invalid variation key when asking for representations.
|
91
108
|
|
109
|
+
*George Claghorn*
|
92
110
|
|
93
|
-
|
111
|
+
* `Blob` creation shouldn't crash if no service selected.
|
94
112
|
|
95
|
-
*
|
113
|
+
*Alex Ghiculescu*
|
96
114
|
|
97
115
|
|
98
|
-
## Rails 6.
|
116
|
+
## Rails 6.1.3.2 (May 05, 2021) ##
|
99
117
|
|
100
118
|
* No changes.
|
101
119
|
|
102
120
|
|
103
|
-
## Rails 6.
|
121
|
+
## Rails 6.1.3.1 (March 26, 2021) ##
|
104
122
|
|
105
|
-
*
|
123
|
+
* Marcel is upgraded to version 1.0.0 to avoid a dependency on GPL-licensed
|
124
|
+
mime types data.
|
106
125
|
|
126
|
+
*George Claghorn*
|
107
127
|
|
108
|
-
## Rails 6.0.3.1 (May 18, 2020) ##
|
109
128
|
|
110
|
-
|
129
|
+
## Rails 6.1.3 (February 17, 2021) ##
|
130
|
+
|
131
|
+
* No changes.
|
111
132
|
|
112
133
|
|
113
|
-
## Rails 6.
|
134
|
+
## Rails 6.1.2.1 (February 10, 2021) ##
|
114
135
|
|
115
136
|
* No changes.
|
116
137
|
|
117
138
|
|
118
|
-
## Rails 6.
|
139
|
+
## Rails 6.1.2 (February 09, 2021) ##
|
119
140
|
|
120
141
|
* No changes.
|
121
142
|
|
122
143
|
|
123
|
-
## Rails 6.
|
144
|
+
## Rails 6.1.1 (January 07, 2021) ##
|
124
145
|
|
125
|
-
*
|
146
|
+
* Fix S3 multipart uploads when threshold is larger than file.
|
126
147
|
|
148
|
+
*Matt Muller*
|
127
149
|
|
128
|
-
## Rails 6.0.2 (December 13, 2019) ##
|
129
150
|
|
130
|
-
|
151
|
+
## Rails 6.1.0 (December 09, 2020) ##
|
131
152
|
|
153
|
+
* Change default queue name of the analysis (`:active_storage_analysis`) and
|
154
|
+
purge (`:active_storage_purge`) jobs to be the job adapter's default (`:default`).
|
132
155
|
|
133
|
-
|
156
|
+
*Rafael Mendonça França*
|
134
157
|
|
135
|
-
* `
|
158
|
+
* Implement `strict_loading` on ActiveStorage associations.
|
136
159
|
|
137
|
-
*
|
160
|
+
*David Angulo*
|
138
161
|
|
139
|
-
*
|
140
|
-
This fixes that generated blob keys could silently collide, leading to
|
141
|
-
data loss.
|
162
|
+
* Remove deprecated support to pass `:combine_options` operations to `ActiveStorage::Transformers::ImageProcessing`.
|
142
163
|
|
143
|
-
*
|
164
|
+
*Rafael Mendonça França*
|
144
165
|
|
166
|
+
* Remove deprecated `ActiveStorage::Transformers::MiniMagickTransformer`.
|
145
167
|
|
146
|
-
|
168
|
+
*Rafael Mendonça França*
|
147
169
|
|
148
|
-
*
|
170
|
+
* Remove deprecated `config.active_storage.queue`.
|
149
171
|
|
172
|
+
*Rafael Mendonça França*
|
150
173
|
|
151
|
-
|
174
|
+
* Remove deprecated `ActiveStorage::Downloading`.
|
152
175
|
|
153
|
-
*
|
176
|
+
*Rafael Mendonça França*
|
154
177
|
|
178
|
+
* Add per-environment configuration support
|
155
179
|
|
156
|
-
|
180
|
+
*Pietro Moro*
|
157
181
|
|
158
|
-
*
|
182
|
+
* The Poppler PDF previewer renders a preview image using the original
|
183
|
+
document's crop box rather than its media box, hiding print margins. This
|
184
|
+
matches the behavior of the MuPDF previewer.
|
159
185
|
|
160
|
-
|
186
|
+
*Vincent Robert*
|
161
187
|
|
162
|
-
|
188
|
+
* Touch parent model when an attachment is purged.
|
163
189
|
|
164
|
-
*
|
190
|
+
*Víctor Pérez Rodríguez*
|
165
191
|
|
166
|
-
|
192
|
+
* Files can now be served by proxying them from the underlying storage service
|
193
|
+
instead of redirecting to a signed service URL. Use the
|
194
|
+
`rails_storage_proxy_path` and `_url` helpers to proxy an attached file:
|
167
195
|
|
196
|
+
```erb
|
197
|
+
<%= image_tag rails_storage_proxy_path(@user.avatar) %>
|
198
|
+
```
|
168
199
|
|
169
|
-
|
200
|
+
To proxy by default, set `config.active_storage.resolve_model_to_route`:
|
170
201
|
|
171
|
-
|
202
|
+
```ruby
|
203
|
+
# Proxy attached files instead.
|
204
|
+
config.active_storage.resolve_model_to_route = :rails_storage_proxy
|
205
|
+
```
|
172
206
|
|
207
|
+
```erb
|
208
|
+
<%= image_tag @user.avatar %>
|
209
|
+
```
|
173
210
|
|
174
|
-
|
211
|
+
To redirect to a signed service URL when the default file serving strategy
|
212
|
+
is set to proxying, use the `rails_storage_redirect_path` and `_url` helpers:
|
175
213
|
|
176
|
-
|
214
|
+
```erb
|
215
|
+
<%= image_tag rails_storage_redirect_path(@user.avatar) %>
|
216
|
+
```
|
177
217
|
|
218
|
+
*Jonathan Fleckenstein*
|
178
219
|
|
179
|
-
|
220
|
+
* Add `config.active_storage.web_image_content_types` to allow applications
|
221
|
+
to add content types (like `image/webp`) in which variants can be processed,
|
222
|
+
instead of letting those images be converted to the fallback PNG format.
|
180
223
|
|
181
|
-
*
|
182
|
-
[`activestorage`](https://www.npmjs.com/package/activestorage) to
|
183
|
-
[`@rails/activestorage`](https://www.npmjs.com/package/@rails/activestorage).
|
224
|
+
*Jeroen van Haperen*
|
184
225
|
|
185
|
-
|
226
|
+
* Add support for creating variants of `WebP` images out of the box.
|
186
227
|
|
187
|
-
*
|
188
|
-
queues analysis and purge jobs should use, respectively:
|
228
|
+
*Dino Maric*
|
189
229
|
|
190
|
-
|
191
|
-
* `config.active_storage.queues.purge`
|
230
|
+
* Only enqueue analysis jobs for blobs with non-null analyzer classes.
|
192
231
|
|
193
|
-
|
194
|
-
set, but it is deprecated and will be removed in Rails 6.1.
|
232
|
+
*Gannon McGibbon*
|
195
233
|
|
196
|
-
|
234
|
+
* Previews are created on the same service as the original blob.
|
197
235
|
|
198
|
-
*
|
236
|
+
*Peter Zhu*
|
199
237
|
|
200
|
-
|
238
|
+
* Remove unused `disposition` and `content_type` query parameters for `DiskService`.
|
201
239
|
|
202
|
-
*
|
203
|
-
collisions and undefined behavior with case-insensitive filesystems and
|
204
|
-
database indices.
|
240
|
+
*Peter Zhu*
|
205
241
|
|
206
|
-
|
242
|
+
* Use `DiskController` for both public and private files.
|
207
243
|
|
208
|
-
|
209
|
-
|
244
|
+
`DiskController` is able to handle multiple services by adding a
|
245
|
+
`service_name` field in the generated URL in `DiskService`.
|
210
246
|
|
211
|
-
*
|
247
|
+
*Peter Zhu*
|
212
248
|
|
213
|
-
*
|
249
|
+
* Variants are tracked in the database to avoid existence checks in the storage service.
|
214
250
|
|
215
|
-
*
|
251
|
+
*George Claghorn*
|
216
252
|
|
217
|
-
*
|
253
|
+
* Deprecate `service_url` methods in favour of `url`.
|
218
254
|
|
219
|
-
|
255
|
+
Deprecate `Variant#service_url` and `Preview#service_url` to instead use
|
256
|
+
`#url` method to be consistent with `Blob`.
|
220
257
|
|
221
|
-
*
|
258
|
+
*Peter Zhu*
|
222
259
|
|
223
|
-
|
260
|
+
* Permanent URLs for public storage blobs.
|
224
261
|
|
225
|
-
|
226
|
-
|
227
|
-
|
228
|
-
exception class.
|
262
|
+
Services can be configured in `config/storage.yml` with a new key
|
263
|
+
`public: true | false` to indicate whether a service holds public
|
264
|
+
blobs or private blobs. Public services will always return a permanent URL.
|
229
265
|
|
230
|
-
|
266
|
+
Deprecates `Blob#service_url` in favor of `Blob#url`.
|
231
267
|
|
232
|
-
*
|
233
|
-
the requested file is missing from the disk service. It previously raised
|
234
|
-
`Errno::ENOENT`.
|
268
|
+
*Peter Zhu*
|
235
269
|
|
236
|
-
|
270
|
+
* Make services aware of configuration names.
|
237
271
|
|
238
|
-
*
|
239
|
-
`ActiveStorage::FileNotFoundError` when the corresponding file is missing
|
240
|
-
from the storage service. Services translate service-specific missing object
|
241
|
-
exceptions (e.g. `Google::Cloud::NotFoundError` for the GCS service and
|
242
|
-
`Errno::ENOENT` for the disk service) into
|
243
|
-
`ActiveStorage::FileNotFoundError`.
|
272
|
+
*Gannon McGibbon*
|
244
273
|
|
245
|
-
|
274
|
+
* The `Content-Type` header is set on image variants when they're uploaded to third-party storage services.
|
246
275
|
|
247
|
-
*
|
248
|
-
controllers that can't inherit from `ActiveStorage::BaseController`.
|
276
|
+
*Kyle Ribordy*
|
249
277
|
|
250
|
-
|
278
|
+
* Allow storage services to be configured per attachment.
|
251
279
|
|
252
|
-
|
253
|
-
|
254
|
-
|
255
|
-
|
280
|
+
```ruby
|
281
|
+
class User < ActiveRecord::Base
|
282
|
+
has_one_attached :avatar, service: :s3
|
283
|
+
end
|
256
284
|
|
257
|
-
|
285
|
+
class Gallery < ActiveRecord::Base
|
286
|
+
has_many_attached :photos, service: :s3
|
287
|
+
end
|
288
|
+
```
|
258
289
|
|
259
|
-
*
|
260
|
-
is saved instead of immediately.
|
290
|
+
*Dmitry Tsepelev*
|
261
291
|
|
262
|
-
|
263
|
-
be stored:
|
292
|
+
* You can optionally provide a custom blob key when attaching a new file:
|
264
293
|
|
265
294
|
```ruby
|
266
|
-
|
295
|
+
user.avatar.attach key: "avatars/#{user.id}.jpg",
|
296
|
+
io: io, content_type: "image/jpeg", filename: "avatar.jpg"
|
267
297
|
```
|
268
298
|
|
269
|
-
|
299
|
+
Active Storage will store the blob's data on the configured service at the provided key.
|
270
300
|
|
271
301
|
*George Claghorn*
|
272
302
|
|
273
|
-
*
|
274
|
-
ActiveRecord reflection mechanism.
|
303
|
+
* Replace `Blob.create_after_upload!` with `Blob.create_and_upload!` and deprecate the former.
|
275
304
|
|
276
|
-
|
305
|
+
`create_after_upload!` has been removed since it could lead to data
|
306
|
+
corruption by uploading to a key on the storage service which happened to
|
307
|
+
be already taken. Creating the record would then correctly raise a
|
308
|
+
database uniqueness exception but the stored object would already have
|
309
|
+
overwritten another. `create_and_upload!` swaps the order of operations
|
310
|
+
so that the key gets reserved up-front or the uniqueness error gets raised,
|
311
|
+
before the upload to a key takes place.
|
277
312
|
|
278
|
-
*
|
279
|
-
processor. For example, the following will not have the monochrome
|
280
|
-
variation applied:
|
313
|
+
*Julik Tarkhanov*
|
281
314
|
|
282
|
-
|
283
|
-
avatar.variant(monochrome: false)
|
284
|
-
```
|
315
|
+
* Set content disposition in direct upload using `filename` and `disposition` parameters to `ActiveStorage::Service#headers_for_direct_upload`.
|
285
316
|
|
286
|
-
*
|
317
|
+
*Peter Zhu*
|
287
318
|
|
288
|
-
*
|
289
|
-
|
290
|
-
allow overriding and composition using `super`.
|
319
|
+
* Allow record to be optionally passed to blob finders to make sharding
|
320
|
+
easier.
|
291
321
|
|
292
|
-
*
|
322
|
+
*Gannon McGibbon*
|
293
323
|
|
294
|
-
*
|
295
|
-
and yields the tempfile. Deprecate `ActiveStorage::Downloading`.
|
324
|
+
* Switch from `azure-storage` gem to `azure-storage-blob` gem for Azure service.
|
296
325
|
|
297
|
-
*
|
326
|
+
*Peter Zhu*
|
298
327
|
|
299
|
-
*
|
300
|
-
`ActiveStorage::Attached::{One,Many}#attach` to bypass automatic content
|
301
|
-
type inference. For example:
|
328
|
+
* Add `config.active_storage.draw_routes` to disable Active Storage routes.
|
302
329
|
|
303
|
-
|
304
|
-
@message.image.attach(
|
305
|
-
io: File.open('/path/to/file'),
|
306
|
-
filename: 'file.pdf',
|
307
|
-
content_type: 'application/pdf',
|
308
|
-
identify: false
|
309
|
-
)
|
310
|
-
```
|
330
|
+
*Gannon McGibbon*
|
311
331
|
|
312
|
-
|
332
|
+
* Image analysis is skipped if ImageMagick returns an error.
|
313
333
|
|
314
|
-
|
315
|
-
|
334
|
+
`ActiveStorage::Analyzer::ImageAnalyzer#metadata` would previously raise a
|
335
|
+
`MiniMagick::Error`, which caused persistent `ActiveStorage::AnalyzeJob`
|
336
|
+
failures. It now logs the error and returns `{}`, resulting in no metadata
|
337
|
+
being added to the offending image blob.
|
316
338
|
|
317
339
|
*George Claghorn*
|
318
340
|
|
319
|
-
*
|
320
|
-
|
341
|
+
* Method calls on singular attachments return `nil` when no file is attached.
|
342
|
+
|
343
|
+
Previously, assuming the following User model, `user.avatar.filename` would
|
344
|
+
raise a `Module::DelegationError` if no avatar was attached:
|
345
|
+
|
346
|
+
```ruby
|
347
|
+
class User < ApplicationRecord
|
348
|
+
has_one_attached :avatar
|
349
|
+
end
|
350
|
+
```
|
351
|
+
|
352
|
+
They now return `nil`.
|
353
|
+
|
354
|
+
*Matthew Tanous*
|
321
355
|
|
322
|
-
|
323
|
-
image was rotated. Also, in addition to the existing ImageMagick
|
324
|
-
operations, variants can now use `:resize_to_fit`, `:resize_to_fill`, and
|
325
|
-
other ImageProcessing macros. These are now recommended over raw `:resize`,
|
326
|
-
as they also sharpen the thumbnail after resizing.
|
356
|
+
* The mirror service supports direct uploads.
|
327
357
|
|
328
|
-
|
329
|
-
|
330
|
-
|
331
|
-
ImageMagick in most cases, both in terms of speed and memory usage. In
|
332
|
-
Active Storage it's now possible to switch to the libvips backend by
|
333
|
-
changing `Rails.application.config.active_storage.variant_processor` to
|
334
|
-
`:vips`.
|
358
|
+
New files are directly uploaded to the primary service. When a
|
359
|
+
directly-uploaded file is attached to a record, a background job is enqueued
|
360
|
+
to copy it to each secondary service.
|
335
361
|
|
336
|
-
|
362
|
+
Configure the queue used to process mirroring jobs by setting
|
363
|
+
`config.active_storage.queues.mirror`. The default is `:active_storage_mirror`.
|
337
364
|
|
338
|
-
*
|
365
|
+
*George Claghorn*
|
366
|
+
|
367
|
+
* The S3 service now permits uploading files larger than 5 gigabytes.
|
368
|
+
|
369
|
+
When uploading a file greater than 100 megabytes in size, the service
|
370
|
+
transparently switches to [multipart uploads](https://docs.aws.amazon.com/AmazonS3/latest/dev/mpuoverview.html)
|
371
|
+
using a part size computed from the file's total size and S3's part count limit.
|
372
|
+
|
373
|
+
No application changes are necessary to take advantage of this feature. You
|
374
|
+
can customize the default 100 MB multipart upload threshold in your S3
|
375
|
+
service's configuration:
|
376
|
+
|
377
|
+
```yaml
|
378
|
+
production:
|
379
|
+
service: s3
|
380
|
+
access_key_id: <%= Rails.application.credentials.dig(:aws, :access_key_id) %>
|
381
|
+
secret_access_key: <%= Rails.application.credentials.dig(:aws, :secret_access_key) %>
|
382
|
+
region: us-east-1
|
383
|
+
bucket: my-bucket
|
384
|
+
upload:
|
385
|
+
multipart_threshold: <%= 250.megabytes %>
|
386
|
+
```
|
339
387
|
|
340
|
-
*
|
388
|
+
*George Claghorn*
|
341
389
|
|
342
390
|
|
343
|
-
Please check [
|
391
|
+
Please check [6-0-stable](https://github.com/rails/rails/blob/6-0-stable/activestorage/CHANGELOG.md) for previous changes.
|
data/MIT-LICENSE
CHANGED
data/README.md
CHANGED
@@ -16,7 +16,7 @@ A key difference to how Active Storage works compared to other attachment soluti
|
|
16
16
|
|
17
17
|
## Installation
|
18
18
|
|
19
|
-
Run `rails active_storage:install` to copy over active_storage migrations.
|
19
|
+
Run `bin/rails active_storage:install` to copy over active_storage migrations.
|
20
20
|
|
21
21
|
NOTE: If the task cannot be found, verify that `require "active_storage/engine"` is present in `config/application.rb`.
|
22
22
|
|
@@ -55,7 +55,7 @@ url_for(user.avatar)
|
|
55
55
|
|
56
56
|
class AvatarsController < ApplicationController
|
57
57
|
def update
|
58
|
-
# params[:avatar] contains
|
58
|
+
# params[:avatar] contains an ActionDispatch::Http::UploadedFile object
|
59
59
|
Current.user.avatar.attach(params.require(:avatar))
|
60
60
|
redirect_to Current.user
|
61
61
|
end
|
@@ -106,6 +106,37 @@ Variation of image attachment:
|
|
106
106
|
<%= image_tag user.avatar.variant(resize_to_limit: [100, 100]) %>
|
107
107
|
```
|
108
108
|
|
109
|
+
## File serving strategies
|
110
|
+
|
111
|
+
Active Storage supports two ways to serve files: redirecting and proxying.
|
112
|
+
|
113
|
+
### Redirecting
|
114
|
+
|
115
|
+
Active Storage generates stable application URLs for files which, when accessed, redirect to signed, short-lived service URLs. This relieves application servers of the burden of serving file data. It is the default file serving strategy.
|
116
|
+
|
117
|
+
When the application is configured to proxy files by default, use the `rails_storage_redirect_path` and `_url` route helpers to redirect instead:
|
118
|
+
|
119
|
+
```erb
|
120
|
+
<%= image_tag rails_storage_redirect_path(@user.avatar) %>
|
121
|
+
```
|
122
|
+
|
123
|
+
### Proxying
|
124
|
+
|
125
|
+
Optionally, files can be proxied instead. This means that your application servers will download file data from the storage service in response to requests. This can be useful for serving files from a CDN.
|
126
|
+
|
127
|
+
Explicitly proxy attachments using the `rails_storage_proxy_path` and `_url` route helpers:
|
128
|
+
|
129
|
+
```erb
|
130
|
+
<%= image_tag rails_storage_proxy_path(@user.avatar) %>
|
131
|
+
```
|
132
|
+
|
133
|
+
Or configure Active Storage to use proxying by default:
|
134
|
+
|
135
|
+
```ruby
|
136
|
+
# config/initializers/active_storage.rb
|
137
|
+
Rails.application.config.active_storage.resolve_model_to_route = :rails_storage_proxy
|
138
|
+
```
|
139
|
+
|
109
140
|
## Direct uploads
|
110
141
|
|
111
142
|
Active Storage, with its included JavaScript library, supports uploading directly from the client to the cloud.
|
@@ -120,7 +151,8 @@ Active Storage, with its included JavaScript library, supports uploading directl
|
|
120
151
|
```
|
121
152
|
Using the npm package:
|
122
153
|
```js
|
123
|
-
|
154
|
+
import * as ActiveStorage from "@rails/activestorage"
|
155
|
+
ActiveStorage.start()
|
124
156
|
```
|
125
157
|
2. Annotate file inputs with the direct upload URL.
|
126
158
|
|
@@ -5,4 +5,15 @@ class ActiveStorage::BaseController < ActionController::Base
|
|
5
5
|
include ActiveStorage::SetCurrent
|
6
6
|
|
7
7
|
protect_from_forgery with: :exception
|
8
|
+
|
9
|
+
self.etag_with_template_digest = false
|
10
|
+
|
11
|
+
private
|
12
|
+
def stream(blob)
|
13
|
+
blob.download do |chunk|
|
14
|
+
response.stream.write chunk
|
15
|
+
end
|
16
|
+
ensure
|
17
|
+
response.stream.close
|
18
|
+
end
|
8
19
|
end
|