aboutsummaryrefslogtreecommitdiffstats
path: root/railties/CHANGELOG.md
diff options
context:
space:
mode:
authorAndrew White <pixeltrix@users.noreply.github.com>2018-04-19 14:09:21 +0100
committerGitHub <noreply@github.com>2018-04-19 14:09:21 +0100
commit1a32e058a3a9b5f2e7b2930e1177de2f23aa8555 (patch)
treeae216f1a7f832ae8a14f380f21b647d66c7717da /railties/CHANGELOG.md
parent9cfbcce8ad134b1b3153d4a4d08207bf1e3d0598 (diff)
parent4c6c3575c66ce10043c9ea04023788890a228de8 (diff)
downloadrails-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.md17
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.