File tree 2 files changed +15
-1
lines changed 2 files changed +15
-1
lines changed Original file line number Diff line number Diff line change 1
1
# Changelog
2
2
3
+ ## 0.3.11 (December 6th, 2011)
4
+ * change mysql error detection strategy from using mysql_field_count to the more explicit mysql_errno
5
+ * bugfix to avoid race condition with active connections that error out
6
+ * revert back to using xmalloc/xfree for allocations
7
+ * avoid potentially unsafe Ruby C API usage w/o GVL
8
+ * reacquire GVL before retrying on EINTR on connect
9
+
3
10
## 0.3.10 (November 9th, 2011)
4
11
5
12
## 0.3.9 (November 9th, 2011)
48
55
* BREAKING CHANGE: the ActiveRecord adapter has been pulled into Rails 3.1 and is no longer part of the gem
49
56
* added Mysql2::Client.escape (class-level) for raw one-off non-encoding-aware escaping
50
57
58
+ ## 0.2.18 (December 6th, 2011)
59
+ * change mysql error detection strategy from using mysql_field_count to the more explicit mysql_errno
60
+ * bugfix to avoid race condition with active connections that error out
61
+ * revert back to using xmalloc/xfree for allocations
62
+ * avoid potentially unsafe Ruby C API usage w/o GVL
63
+ * reacquire GVL before retrying on EINTR on connect
64
+
51
65
## 0.2.17 (November 9th, 2011)
52
66
53
67
## 0.2.16 (November 9th, 2011)
Original file line number Diff line number Diff line change 1
1
module Mysql2
2
- VERSION = "0.3.10 "
2
+ VERSION = "0.3.11 "
3
3
end
You can’t perform that action at this time.
0 commit comments