2010-12-01 12:19:09 -05:00
|
|
|
== 2.1.0 (unreleased)
|
|
|
|
|
|
|
|
* Enhancements
|
|
|
|
|
|
|
|
* AST is now Enumerable
|
2010-12-09 17:52:55 -05:00
|
|
|
* AND nodes are now n-ary nodes
|
2010-12-22 21:02:56 -05:00
|
|
|
* SQL Literals may be used as Attribute names
|
2011-01-04 23:27:34 -05:00
|
|
|
* Added Arel::Nodes::NamedFunction for representing generic SQL functions
|
2010-12-01 12:19:09 -05:00
|
|
|
|
2010-12-02 17:01:08 -05:00
|
|
|
* Deprecations
|
|
|
|
|
|
|
|
* Calls to `insert` are deprecated. Please use `compile_insert` then call
|
|
|
|
`to_sql` on the resulting object and execute that SQL.
|
|
|
|
|
2010-12-02 17:31:37 -05:00
|
|
|
* Calls to `update` are deprecated. Please use `compile_update` then call
|
|
|
|
`to_sql` on the resulting object and execute that SQL.
|
|
|
|
|
2010-12-02 18:45:00 -05:00
|
|
|
* Calls to `delete` are deprecated. Please use `compile_delete` then call
|
|
|
|
`to_sql` on the resulting object and execute that SQL.
|
|
|
|
|
2010-12-03 19:07:28 -05:00
|
|
|
* Arel::Table#joins is deprecated and will be removed in 3.0.0 with no
|
2010-12-03 19:04:36 -05:00
|
|
|
replacement.
|
|
|
|
|
2010-12-03 19:07:28 -05:00
|
|
|
* Arel::Table#columns is deprecated and will be removed in 3.0.0 with no
|
2010-12-03 19:04:36 -05:00
|
|
|
replacement.
|
|
|
|
|
2010-12-03 19:07:28 -05:00
|
|
|
* Arel::Table.table_cache is deprecated and will be removed in 3.0.0 with no
|
2010-12-03 19:04:36 -05:00
|
|
|
replacement.
|
|
|
|
|
2010-12-09 17:52:55 -05:00
|
|
|
* Arel::Nodes::And.new takes a single list instead of left and right.
|
|
|
|
|
2010-12-13 16:29:33 -05:00
|
|
|
* Arel::Table#primary_key is deprecated and will be removed in 3.0.0 with no
|
|
|
|
replacement.
|
|
|
|
|
2010-12-26 21:56:07 -05:00
|
|
|
* Arel::SelectManager#where_clauses is deprecated and will be removed in
|
|
|
|
3.0.0 with no replacement.
|
|
|
|
|
2010-12-06 23:28:33 -05:00
|
|
|
== 2.0.7 (unreleased)
|
|
|
|
|
|
|
|
* Bug Fixes
|
|
|
|
|
|
|
|
* Limit members are visited
|
2011-01-03 13:19:31 -05:00
|
|
|
* Fixing MSSQL TOP support
|
2010-12-06 23:28:33 -05:00
|
|
|
|
2010-12-01 12:11:30 -05:00
|
|
|
== 2.0.6 12/01/2010
|
|
|
|
|
|
|
|
* Bug Fixes
|
|
|
|
|
|
|
|
* Rails 3.0.x does not like that Node is Enumerable, so removing for now.
|
|
|
|
|
2010-11-30 14:09:56 -05:00
|
|
|
== 2.0.5 11/30/2010
|
2010-11-22 17:28:34 -05:00
|
|
|
|
2010-11-29 18:31:28 -05:00
|
|
|
* Enhancements
|
|
|
|
|
|
|
|
* Arel::Visitors::DepthFirst can walk your AST depth first
|
|
|
|
* Arel::Nodes::Node is enumerable, depth first
|
|
|
|
|
2010-11-22 17:28:34 -05:00
|
|
|
* Bug fixes
|
|
|
|
|
|
|
|
* #lock will lock SELECT statements "FOR UPDATE" on mysql
|
2010-11-23 19:24:41 -05:00
|
|
|
* Nodes::Node#not factory method added for creating Nodes::Not nodes
|
2010-11-23 21:22:42 -05:00
|
|
|
* Added an As node
|
2010-11-22 17:28:34 -05:00
|
|
|
|
2010-11-30 14:06:09 -05:00
|
|
|
* Deprecations
|
|
|
|
|
|
|
|
* Support for Subclasses of core classes will be removed in ARel version
|
|
|
|
2.2.0
|
|
|
|
|
2010-11-17 11:38:35 -05:00
|
|
|
== 2.0.4
|
|
|
|
|
|
|
|
* Bug fixes
|
|
|
|
|
|
|
|
* Speed improvements for Range queries. Thanks Rolf Timmermans!
|
|
|
|
|
2010-11-16 11:15:58 -05:00
|
|
|
== 2.0.3
|
|
|
|
|
|
|
|
* Bug fixes
|
|
|
|
|
|
|
|
* Fixing Oracle support
|
|
|
|
* Added a visitor for "Class" objects
|
|
|
|
|
2010-11-11 11:54:55 -05:00
|
|
|
== 2.0.2
|
|
|
|
|
|
|
|
* Bug fixes
|
|
|
|
|
|
|
|
* MySQL selects from DUAL on empty FROM
|
|
|
|
* Visitor translates nil to NULL
|
|
|
|
* Visitor translates Bignum properly
|
|
|
|
|
|
|
|
== 2.0.1
|
|
|
|
|
|
|
|
* Bug fixes
|
|
|
|
|
2010-10-16 17:40:45 -04:00
|
|
|
== 2.0.0 / 2010-08-01
|
|
|
|
* Enhancements
|
|
|
|
|
|
|
|
* Recreate library using the Visitor pattern.
|
|
|
|
http://en.wikipedia.org/wiki/Visitor_pattern
|
|
|
|
|
2010-03-10 17:05:00 -05:00
|
|
|
== 0.3.0 / 2010-03-10
|
2010-03-10 16:51:01 -05:00
|
|
|
|
|
|
|
* Enhancements
|
|
|
|
|
|
|
|
* Introduced "SQL compilers" for query generation.
|
|
|
|
* Added support for Oracle (Raimonds Simanovskis) and IBM/DB (Praveen Devarao).
|
|
|
|
* Improvements to give better support to ActiveRecord.
|
|
|
|
|
2010-02-05 12:19:55 -05:00
|
|
|
== 0.2.1 / 2010-02-05
|
2010-02-05 12:18:40 -05:00
|
|
|
|
|
|
|
* Enhancements
|
|
|
|
|
|
|
|
* Bump dependency version of activesupport to 3.0.0.beta
|
|
|
|
|
2010-01-31 21:27:16 -05:00
|
|
|
== 0.2.0 / 2010-01-31
|
2009-11-10 15:02:57 -05:00
|
|
|
|
|
|
|
* Ruby 1.9 compatibility
|
2010-01-31 21:27:16 -05:00
|
|
|
* Many improvements to support the Arel integration into ActiveRecord (see `git log v0.1.0..v0.2.0`)
|
|
|
|
* Thanks to Emilio Tagua and Pratik Naik for many significant contributions!
|
2009-11-10 15:02:57 -05:00
|
|
|
|
|
|
|
== 0.1.0 / 2009-08-06
|
|
|
|
|
|
|
|
* 1 major enhancement
|
|
|
|
|
|
|
|
* Birthday!
|