diff options
author | Andrew White <pixeltrix@users.noreply.github.com> | 2018-04-19 14:09:21 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2018-04-19 14:09:21 +0100 |
commit | 1a32e058a3a9b5f2e7b2930e1177de2f23aa8555 (patch) | |
tree | ae216f1a7f832ae8a14f380f21b647d66c7717da /railties/CHANGELOG.md | |
parent | 9cfbcce8ad134b1b3153d4a4d08207bf1e3d0598 (diff) | |
parent | 4c6c3575c66ce10043c9ea04023788890a228de8 (diff) | |
download | rails-1a32e058a3a9b5f2e7b2930e1177de2f23aa8555.tar.gz rails-1a32e058a3a9b5f2e7b2930e1177de2f23aa8555.tar.bz2 rails-1a32e058a3a9b5f2e7b2930e1177de2f23aa8555.zip |
Merge pull request #32627 from jlduran/make-master-key-readable-only-by-owner
Make the master.key readable only by the owner
Diffstat (limited to 'railties/CHANGELOG.md')
-rw-r--r-- | railties/CHANGELOG.md | 17 |
1 files changed, 17 insertions, 0 deletions
diff --git a/railties/CHANGELOG.md b/railties/CHANGELOG.md index 071a649956..a4d4a87a8b 100644 --- a/railties/CHANGELOG.md +++ b/railties/CHANGELOG.md @@ -1,3 +1,20 @@ +* Make the master.key file read-only for the owner upon generation on + POSIX-compliant systems. + + Previously: + + $ ls -l config/master.key + -rw-r--r-- 1 owner group 32 Jan 1 00:00 master.key + + Now: + + $ ls -l config/master.key + -rw------- 1 owner group 32 Jan 1 00:00 master.key + + Fixes #32604. + + *Jose Luis Duran* + * Deprecate support for using the `HOST` environment to specify the server IP. The `BINDING` environment should be used instead. |