Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | 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 | 10 | -31/+107 |
| | |||||
* | 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 |
| | |||||
* | Use `credentials` instead of `keyfile` in GCS sevice | yuuji.yaginuma | 2017-11-29 | 2 | -1/+3 |
| | | | | | | | | | | | | | The `keyfile` was renamed to `credentials` in `google-cloud-storage` 1.8.0. https://github.com/GoogleCloudPlatform/google-cloud-ruby/blob/master/google-cloud-storage/CHANGELOG.md#180--2017-11-14 Although `keyfile` can still be used, but it looks like deprecate. https://github.com/GoogleCloudPlatform/google-cloud-ruby/blob/ddf7b2a856d676316525eb581c1a4cc83ca6097b/google-cloud-storage/lib/google/cloud/storage.rb#L589...L590 Therefore, I think that should use `credentials` in newly generated applications. Ref: https://github.com/GoogleCloudPlatform/google-cloud-ruby/issues/1802 | ||||
* | Preparing for 5.2.0.beta2 release | Rafael Mendonça França | 2017-11-28 | 3 | -2/+9 |
| | |||||
* | Fix typos and add a few suggestions | Fatos Morina | 2017-11-28 | 1 | -0/+14 |
| | |||||
* | Include migration files in gem | yuuji.yaginuma | 2017-11-28 | 1 | -1/+1 |
| | | | | Fixes #31245 | ||||
* | Preparing for 5.2.0.beta1 release | Rafael Mendonça França | 2017-11-27 | 3 | -2/+4 |
| | |||||
* | Update yarn lock | Rafael Mendonça França | 2017-11-27 | 1 | -10/+0 |
| | |||||
* | Avoid connecting to GCS during app boot | George Claghorn | 2017-11-23 | 2 | -12/+14 |
| | |||||
* | Fix loading ActiveStorage::DiskController when CSRF protection is disabled ↵ | George Claghorn | 2017-11-21 | 1 | -1/+1 |
| | | | | by default | ||||
* | Fix that some ASt route helpers silently discarded options | George Claghorn | 2017-11-21 | 1 | -10/+10 |
| | |||||
* | Provide attachment writers | George Claghorn | 2017-11-20 | 2 | -0/+40 |
| | | | | | | | | | | | | | Permit creating a record and attaching files in a single step. # Before: User.create!(user_params.except(:avatar)).tap do |user| user.avatar.attach(user_params[:avatar]) end # After: User.create!(user_params) [Yoshiyuki Hirano & George Claghorn] | ||||
* | Load 5.2 defaults in ASt dummy app | George Claghorn | 2017-11-20 | 1 | -1/+1 |
| | |||||
* | Fix direct uploads to local service | George Claghorn | 2017-11-20 | 3 | -0/+6 |
| | | | | | | | | Disable CSRF protection for ActiveStorage::DiskController#update. The local disk service is intended to imitate a third-party service like S3 or GCS, so we don't care where direct uploads originate: they’re authorized by signed tokens. Closes #30290. [Shinichi Maeshima & George Claghorn] | ||||
* | Permit attaching files to new records | George Claghorn | 2017-11-19 | 3 | -5/+53 |
| | | | | Closes #31164. | ||||
* | Fix ASt CI failure with rack-test 0.7.1 | Ryuta Kamizono | 2017-11-20 | 1 | -1/+1 |
| | | | | Due to https://github.com/rack-test/rack-test/commit/5fd3631078e7c73aaed7d4371f70fb2a79384be9. | ||||
* | Introduce ActiveStorage::Attached::{One,Many}#detach | George Claghorn | 2017-11-14 | 3 | -7/+40 |
| | |||||
* | Preserve existing metadata when analyzing a blob | George Claghorn | 2017-11-13 | 3 | -3/+28 |
| | | | | Closes #31138. | ||||
* | Remove needless block parameter | George Claghorn | 2017-11-07 | 1 | -1/+1 |
| | |||||
* | Fix streaming downloads from S3/Azure Storage | George Claghorn | 2017-11-06 | 3 | -7/+17 |
| | | | Closes #31073. | ||||
* | Permit configuring Active Storage's job queue | George Claghorn | 2017-11-03 | 5 | -16/+13 |
| | |||||
* | Allow third-party previewers/analyzers to customize their tempdirs | George Claghorn | 2017-11-02 | 2 | -3/+10 |
| | |||||
* | Use the indicative mood consistently [ci skip] | George Claghorn | 2017-10-22 | 1 | -1/+1 |
| | |||||
* | Fix links [ci skip] | George Claghorn | 2017-10-22 | 1 | -2/+2 |
| | |||||
* | Extract metadata from images and videos | George Claghorn | 2017-10-22 | 25 | -37/+407 |
| | |||||
* | Merge pull request #30821 from GBH/active-storage-readme | Eileen M. Uchitelle | 2017-10-22 | 1 | -0/+4 |
|\ | | | | | ActiveStorage install note [skip ci] | ||||
| * | how do we install active_storage? [skip ci] | Oleg | 2017-10-06 | 1 | -0/+4 |
| | | |||||
* | | [Active Storage] require_relative => require | Akira Matsuda | 2017-10-21 | 1 | -1/+1 |
| | | |||||
* | | Use `require_relative` instead of `require` with full path in activestorage/ | bogdanvlviv | 2017-10-13 | 1 | -1/+1 |
| | | | | | | | | Related to #29417 | ||||
* | | Define path with __dir__ in activestorage/ | bogdanvlviv | 2017-10-13 | 3 | -4/+4 |
| | | | | | | | | Related to #29176 | ||||
* | | Clarify comment [ci skip] | George Claghorn | 2017-10-13 | 1 | -1/+1 |
| | | |||||
* | | Accept variation keys in #preview and #variant | George Claghorn | 2017-10-12 | 2 | -7/+12 |
| | | |||||
* | | Introduce ActiveStorage::Blob#representation | George Claghorn | 2017-10-12 | 4 | -0/+73 |
| | | |||||
* | | Replace variation key use with SHA256 of key to prevent long filenames | khall | 2017-10-05 | 2 | -1/+6 |
|/ | | | | | | | If a variant has a large set of options associated with it, the generated filename will be too long, causing Errno::ENAMETOOLONG to be raised. This change replaces those potentially long filenames with a much more compact SHA256 hash. Fixes #30662. | ||||
* | Fix third-party system libraries list in ActiveStorage::Preview [ci skip] | Yoshiyuki Hirano | 2017-10-04 | 1 | -2/+2 |
| | |||||
* | Associate blobs with their attachments | George Claghorn | 2017-10-03 | 1 | -0/+2 |
| | |||||
* | Fix `test "signed URL generation"` failure | Ryuta Kamizono | 2017-09-30 | 1 | -1/+1 |
| | | | | https://travis-ci.org/rails/rails/jobs/281044755#L5582-L5586 | ||||
* | Fix "warning: `*' interpreted as argument prefix" | Ryuta Kamizono | 2017-09-30 | 1 | -1/+1 |
| | |||||
* | Preview PDFs and videos | George Claghorn | 2017-09-28 | 35 | -68/+436 |
| | |||||
* | Set version in activestorage/package.json in proper format. | bogdanvlviv | 2017-09-27 | 1 | -1/+1 |
| | | | | | | `5.2.0.alpha` => `5.2.0-alpha` System versioning isn't compliant with npm. | ||||
* | Fixed broken `bundle exec rake install` | yalab | 2017-09-26 | 1 | -0/+2 |
| | |||||
* | Add missing word [ci skip] | George Claghorn | 2017-09-20 | 1 | -1/+1 |
| | |||||
* | Flesh out ActiveStorage::Filename docs | George Claghorn | 2017-09-20 | 1 | -6/+14 |
| | |||||
* | Merge pull request #30629 from yhirano55/add_scope_to_has_one_attached_macro | Eileen M. Uchitelle | 2017-09-20 | 2 | -0/+19 |
|\ | | | | | Add `with_attached_*` scope to `has_one_attached` macro | ||||
| * | Add `with_attached_*` scope to `has_one_attached` macro | Yoshiyuki Hirano | 2017-09-19 | 2 | -0/+19 |
| | | | | | | | | | | * For avoiding N+1 problem, added `with_attached_*` scope to `has_one_attached` macro. | ||||
* | | Remove unused require in ActiveStorage::Variation | Yoshiyuki Hirano | 2017-09-18 | 1 | -2/+0 |
|/ | |||||
* | Merge pull request #30628 from yhirano55/add_local_option_to_message_form | Ryuta Kamizono | 2017-09-17 | 1 | -1/+1 |
|\ | | | | | Add local option to Message form [ci skip] | ||||
| * | Add local option to Message form [ci skip] | Yoshiyuki Hirano | 2017-09-17 | 1 | -1/+1 |
| | | | | | | | | | | | | | | * MessagesController redirects to `GET /message/:id`. * It looks it don't expect XHR request. * `form_with` behaves for XHR by default. * I've added `local: true` option to `form_with`. |