aboutsummaryrefslogtreecommitdiffstats
path: root/activestorage/CHANGELOG.md
diff options
context:
space:
mode:
authorRafael França <rafaelmfranca@gmail.com>2018-05-17 18:53:22 -0400
committerGitHub <noreply@github.com>2018-05-17 18:53:22 -0400
commitf018d4e118f34fd9b54ad45771ed575936678158 (patch)
tree62ea85ec38c97198d92200563449357e2b892660 /activestorage/CHANGELOG.md
parentd7edb8ecd0552635ea9631666abe910199ccf7c1 (diff)
parentfd0bd1bf682622f064ac437ceee4e1b2a6b6d3b9 (diff)
downloadrails-f018d4e118f34fd9b54ad45771ed575936678158.tar.gz
rails-f018d4e118f34fd9b54ad45771ed575936678158.tar.bz2
rails-f018d4e118f34fd9b54ad45771ed575936678158.zip
Merge pull request #32921 from joshsusser/master
Generate ActiveStorage attachment getter and setter methods in mixin
Diffstat (limited to 'activestorage/CHANGELOG.md')
-rw-r--r--activestorage/CHANGELOG.md6
1 files changed, 6 insertions, 0 deletions
diff --git a/activestorage/CHANGELOG.md b/activestorage/CHANGELOG.md
index 761d8f5021..7b724b7b81 100644
--- a/activestorage/CHANGELOG.md
+++ b/activestorage/CHANGELOG.md
@@ -1,3 +1,9 @@
+* Generated attachment getter and setter methods are created
+ within the model's `GeneratedAssociationMethods` module to
+ allow overriding and composition using `super`.
+
+ *Josh Susser*, *Jamon Douglas*
+
* Add `ActiveStorage::Blob#open`, which downloads a blob to a tempfile on disk
and yields the tempfile. Deprecate `ActiveStorage::Downloading`.