|
1 | 1 | # Changelog
|
2 | 2 |
|
| 3 | +## 0.3.6 (June 17th, 2011) |
| 4 | +* fix bug in Time/DateTime range detection |
| 5 | +* (win32) fix bug where the Mysql2::Client object wasn't cleaned up properly if interrupted during a query |
| 6 | +* add Mysql2::Result#count (aliased as size) to get the row count for the dataset |
| 7 | + this can be especially helpful if you want to get the number of rows without having to inflate |
| 8 | + the entire dataset into ruby (since this happens lazily) |
| 9 | + |
3 | 10 | ## 0.3.5 (June 15th, 2011)
|
4 | 11 | * bug fix for Time/DateTime usage depending on 32/64bit Ruby
|
5 | 12 |
|
|
26 | 33 | * BREAKING CHANGE: the ActiveRecord adapter has been pulled into Rails 3.1 and is no longer part of the gem
|
27 | 34 | * added Mysql2::Client.escape (class-level) for raw one-off non-encoding-aware escaping
|
28 | 35 |
|
| 36 | +## 0.2.11 (June 17th, 2011) |
| 37 | +* fix bug in Time/DateTime range detection |
| 38 | +* (win32) fix bug where the Mysql2::Client object wasn't cleaned up properly if interrupted during a query |
| 39 | +* add Mysql2::Result#count (aliased as size) to get the row count for the dataset |
| 40 | + this can be especially helpful if you want to get the number of rows without having to inflate |
| 41 | + the entire dataset into ruby (since this happens lazily) |
| 42 | + |
| 43 | +## 0.2.10 (June 15th, 2011) |
| 44 | +* bug fix for Time/DateTime usage depending on 32/64bit Ruby |
| 45 | + |
29 | 46 | ## 0.2.9 (June 15th, 2011)
|
30 | 47 | * fix a long standing bug where a signal would interrupt rb_thread_select and put the connection in a permanently broken state
|
31 | 48 | * turn on casting in the ActiveRecord again, users can disable it if they need to for performance reasons
|
|
0 commit comments