aboutsummaryrefslogtreecommitdiffstats
path: root/activerecord/CHANGELOG.md
diff options
context:
space:
mode:
Diffstat (limited to 'activerecord/CHANGELOG.md')
-rw-r--r--activerecord/CHANGELOG.md22
1 files changed, 22 insertions, 0 deletions
diff --git a/activerecord/CHANGELOG.md b/activerecord/CHANGELOG.md
index 2a9694080e..e40106b1b7 100644
--- a/activerecord/CHANGELOG.md
+++ b/activerecord/CHANGELOG.md
@@ -1,3 +1,25 @@
+## Rails 5.0.0.beta4 (April 27, 2016) ##
+
+* PostgreSQL: Support Expression Indexes and Operator Classes.
+
+ Example:
+
+ create_table :users do |t|
+ t.string :name
+ t.index 'lower(name) varchar_pattern_ops'
+ end
+
+ Fixes #19090, #21765, #21819, #24359.
+
+ *Ryuta Kamizono*
+
+* MySQL: Prepared statements support.
+
+ To enable, set `prepared_statements: true` in config/database.yml.
+ Requires mysql2 0.4.4+.
+
+ *Ryuta Kamizono*
+
* Schema dumper: Indexes are now included in the `create_table` block
instead of listed afterward as separate `add_index` lines.