CHANGELOG.md in postgres_ext-2.2.0 vs CHANGELOG.md in postgres_ext-2.3.0
- old
+ new
@@ -1,44 +1,53 @@
+## 2.3.0
+
+ * Fixes an issue with `where(table: { column: [] })` was not properly
+ converting the where clause to an equality instead of an `IN`
+ predicate (#111) - Dan McClain
+ * Adds support for Rails 4.1 - Dan McClain
+ * Adds support for hstore columns when using `contains` (#120) - Dan McClain
+ * Quotes CTE names (#130) - Dan McClain
+
## 2.2.0
* Adds Arel predications for `ANY` and `ALL` - Dan McClain
* Fixes errors with has\_and\_belongs\_to\_many associations - Jacob Swanner
* Adds with.recursive for recursive CTEs - Cody Cutrer
* Relation.with now accepts Arel::SelectMangers - Dan McClain
## 2.1.3
-
+
* Fixes Arel 4.0.1 issues - Dan McClain
* Prevents coversion of string to order statement - Dan McClain
-
+
## 2.1.2
* Fixes calls to count when ranking a relation - Dan McClain
-
+
## 2.1.1
-
+
* Fixes cte proxy so that it can create records - Dan McClain
-
+
## 2.1.0
-
+
* Support added for common table expressions - Dan McClain
* Support added for rank windowing function - Dan McClain
* Insert Code Climate badge into README - Doug Yun
-
+
# 2.0.0
-
+
* JRuby fixes - Dan McClain
* Updates docs and description - Dan McClain
* Rails 4 support - Dan McClain
-
+
# 1.0.0
-
+
1.0.0 is the last major and minor release for Rails 3.2.x. Postgres\_ext
will only receive bug fixes in the future. Also, bug fixes for 1.0.x
will come from PRs only, future development efforts are concentrated on
2.x.
-
+
* Fixing array tests in jruby - Dan McClain
* Removes encoding patches from PostgreSQLAdapter - Dan McClain
* Update documentation to reflect changes in 0.3.0 - Fabian Schwahn
* Allow conversion of string/text columns to array - Valentino
* Fix link to github issues in readme - Carlos Antonio da Silva
@@ -127,11 +136,11 @@
* Fixes integer array support - Keenan Brock (@kbrock)
* Adds more robust index types with add_index options :index_type and :where. - Keenan Brock (@kbrock)
## 0.0.8
-Fixes add and change column
+Fixes add and change column
## 0.0.7
Adds Arel predicate functions for array overlap operator (`&&`) and
INET/CIDR contained within operator (`<<`)
@@ -141,7 +150,7 @@
Lots of array related fixes:
* Model creation should no longer fail when not assigning a value to an
array column
* Array columns follow database defaults
-Migration fix (rn0 and gilltots)
+Migration fix (rn0 and gilltots)
Typos in README (bcardarella)