aboutsummaryrefslogtreecommitdiffstats
path: root/railties/CHANGELOG
diff options
context:
space:
mode:
authorJeremy Kemper <jeremy@bitsweat.net>2007-03-18 13:35:16 +0000
committerJeremy Kemper <jeremy@bitsweat.net>2007-03-18 13:35:16 +0000
commit2632664f6459b387f64ba473712af049e543beb4 (patch)
tree37f76d2a8268f4e68bac0da0caae73efb53a4643 /railties/CHANGELOG
parent27ba5edef1c4264a8d1c0e54675723d37a391dd8 (diff)
downloadrails-2632664f6459b387f64ba473712af049e543beb4.tar.gz
rails-2632664f6459b387f64ba473712af049e543beb4.tar.bz2
rails-2632664f6459b387f64ba473712af049e543beb4.zip
Deprecation: remove components from controller paths. Canonicalize RAILS_ROOT by using File.expand_path on Windows, which doesn't have to worry about symlinks, and Pathname#realpath elsewhere, which respects symlinks in relative paths but is incompatible with Windows. Closes #6755.
git-svn-id: http://svn-commit.rubyonrails.org/rails/trunk@6445 5ecf4fe2-1ee6-0310-87b1-e25e094e27de
Diffstat (limited to 'railties/CHANGELOG')
-rw-r--r--railties/CHANGELOG4
1 files changed, 4 insertions, 0 deletions
diff --git a/railties/CHANGELOG b/railties/CHANGELOG
index 12d56e0ccb..9eff591e53 100644
--- a/railties/CHANGELOG
+++ b/railties/CHANGELOG
@@ -1,5 +1,9 @@
*SVN*
+* Canonicalize RAILS_ROOT by using File.expand_path on Windows, which doesn't have to worry about symlinks, and Pathname#realpath elsewhere, which respects symlinks in relative paths but is incompatible with Windows. #6755 [Jeremy Kemper, trevor]
+
+* Deprecation: remove components from controller paths. [Jeremy Kemper]
+
* Add environment variable RAILS_DEFAULT_DATABASE, which allows the builtin default of 'mysql' to be overridden. [Nicholas Seckar]
* Windows: include MinGW in RUBY_PLATFORM check. #2982 [okkez000@gmail.com, Kaspar Schiess]