aboutsummaryrefslogtreecommitdiffstats
path: root/railties/CHANGELOG.md
diff options
context:
space:
mode:
authorKasper Timm Hansen <kaspth@gmail.com>2017-03-01 20:54:42 +0100
committerKasper Timm Hansen <kaspth@gmail.com>2017-03-01 20:55:29 +0100
commit88857f33956512270bbc410fd006f07075ee09d9 (patch)
treef8430152499e404a782b005dd21ba131c06f087b /railties/CHANGELOG.md
parent84bc9a50d35f57135932b3ef6d9984f87d1c2229 (diff)
downloadrails-88857f33956512270bbc410fd006f07075ee09d9.tar.gz
rails-88857f33956512270bbc410fd006f07075ee09d9.tar.bz2
rails-88857f33956512270bbc410fd006f07075ee09d9.zip
[ci skip] Add changelog entry for encrypted secrets.
Just dispatch to the command help itself for more info.
Diffstat (limited to 'railties/CHANGELOG.md')
-rw-r--r--railties/CHANGELOG.md14
1 files changed, 14 insertions, 0 deletions
diff --git a/railties/CHANGELOG.md b/railties/CHANGELOG.md
index 3afadc8cba..54bf0ec65e 100644
--- a/railties/CHANGELOG.md
+++ b/railties/CHANGELOG.md
@@ -1,5 +1,19 @@
## Rails 5.1.0.beta1 (February 23, 2017) ##
+* Add encrypted secrets in `config/secrets.yml.enc`.
+
+ Allow storing production secrets straight in the revision control system by
+ encrypting them.
+
+ Use `bin/rails secrets:setup` to opt-in by generating `config/secrets.yml.enc`
+ for the secrets themselves and `config/secrets.yml.key` for the encryption key.
+
+ Edit secrets with `bin/rails secrets:edit`.
+
+ See `bin/rails secrets:setup --help` for more.
+
+ *Kasper Timm Hansen*
+
* Fix running multiple tests in one `rake` command
e.g. `bin/rake test:models test:controllers`