activestorage 6.1.7.9 → 7.0.0.alpha1
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 +126 -331
- data/MIT-LICENSE +1 -1
- data/README.md +25 -11
- data/app/assets/javascripts/activestorage.esm.js +844 -0
- data/app/assets/javascripts/activestorage.js +257 -376
- data/app/controllers/active_storage/base_controller.rb +1 -10
- data/app/controllers/active_storage/blobs/proxy_controller.rb +14 -5
- data/app/controllers/active_storage/blobs/redirect_controller.rb +6 -4
- data/app/controllers/active_storage/representations/base_controller.rb +5 -1
- data/app/controllers/active_storage/representations/proxy_controller.rb +6 -5
- data/app/controllers/active_storage/representations/redirect_controller.rb +6 -4
- data/app/controllers/concerns/active_storage/set_blob.rb +6 -2
- data/app/controllers/concerns/active_storage/set_current.rb +3 -3
- data/app/controllers/concerns/active_storage/streaming.rb +65 -0
- data/app/javascript/activestorage/ujs.js +1 -1
- data/app/models/active_storage/attachment.rb +35 -2
- data/app/models/active_storage/blob/representable.rb +7 -5
- data/app/models/active_storage/blob.rb +26 -27
- data/app/models/active_storage/current.rb +12 -2
- data/app/models/active_storage/preview.rb +6 -4
- data/app/models/active_storage/record.rb +1 -1
- data/app/models/active_storage/variant.rb +6 -9
- data/app/models/active_storage/variant_record.rb +2 -0
- data/app/models/active_storage/variant_with_record.rb +9 -5
- data/app/models/active_storage/variation.rb +3 -3
- data/config/routes.rb +10 -10
- data/db/migrate/20170806125915_create_active_storage_tables.rb +11 -2
- data/db/update_migrate/20190112182829_add_service_name_to_active_storage_blobs.rb +0 -4
- data/db/update_migrate/20191206030411_create_active_storage_variant_records.rb +1 -3
- data/lib/active_storage/analyzer/audio_analyzer.rb +65 -0
- data/lib/active_storage/analyzer/image_analyzer/image_magick.rb +39 -0
- data/lib/active_storage/analyzer/image_analyzer/vips.rb +49 -0
- data/lib/active_storage/analyzer/image_analyzer.rb +2 -30
- data/lib/active_storage/analyzer/video_analyzer.rb +26 -11
- data/lib/active_storage/analyzer.rb +8 -4
- data/lib/active_storage/attached/changes/create_many.rb +7 -3
- data/lib/active_storage/attached/changes/create_one.rb +1 -1
- data/lib/active_storage/attached/changes/create_one_of_many.rb +1 -1
- data/lib/active_storage/attached/changes/delete_many.rb +1 -1
- data/lib/active_storage/attached/changes/delete_one.rb +1 -1
- data/lib/active_storage/attached/changes/detach_many.rb +18 -0
- data/lib/active_storage/attached/changes/detach_one.rb +24 -0
- data/lib/active_storage/attached/changes/purge_many.rb +27 -0
- data/lib/active_storage/attached/changes/purge_one.rb +27 -0
- data/lib/active_storage/attached/changes.rb +7 -1
- data/lib/active_storage/attached/many.rb +27 -15
- data/lib/active_storage/attached/model.rb +31 -5
- data/lib/active_storage/attached/one.rb +32 -27
- data/lib/active_storage/downloader.rb +2 -2
- data/lib/active_storage/engine.rb +28 -16
- data/lib/active_storage/fixture_set.rb +76 -0
- data/lib/active_storage/gem_version.rb +4 -4
- data/lib/active_storage/previewer/video_previewer.rb +0 -2
- data/lib/active_storage/previewer.rb +4 -4
- data/lib/active_storage/reflection.rb +12 -2
- data/lib/active_storage/service/azure_storage_service.rb +1 -1
- data/lib/active_storage/service/configurator.rb +1 -1
- data/lib/active_storage/service/disk_service.rb +13 -18
- data/lib/active_storage/service/gcs_service.rb +91 -7
- data/lib/active_storage/service/mirror_service.rb +1 -1
- data/lib/active_storage/service/registry.rb +1 -1
- data/lib/active_storage/service/s3_service.rb +4 -4
- data/lib/active_storage/service.rb +3 -3
- data/lib/active_storage/transformers/image_processing_transformer.rb +1 -66
- data/lib/active_storage/transformers/transformer.rb +1 -1
- data/lib/active_storage.rb +3 -292
- metadata +29 -22
- data/app/controllers/concerns/active_storage/disable_session.rb +0 -12
- data/app/controllers/concerns/active_storage/set_headers.rb +0 -12
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: c267f362a238a90819d7e7cd23917d10970b03acd2956d099ea6aeb26c2ce192
|
4
|
+
data.tar.gz: c669f3a56d9b6f3f5a08e89cfb49725d65d1abf0d7e933c50b6a3fc12c7d9a6d
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: cf96bff832fd497ff5475a475c2b8d5d22b12243d4126bd973ec28c670f9fb57e2e787c073c2ebf4edd89fb3a1d2fbd703a47e0f9a76490389b22e7e9483e2bd
|
7
|
+
data.tar.gz: a405ab97196c4b8c60f284b3e7c664ed30756a08abfe2d1f5d50c43630ec5cfd46d71dcd533e545151312f16459aec534a55f533be95aa6ee47021d29ce30466
|
data/CHANGELOG.md
CHANGED
@@ -1,426 +1,221 @@
|
|
1
|
-
## Rails
|
1
|
+
## Rails 7.0.0.alpha1 (September 15, 2021) ##
|
2
2
|
|
3
|
-
*
|
3
|
+
* Emit Active Support instrumentation events from Active Storage analyzers.
|
4
4
|
|
5
|
+
Fixes #42930
|
5
6
|
|
6
|
-
|
7
|
+
*Shouichi Kamiya*
|
7
8
|
|
8
|
-
*
|
9
|
+
* Add support for byte range requests
|
9
10
|
|
11
|
+
*Tom Prats*
|
10
12
|
|
11
|
-
|
12
|
-
|
13
|
-
* Disables the session in `ActiveStorage::Blobs::ProxyController`
|
14
|
-
and `ActiveStorage::Representations::ProxyController`
|
15
|
-
in order to allow caching by default in some CDNs as CloudFlare
|
16
|
-
|
17
|
-
Fixes #44136
|
18
|
-
|
19
|
-
*Bruno Prieto*
|
20
|
-
|
21
|
-
## Rails 6.1.7.6 (August 22, 2023) ##
|
22
|
-
|
23
|
-
* No changes.
|
24
|
-
|
25
|
-
|
26
|
-
## Rails 6.1.7.5 (August 22, 2023) ##
|
27
|
-
|
28
|
-
* No changes.
|
29
|
-
|
30
|
-
|
31
|
-
## Rails 6.1.7.4 (June 26, 2023) ##
|
32
|
-
|
33
|
-
* No changes.
|
34
|
-
|
35
|
-
|
36
|
-
## Rails 6.1.7.3 (March 13, 2023) ##
|
37
|
-
|
38
|
-
* No changes.
|
39
|
-
|
40
|
-
|
41
|
-
## Rails 6.1.7.2 (January 24, 2023) ##
|
42
|
-
|
43
|
-
* No changes.
|
44
|
-
|
45
|
-
|
46
|
-
## Rails 6.1.7.1 (January 17, 2023) ##
|
47
|
-
|
48
|
-
* No changes.
|
49
|
-
|
50
|
-
|
51
|
-
## Rails 6.1.7 (September 09, 2022) ##
|
52
|
-
|
53
|
-
* Respect Active Record's primary_key_type in Active Storage migrations. Backported from 7.0.
|
54
|
-
|
55
|
-
*fatkodima*
|
56
|
-
|
57
|
-
## Rails 6.1.6.1 (July 12, 2022) ##
|
13
|
+
* Attachments can be deleted after their association is no longer defined.
|
58
14
|
|
59
|
-
|
15
|
+
Fixes #42514
|
60
16
|
|
17
|
+
*Don Sisco*
|
61
18
|
|
62
|
-
|
19
|
+
* Make `vips` the default variant processor for new apps.
|
63
20
|
|
64
|
-
|
21
|
+
See the upgrade guide for instructions on converting from `mini_magick` to `vips`. `mini_magick` is
|
22
|
+
not deprecated, existing apps can keep using it.
|
65
23
|
|
24
|
+
*Breno Gazzola*
|
66
25
|
|
67
|
-
|
26
|
+
* Deprecate `ActiveStorage::Current.host` in favor of `ActiveStorage::Current.url_options` which accepts
|
27
|
+
a host, protocol and port.
|
68
28
|
|
69
|
-
*
|
29
|
+
*Santiago Bartesaghi*
|
70
30
|
|
31
|
+
* Allow using [IAM](https://cloud.google.com/storage/docs/access-control/signed-urls) when signing URLs with GCS.
|
71
32
|
|
72
|
-
|
33
|
+
```yaml
|
34
|
+
gcs:
|
35
|
+
service: GCS
|
36
|
+
...
|
37
|
+
iam: true
|
38
|
+
```
|
73
39
|
|
74
|
-
*
|
40
|
+
*RRethy*
|
75
41
|
|
76
|
-
|
42
|
+
* OpenSSL constants are now used for Digest computations.
|
77
43
|
|
78
|
-
*
|
44
|
+
*Dirkjan Bussink*
|
79
45
|
|
46
|
+
* Deprecate `config.active_storage.replace_on_assign_to_many`. Future versions of Rails
|
47
|
+
will behave the same way as when the config is set to `true`.
|
80
48
|
|
81
|
-
|
49
|
+
*Santiago Bartesaghi*
|
82
50
|
|
83
|
-
*
|
84
|
-
|
85
|
-
Variant now offers a configurable allow-list for
|
86
|
-
transformation methods in addition to a configurable deny-list for arguments.
|
87
|
-
|
88
|
-
[CVE-2022-21831]
|
51
|
+
* Remove deprecated methods: `build_after_upload`, `create_after_upload!` in favor of `create_and_upload!`,
|
52
|
+
and `service_url` in favor of `url`.
|
89
53
|
|
54
|
+
*Santiago Bartesaghi*
|
90
55
|
|
91
|
-
|
56
|
+
* Add support of `strict_loading_by_default` to `ActiveStorage::Representations` controllers.
|
92
57
|
|
93
|
-
*
|
58
|
+
*Anton Topchii*, *Andrew White*
|
94
59
|
|
60
|
+
* Allow to detach an attachment when record is not persisted.
|
95
61
|
|
96
|
-
|
62
|
+
*Jacopo Beschi*
|
97
63
|
|
98
|
-
*
|
64
|
+
* Use libvips instead of ImageMagick to analyze images when `active_storage.variant_processor = vips`.
|
99
65
|
|
66
|
+
*Breno Gazzola*
|
100
67
|
|
101
|
-
|
68
|
+
* Add metadata value for presence of video channel in video blobs.
|
102
69
|
|
103
|
-
|
70
|
+
The `metadata` attribute of video blobs has a new boolean key named `video` that is set to
|
71
|
+
`true` if the file has an video channel and `false` if it doesn't.
|
104
72
|
|
73
|
+
*Breno Gazzola*
|
105
74
|
|
106
|
-
|
75
|
+
* Deprecate usage of `purge` and `purge_later` from the association extension.
|
107
76
|
|
108
|
-
*
|
77
|
+
*Jacopo Beschi*
|
109
78
|
|
79
|
+
* Passing extra parameters in `ActiveStorage::Blob#url` to S3 Client.
|
110
80
|
|
111
|
-
|
81
|
+
This allows calls of `ActiveStorage::Blob#url` to have more interaction with
|
82
|
+
the S3 Presigner, enabling, amongst other options, custom S3 domain URL
|
83
|
+
Generation.
|
112
84
|
|
113
|
-
|
85
|
+
```ruby
|
86
|
+
blob = ActiveStorage::Blob.last
|
114
87
|
|
88
|
+
blob.url # => https://<bucket-name>.s3.<region>.amazonaws.com/<key>
|
89
|
+
blob.url(virtual_host: true) # => # => https://<bucket-name>/<key>
|
90
|
+
```
|
115
91
|
|
116
|
-
|
92
|
+
*josegomezr*
|
117
93
|
|
118
|
-
*
|
94
|
+
* Allow setting a `Cache-Control` on files uploaded to GCS.
|
119
95
|
|
96
|
+
```yaml
|
97
|
+
gcs:
|
98
|
+
service: GCS
|
99
|
+
...
|
100
|
+
cache_control: "public, max-age=3600"
|
101
|
+
```
|
120
102
|
|
121
|
-
|
103
|
+
*maleblond*
|
122
104
|
|
123
105
|
* The parameters sent to `ffmpeg` for generating a video preview image are now
|
124
106
|
configurable under `config.active_storage.video_preview_arguments`.
|
125
107
|
|
126
108
|
*Brendon Muir*
|
127
109
|
|
128
|
-
*
|
110
|
+
* The ActiveStorage video previewer will now use scene change detection to generate
|
111
|
+
better preview images (rather than the previous default of using the first frame
|
112
|
+
of the video). This change requires FFmpeg v3.4+.
|
129
113
|
|
130
|
-
*
|
114
|
+
*Jonathan Hefner*
|
131
115
|
|
132
|
-
*
|
116
|
+
* Add support for ActiveStorage expiring URLs.
|
133
117
|
|
134
|
-
|
118
|
+
```ruby
|
119
|
+
rails_blob_path(user.avatar, disposition: "attachment", expires_in: 30.minutes)
|
135
120
|
|
136
|
-
|
121
|
+
<%= image_tag rails_blob_path(user.avatar.variant(resize: "100x100"), expires_in: 30.minutes) %>
|
122
|
+
```
|
137
123
|
|
138
|
-
|
124
|
+
If you want to set default expiration time for ActiveStorage URLs throughout your application, set `config.active_storage.urls_expire_in`.
|
139
125
|
|
140
|
-
*
|
126
|
+
*aki77*
|
141
127
|
|
142
|
-
*
|
128
|
+
* Allow to purge an attachment when record is not persisted for `has_many_attached`.
|
143
129
|
|
144
|
-
*
|
130
|
+
*Jacopo Beschi*
|
145
131
|
|
146
|
-
* `
|
132
|
+
* Add `with_all_variant_records` method to eager load all variant records on an attachment at once.
|
133
|
+
`with_attached_image` scope now eager loads variant records if using variant tracking.
|
147
134
|
|
148
135
|
*Alex Ghiculescu*
|
149
136
|
|
137
|
+
* Add metadata value for presence of audio channel in video blobs.
|
150
138
|
|
151
|
-
|
152
|
-
|
153
|
-
* No changes.
|
154
|
-
|
155
|
-
|
156
|
-
## Rails 6.1.3.1 (March 26, 2021) ##
|
157
|
-
|
158
|
-
* Marcel is upgraded to version 1.0.0 to avoid a dependency on GPL-licensed
|
159
|
-
mime types data.
|
160
|
-
|
161
|
-
*George Claghorn*
|
162
|
-
|
163
|
-
|
164
|
-
## Rails 6.1.3 (February 17, 2021) ##
|
165
|
-
|
166
|
-
* No changes.
|
167
|
-
|
168
|
-
|
169
|
-
## Rails 6.1.2.1 (February 10, 2021) ##
|
170
|
-
|
171
|
-
* No changes.
|
139
|
+
The `metadata` attribute of video blobs has a new boolean key named `audio` that is set to
|
140
|
+
`true` if the file has an audio channel and `false` if it doesn't.
|
172
141
|
|
142
|
+
*Breno Gazzola*
|
173
143
|
|
174
|
-
|
144
|
+
* Adds analyzer for audio files.
|
175
145
|
|
176
|
-
*
|
146
|
+
*Breno Gazzola*
|
177
147
|
|
148
|
+
* Respect Active Record's primary_key_type in Active Storage migrations.
|
178
149
|
|
179
|
-
|
180
|
-
|
181
|
-
* Fix S3 multipart uploads when threshold is larger than file.
|
182
|
-
|
183
|
-
*Matt Muller*
|
184
|
-
|
185
|
-
|
186
|
-
## Rails 6.1.0 (December 09, 2020) ##
|
187
|
-
|
188
|
-
* Change default queue name of the analysis (`:active_storage_analysis`) and
|
189
|
-
purge (`:active_storage_purge`) jobs to be the job adapter's default (`:default`).
|
190
|
-
|
191
|
-
*Rafael Mendonça França*
|
192
|
-
|
193
|
-
* Implement `strict_loading` on ActiveStorage associations.
|
194
|
-
|
195
|
-
*David Angulo*
|
196
|
-
|
197
|
-
* Remove deprecated support to pass `:combine_options` operations to `ActiveStorage::Transformers::ImageProcessing`.
|
198
|
-
|
199
|
-
*Rafael Mendonça França*
|
200
|
-
|
201
|
-
* Remove deprecated `ActiveStorage::Transformers::MiniMagickTransformer`.
|
202
|
-
|
203
|
-
*Rafael Mendonça França*
|
204
|
-
|
205
|
-
* Remove deprecated `config.active_storage.queue`.
|
206
|
-
|
207
|
-
*Rafael Mendonça França*
|
208
|
-
|
209
|
-
* Remove deprecated `ActiveStorage::Downloading`.
|
210
|
-
|
211
|
-
*Rafael Mendonça França*
|
150
|
+
*fatkodima*
|
212
151
|
|
213
|
-
*
|
152
|
+
* Allow `expires_in` for ActiveStorage signed ids.
|
214
153
|
|
215
|
-
*
|
154
|
+
*aki77*
|
216
155
|
|
217
|
-
*
|
218
|
-
document's crop box rather than its media box, hiding print margins. This
|
219
|
-
matches the behavior of the MuPDF previewer.
|
156
|
+
* Allow to purge an attachment when record is not persisted for `has_one_attached`.
|
220
157
|
|
221
|
-
*
|
158
|
+
*Jacopo Beschi*
|
222
159
|
|
223
|
-
*
|
160
|
+
* Add a load hook called `active_storage_variant_record` (providing `ActiveStorage::VariantRecord`)
|
161
|
+
to allow for overriding aspects of the `ActiveStorage::VariantRecord` class. This makes
|
162
|
+
`ActiveStorage::VariantRecord` consistent with `ActiveStorage::Blob` and `ActiveStorage::Attachment`
|
163
|
+
that already have load hooks.
|
224
164
|
|
225
|
-
*
|
165
|
+
*Brendon Muir*
|
226
166
|
|
227
|
-
*
|
228
|
-
instead of redirecting to a signed service URL. Use the
|
229
|
-
`rails_storage_proxy_path` and `_url` helpers to proxy an attached file:
|
167
|
+
* `ActiveStorage::PreviewError` is raised when a previewer is unable to generate a preview image.
|
230
168
|
|
231
|
-
|
232
|
-
<%= image_tag rails_storage_proxy_path(@user.avatar) %>
|
233
|
-
```
|
169
|
+
*Alex Robbin*
|
234
170
|
|
235
|
-
|
171
|
+
* Add `ActiveStorage::Streaming` module that can be included in a controller to get access to `#send_blob_stream`,
|
172
|
+
which wraps the new `ActionController::Base#send_stream` method to stream a blob from cloud storage:
|
236
173
|
|
237
174
|
```ruby
|
238
|
-
|
239
|
-
|
240
|
-
|
241
|
-
|
242
|
-
|
243
|
-
|
244
|
-
|
245
|
-
|
246
|
-
|
247
|
-
is set to proxying, use the `rails_storage_redirect_path` and `_url` helpers:
|
248
|
-
|
249
|
-
```erb
|
250
|
-
<%= image_tag rails_storage_redirect_path(@user.avatar) %>
|
175
|
+
class MyPublicBlobsController < ApplicationController
|
176
|
+
include ActiveStorage::SetBlob, ActiveStorage::Streaming
|
177
|
+
|
178
|
+
def show
|
179
|
+
http_cache_forever(public: true) do
|
180
|
+
send_blob_stream @blob, disposition: params[:disposition]
|
181
|
+
end
|
182
|
+
end
|
183
|
+
end
|
251
184
|
```
|
252
185
|
|
253
|
-
*
|
254
|
-
|
255
|
-
* Add `config.active_storage.web_image_content_types` to allow applications
|
256
|
-
to add content types (like `image/webp`) in which variants can be processed,
|
257
|
-
instead of letting those images be converted to the fallback PNG format.
|
258
|
-
|
259
|
-
*Jeroen van Haperen*
|
260
|
-
|
261
|
-
* Add support for creating variants of `WebP` images out of the box.
|
262
|
-
|
263
|
-
*Dino Maric*
|
264
|
-
|
265
|
-
* Only enqueue analysis jobs for blobs with non-null analyzer classes.
|
266
|
-
|
267
|
-
*Gannon McGibbon*
|
268
|
-
|
269
|
-
* Previews are created on the same service as the original blob.
|
270
|
-
|
271
|
-
*Peter Zhu*
|
272
|
-
|
273
|
-
* Remove unused `disposition` and `content_type` query parameters for `DiskService`.
|
274
|
-
|
275
|
-
*Peter Zhu*
|
276
|
-
|
277
|
-
* Use `DiskController` for both public and private files.
|
278
|
-
|
279
|
-
`DiskController` is able to handle multiple services by adding a
|
280
|
-
`service_name` field in the generated URL in `DiskService`.
|
281
|
-
|
282
|
-
*Peter Zhu*
|
283
|
-
|
284
|
-
* Variants are tracked in the database to avoid existence checks in the storage service.
|
285
|
-
|
286
|
-
*George Claghorn*
|
287
|
-
|
288
|
-
* Deprecate `service_url` methods in favour of `url`.
|
289
|
-
|
290
|
-
Deprecate `Variant#service_url` and `Preview#service_url` to instead use
|
291
|
-
`#url` method to be consistent with `Blob`.
|
292
|
-
|
293
|
-
*Peter Zhu*
|
294
|
-
|
295
|
-
* Permanent URLs for public storage blobs.
|
296
|
-
|
297
|
-
Services can be configured in `config/storage.yml` with a new key
|
298
|
-
`public: true | false` to indicate whether a service holds public
|
299
|
-
blobs or private blobs. Public services will always return a permanent URL.
|
300
|
-
|
301
|
-
Deprecates `Blob#service_url` in favor of `Blob#url`.
|
302
|
-
|
303
|
-
*Peter Zhu*
|
304
|
-
|
305
|
-
* Make services aware of configuration names.
|
306
|
-
|
307
|
-
*Gannon McGibbon*
|
308
|
-
|
309
|
-
* The `Content-Type` header is set on image variants when they're uploaded to third-party storage services.
|
310
|
-
|
311
|
-
*Kyle Ribordy*
|
186
|
+
*DHH*
|
312
187
|
|
313
|
-
*
|
188
|
+
* Add ability to use pre-defined variants.
|
314
189
|
|
315
190
|
```ruby
|
316
191
|
class User < ActiveRecord::Base
|
317
|
-
has_one_attached :avatar
|
192
|
+
has_one_attached :avatar do |attachable|
|
193
|
+
attachable.variant :thumb, resize: "100x100"
|
194
|
+
attachable.variant :medium, resize: "300x300", monochrome: true
|
195
|
+
end
|
318
196
|
end
|
319
197
|
|
320
198
|
class Gallery < ActiveRecord::Base
|
321
|
-
has_many_attached :photos
|
199
|
+
has_many_attached :photos do |attachable|
|
200
|
+
attachable.variant :thumb, resize: "100x100"
|
201
|
+
attachable.variant :medium, resize: "300x300", monochrome: true
|
202
|
+
end
|
322
203
|
end
|
323
|
-
```
|
324
|
-
|
325
|
-
*Dmitry Tsepelev*
|
326
|
-
|
327
|
-
* You can optionally provide a custom blob key when attaching a new file:
|
328
204
|
|
329
|
-
|
330
|
-
user.avatar.attach key: "avatars/#{user.id}.jpg",
|
331
|
-
io: io, content_type: "image/jpeg", filename: "avatar.jpg"
|
205
|
+
<%= image_tag user.avatar.variant(:thumb) %>
|
332
206
|
```
|
333
207
|
|
334
|
-
|
335
|
-
|
336
|
-
*George Claghorn*
|
337
|
-
|
338
|
-
* Replace `Blob.create_after_upload!` with `Blob.create_and_upload!` and deprecate the former.
|
339
|
-
|
340
|
-
`create_after_upload!` has been removed since it could lead to data
|
341
|
-
corruption by uploading to a key on the storage service which happened to
|
342
|
-
be already taken. Creating the record would then correctly raise a
|
343
|
-
database uniqueness exception but the stored object would already have
|
344
|
-
overwritten another. `create_and_upload!` swaps the order of operations
|
345
|
-
so that the key gets reserved up-front or the uniqueness error gets raised,
|
346
|
-
before the upload to a key takes place.
|
347
|
-
|
348
|
-
*Julik Tarkhanov*
|
349
|
-
|
350
|
-
* Set content disposition in direct upload using `filename` and `disposition` parameters to `ActiveStorage::Service#headers_for_direct_upload`.
|
351
|
-
|
352
|
-
*Peter Zhu*
|
353
|
-
|
354
|
-
* Allow record to be optionally passed to blob finders to make sharding
|
355
|
-
easier.
|
356
|
-
|
357
|
-
*Gannon McGibbon*
|
358
|
-
|
359
|
-
* Switch from `azure-storage` gem to `azure-storage-blob` gem for Azure service.
|
360
|
-
|
361
|
-
*Peter Zhu*
|
362
|
-
|
363
|
-
* Add `config.active_storage.draw_routes` to disable Active Storage routes.
|
364
|
-
|
365
|
-
*Gannon McGibbon*
|
366
|
-
|
367
|
-
* Image analysis is skipped if ImageMagick returns an error.
|
368
|
-
|
369
|
-
`ActiveStorage::Analyzer::ImageAnalyzer#metadata` would previously raise a
|
370
|
-
`MiniMagick::Error`, which caused persistent `ActiveStorage::AnalyzeJob`
|
371
|
-
failures. It now logs the error and returns `{}`, resulting in no metadata
|
372
|
-
being added to the offending image blob.
|
373
|
-
|
374
|
-
*George Claghorn*
|
375
|
-
|
376
|
-
* Method calls on singular attachments return `nil` when no file is attached.
|
377
|
-
|
378
|
-
Previously, assuming the following User model, `user.avatar.filename` would
|
379
|
-
raise a `Module::DelegationError` if no avatar was attached:
|
380
|
-
|
381
|
-
```ruby
|
382
|
-
class User < ApplicationRecord
|
383
|
-
has_one_attached :avatar
|
384
|
-
end
|
385
|
-
```
|
386
|
-
|
387
|
-
They now return `nil`.
|
388
|
-
|
389
|
-
*Matthew Tanous*
|
390
|
-
|
391
|
-
* The mirror service supports direct uploads.
|
392
|
-
|
393
|
-
New files are directly uploaded to the primary service. When a
|
394
|
-
directly-uploaded file is attached to a record, a background job is enqueued
|
395
|
-
to copy it to each secondary service.
|
396
|
-
|
397
|
-
Configure the queue used to process mirroring jobs by setting
|
398
|
-
`config.active_storage.queues.mirror`. The default is `:active_storage_mirror`.
|
399
|
-
|
400
|
-
*George Claghorn*
|
401
|
-
|
402
|
-
* The S3 service now permits uploading files larger than 5 gigabytes.
|
208
|
+
*fatkodima*
|
403
209
|
|
404
|
-
|
405
|
-
|
406
|
-
using a part size computed from the file's total size and S3's part count limit.
|
210
|
+
* After setting `config.active_storage.resolve_model_to_route = :rails_storage_proxy`
|
211
|
+
`rails_blob_path` and `rails_representation_path` will generate proxy URLs by default.
|
407
212
|
|
408
|
-
|
409
|
-
can customize the default 100 MB multipart upload threshold in your S3
|
410
|
-
service's configuration:
|
213
|
+
*Ali Ismayilov*
|
411
214
|
|
412
|
-
|
413
|
-
|
414
|
-
service: s3
|
415
|
-
access_key_id: <%= Rails.application.credentials.dig(:aws, :access_key_id) %>
|
416
|
-
secret_access_key: <%= Rails.application.credentials.dig(:aws, :secret_access_key) %>
|
417
|
-
region: us-east-1
|
418
|
-
bucket: my-bucket
|
419
|
-
upload:
|
420
|
-
multipart_threshold: <%= 250.megabytes %>
|
421
|
-
```
|
215
|
+
* Declare `ActiveStorage::FixtureSet` and `ActiveStorage::FixtureSet.blob` to
|
216
|
+
improve fixture integration.
|
422
217
|
|
423
|
-
*
|
218
|
+
*Sean Doyle*
|
424
219
|
|
425
220
|
|
426
|
-
Please check [6-
|
221
|
+
Please check [6-1-stable](https://github.com/rails/rails/blob/6-1-stable/activestorage/CHANGELOG.md) for previous changes.
|
data/MIT-LICENSE
CHANGED
data/README.md
CHANGED
@@ -32,7 +32,7 @@ class User < ApplicationRecord
|
|
32
32
|
end
|
33
33
|
|
34
34
|
# Attach an avatar to the user.
|
35
|
-
user.avatar.attach(io: File.open("/path/to/face.jpg"), filename: "face.jpg", content_type: "image/
|
35
|
+
user.avatar.attach(io: File.open("/path/to/face.jpg"), filename: "face.jpg", content_type: "image/jpeg")
|
36
36
|
|
37
37
|
# Does the user have an avatar?
|
38
38
|
user.avatar.attached? # => true
|
@@ -88,8 +88,7 @@ class MessagesController < ApplicationController
|
|
88
88
|
end
|
89
89
|
|
90
90
|
def create
|
91
|
-
message = Message.create! params.require(:message).permit(:title, :content)
|
92
|
-
message.images.attach(params[:message][:images])
|
91
|
+
message = Message.create! params.require(:message).permit(:title, :content, images: [])
|
93
92
|
redirect_to message
|
94
93
|
end
|
95
94
|
|
@@ -124,27 +123,42 @@ When the application is configured to proxy files by default, use the `rails_sto
|
|
124
123
|
|
125
124
|
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
125
|
|
127
|
-
|
128
|
-
|
129
|
-
```erb
|
130
|
-
<%= image_tag rails_storage_proxy_path(@user.avatar) %>
|
131
|
-
```
|
132
|
-
|
133
|
-
Or configure Active Storage to use proxying by default:
|
126
|
+
You can configure Active Storage to use proxying by default:
|
134
127
|
|
135
128
|
```ruby
|
136
129
|
# config/initializers/active_storage.rb
|
137
130
|
Rails.application.config.active_storage.resolve_model_to_route = :rails_storage_proxy
|
138
131
|
```
|
139
132
|
|
133
|
+
Or if you want to explicitly proxy specific attachments there are URL helpers you can use in the form of `rails_storage_proxy_path` and `rails_storage_proxy_url`.
|
134
|
+
|
135
|
+
```erb
|
136
|
+
<%= image_tag rails_storage_proxy_path(@user.avatar) %>
|
137
|
+
```
|
138
|
+
|
140
139
|
## Direct uploads
|
141
140
|
|
142
141
|
Active Storage, with its included JavaScript library, supports uploading directly from the client to the cloud.
|
143
142
|
|
144
143
|
### Direct upload installation
|
145
144
|
|
146
|
-
1. Include
|
145
|
+
1. Include the Active Storage JavaScript in your application's JavaScript bundle or reference it directly.
|
147
146
|
|
147
|
+
Requiring directly without bundling through the asset pipeline in the application html with autostart:
|
148
|
+
```html
|
149
|
+
<%= javascript_include_tag "activestorage" %>
|
150
|
+
```
|
151
|
+
Requiring via importmap-rails without bundling through the asset pipeline in the application html without autostart as ESM:
|
152
|
+
```ruby
|
153
|
+
# config/importmap.rb
|
154
|
+
pin "@rails/activestorage", to: "activestorage.esm.js"
|
155
|
+
```
|
156
|
+
```html
|
157
|
+
<script type="module-shim">
|
158
|
+
import * as ActiveStorage from "@rails/activestorage"
|
159
|
+
ActiveStorage.start()
|
160
|
+
</script>
|
161
|
+
```
|
148
162
|
Using the asset pipeline:
|
149
163
|
```js
|
150
164
|
//= require activestorage
|