Commit message (Collapse) | Author | Age | Files | Lines | ||
---|---|---|---|---|---|---|
... | ||||||
* | | Provide an alternative PDF previewer based on Poppler | Terence Lee | 2018-03-06 | 4 | -28/+74 | |
| | | | | | | | | | | | | mutool is licensed under the Affero GPL, which has strict distribution requirements. Poppler is licensed under the more liberal GPL, making it a good alternative for those who can't use mutool. | |||||
* | | Allow selectively purging attached blobs | Nicholas Shirley | 2018-03-06 | 2 | -12/+18 | |
| | | ||||||
* | | Remove blank Content-Type from GCS direct upload headers | George Claghorn | 2018-03-06 | 1 | -1/+1 | |
| | | | | | | | | Since we started clearing the client-side blob's type in e0867b3, we no longer need to set a blank Content-Type header before issuing the direct upload request. Fixes that Safari 9 would combine the blank Content-Type header with the blank blob type to produce a Content-Type header containing a single comma, invalidating the request. | |||||
* | | Fix purging dependent blobs when attachments aren't loaded | George Claghorn | 2018-03-05 | 2 | -23/+17 | |
| | | ||||||
* | | Delete dependent attachments with record | George Claghorn | 2018-03-05 | 1 | -2/+2 | |
| | | | | | | | | [Matt Jones & George Claghorn] | |||||
* | | Correct the ActiveStorage::Service#download_chunk docs [ci skip] | George Claghorn | 2018-03-05 | 1 | -1/+1 | |
| | | ||||||
* | | Generate root-relative paths in Active Storage disk service URL methods | George Claghorn | 2018-03-05 | 6 | -8/+53 | |
| | | | | | | | | Fixes #32129. | |||||
* | | Handle another case where a blob might be erroneously purged | George Claghorn | 2018-03-04 | 1 | -5/+10 | |
| | | ||||||
* | | Avoid purging attached blob when replacing it with itself | George Claghorn | 2018-03-04 | 1 | -2/+6 | |
| | | ||||||
* | | Deprecate `active_support/core_ext/hash/compact` | yuuji.yaginuma | 2018-03-02 | 1 | -2/+0 | |
| | | | | | | | | | | Ruby 2.4+ provides `Hash#compact` and `Hash#compact!` natively, so `active_support/core_ext/hash/compact` is no longer necessary. | |||||
* | | Avoid specifying content types for direct uploads to Google Cloud Storage | George Claghorn | 2018-02-26 | 1 | -5/+4 | |
| | | | | | | | | Fix customizing the download Content-Type for a directly-uploaded blob via a signed URL. See e8286ee. | |||||
* | | Use lazy load hook to configure ActiveStorage::Blob | Eugene Kenny | 2018-02-25 | 1 | -1/+1 | |
| | | | | | | | | | | | | | | | | | | `to_prepare` callbacks are run during initialization; using one here meant that `ActiveStorage::Blob` would be loaded when the app boots, which would in turn load `ActiveRecord::Base`. By using a lazy load hook to configure `ActiveStorage::Blob` instead, we can avoid loading `ActiveRecord::Base` unnecessarily. | |||||
* | | Support varying ICO files | George Claghorn | 2018-02-24 | 1 | -1/+9 | |
|/ | | | | Closes #32096. | |||||
* | Correct orientation detection | George Claghorn | 2018-01-31 | 1 | -1/+1 | |
| | ||||||
* | Swap encoded image width and height if angle is 90 or 270 degrees | George Claghorn | 2018-01-31 | 1 | -1/+11 | |
| | ||||||
* | Start Rails 6.0 development!!! | Rafael Mendonça França | 2018-01-30 | 1 | -3/+3 | |
| | | | | :tada::tada::tada: | |||||
* | Unlink internal tempfiles after use | George Claghorn | 2018-01-26 | 2 | -2/+22 | |
| | ||||||
* | Add missing require | George Claghorn | 2018-01-22 | 1 | -3/+5 | |
| | ||||||
* | Cope with videos with undefined display aspect ratios | George Claghorn | 2018-01-20 | 1 | -2/+6 | |
| | ||||||
* | Preserve display aspect ratio for videos with rectangular samples | George Claghorn | 2018-01-19 | 1 | -15/+35 | |
| | ||||||
* | Provide a sensible default host | George Claghorn | 2018-01-16 | 1 | -1/+1 | |
| | ||||||
* | Extract content types from blob data | George Claghorn | 2018-01-15 | 2 | -17/+13 | |
| | ||||||
* | Instrument preview image drawing | George Claghorn | 2018-01-10 | 1 | -3/+5 | |
| | ||||||
* | Add missing `# frozen_string_literal: true` | Ryuta Kamizono | 2018-01-11 | 1 | -0/+2 | |
| | ||||||
* | Extract Analyzable and Representable concerns | George Claghorn | 2018-01-10 | 2 | -0/+7 | |
| | ||||||
* | Change Active Storage destroy callbacks | kami-zh | 2018-01-09 | 1 | -2/+2 | |
| | | | | | There is concern that only blob are deleted depending on the `before_destroy` definition order which throws abort. | |||||
* | Fix attaching blobs to optimistically-locked records | George Claghorn | 2018-01-08 | 1 | -2/+2 | |
| | | | | | | Explicitly declare inverse associations so ActiveStorage::Attachment touches the original record instance. Closes #31542. | |||||
* | Document automatic width-height swapping [ci skip] | George Claghorn | 2018-01-07 | 1 | -0/+2 | |
| | ||||||
* | Remove redundant sentences [ci skip] | George Claghorn | 2018-01-07 | 2 | -4/+2 | |
| | ||||||
* | Tweak engine for readability | George Claghorn | 2018-01-07 | 1 | -11/+13 | |
| | ||||||
* | Force content disposition to attachment for specific content types | Rosa Gutierrez | 2018-01-05 | 2 | -0/+12 | |
| | | | | | | | | | | | | | | In this way we avoid HTML, XML, SVG and other files that can be rendered by the browser to be served inline by default. Depending on the origin from where these files are served, this might lead to XSS vulnerabilities, and in the best case, to more realistic phishing attacks and open redirects. We force it rather than falling back to it when other disposition is not provided. Otherwise it would be possible for someone to force inline just by passing `disposition=inline` in the URL. The list of content types to be served as attachments is configurable. | |||||
* | Configure previewer/analyzer command paths centrally | George Claghorn | 2018-01-03 | 5 | -23/+15 | |
| | ||||||
* | Merge pull request #31606 from yhirano55/bump_license_years_for_2018 | Arun Agrawal | 2017-12-31 | 1 | -1/+1 | |
|\ | | | | | Bump license years for 2018 | |||||
| * | Bump license years for 2018 | Yoshiyuki Hirano | 2017-12-31 | 1 | -1/+1 | |
| | | ||||||
* | | Expose ActiveStorage::Analyzer#logger in API docs [ci skip] | George Claghorn | 2017-12-31 | 1 | -1/+1 | |
| | | | | | | | | Clarify that it's public API and may be used in third-party analyzers. | |||||
* | | Expose ActiveStorage::Previewer#logger in API docs [ci skip] | George Claghorn | 2017-12-31 | 1 | -2/+2 | |
| | | | | | | | | Clarify that it's public API intended for use by third-party previewers. It shouldn't be removed without deprecation even though it isn't used by the built-in previewers. | |||||
* | | Suppress noise from drawing command invocations | George Claghorn | 2017-12-31 | 1 | -1/+1 | |
| | | ||||||
* | | Append extension to tempfile name | George Claghorn | 2017-12-31 | 1 | -1/+1 | |
|/ | | | | | | Fixes analyzing an SVG image without an XML declaration. ImageMagick occasionally looks to the extension when it can't discern the type of an image file from its contents. References #31356. | |||||
* | Restrict variants to variable image blobs | George Claghorn | 2017-12-15 | 2 | -0/+3 | |
| | ||||||
* | Merge branch 'master' into activestorage-guide | Jeffrey Guenther | 2017-12-14 | 2 | -2/+6 | |
|\ | ||||||
| * | Merge pull request #31391 from ↵ | Eileen M. Uchitelle | 2017-12-13 | 1 | -1/+5 | |
| |\ | | | | | | | | | | | | | 5t111111/fix-active_storage-installation-failure-in-engine Fix active_storage installation failure when in engine | |||||
| | * | Invoke app-prefixed active storage task when in engine | Hirofumi Wakasugi | 2017-12-13 | 1 | -1/+5 | |
| | | | ||||||
| * | | Return `nil` instead of `false` if raise `Azure::Core::Http::HTTPError` | Yoshiyuki Hirano | 2017-12-12 | 1 | -1/+1 | |
| |/ | | | | | | | | | | | | | * If it raise error `Azure::Core::Http::HTTPError`, return `nil` instead of `false` in `ActiveStorage::Service::AzureStorageService#delete`. * Other services behave as same as this. | |||||
* | | Merge branch 'master' into activestorage-guide | Jeffrey Guenther | 2017-12-08 | 12 | -35/+135 | |
|\| | ||||||
| * | Swap raw video width and height if angle is 90 or 270 degrees | George Claghorn | 2017-12-08 | 1 | -1/+13 | |
| | | ||||||
| * | Fix customizing Content-Type via GCS service URLs | George Claghorn | 2017-12-07 | 1 | -1/+7 | |
| | | ||||||
| * | Fix instrumention name: delete_prefixed like the others. | Kasper Timm Hansen | 2017-12-03 | 1 | -1/+1 | |
| | | ||||||
| * | Purge variants with their blobs | George Claghorn | 2017-12-02 | 7 | -29/+79 | |
| | | ||||||
| * | Make ASt previewer/analyzer binary paths configurable | George Claghorn | 2017-12-01 | 4 | -4/+32 | |
| | | ||||||
| * | Add ActiveStorage::Previewer#logger to match ActiveStorage::Analyzer#logger | George Claghorn | 2017-11-30 | 1 | -0/+4 | |
| | |