Skip to content

Commit

Permalink
update files for 0.2.7 release
Browse files Browse the repository at this point in the history
  • Loading branch information
brianmario committed Mar 28, 2011
1 parent ef2552c commit 1eee4ec
Show file tree
Hide file tree
Showing 2 changed files with 24 additions and 2 deletions.
24 changes: 23 additions & 1 deletion CHANGELOG.md
@@ -1,7 +1,29 @@
# Changelog

## HEAD
## 0.2.7 (March 28th, 2011)
* various fixes for em_mysql2 and fiber usage
* use our own Mysql2IndexDefinition class for better compatibility across ActiveRecord versions
* ensure the query is a string earlier in the Mysql2::Client#query codepath for 1.9
* only set binary ruby encoding on fields that have a binary flag *and* encoding set
* a few various optimizations
* add support for :read_timeout to be set on a connection
* Fix to install with MariDB on Windows
* add fibered em connection without activerecord
* fix some 1.9.3 compilation warnings
* add LD_RUN_PATH when using hard coded mysql paths - this should help users with MySQL installed in non-standard locations
* for windows support, duplicate the socket from libmysql and create a temporary CRT fd
* fix for handling years before 1970 on Windows
* fixes to the Fiber adapter
* set wait_timeout maximum on Windows to 2147483
* update supported range for Time objects
* upon being required, make sure the libmysql we're using is the one we were built against
* add Mysql2::Client#thread_id
* add Mysql2::Client#ping
* switch connection check in AR adapter to use Mysql2::Client#ping for efficiency
* prefer linking against thread-safe version of libmysqlclient
* define RSTRING_NOT_MODIFIED for an awesome rbx speed boost
* expose Mysql2::Client#encoding in 1.9, make sure we set the error message and sqlstate encodings accordingly
* do not segfault when raising for invalid charset (found in 1.9.3dev)

## 0.2.6 (October 19th, 2010)
* version bump since the 0.2.5 win32 binary gems were broken
Expand Down
2 changes: 1 addition & 1 deletion lib/mysql2/version.rb
@@ -1,3 +1,3 @@
module Mysql2
VERSION = "0.2.6"
VERSION = "0.2.7"
end

0 comments on commit 1eee4ec

Please sign in to comment.