File tree Expand file tree Collapse file tree 1 file changed +15
-1
lines changed Expand file tree Collapse file tree 1 file changed +15
-1
lines changed Original file line number Diff line number Diff line change 2
2
3
3
Changes:
4
4
5
- - Version v1 of the driver is will not be maintained anymore. Go 1.0 now is not supported by this driver anymore.
5
+ - Version v1 of the driver is will not be maintained anymore. Go 1.0 now is not supported by this driver anymore
6
+ - The errors are now exported to allow easy checking from application code
7
+ - Enabled TCP Keepalives on TCP connections
8
+ - Optimized INFILE handling (better buffer size calculation, lazy init, ...)
9
+ - The DSN parser now also checks for a missing separating slash
10
+ - Faster binary date / datetime to string formatting
11
+ - The MySQLWarning type is now also exported
12
+ - mysqlConn.Close now returns the first error encountered
13
+ - writePacket() now automatically writes the packet size to the header
14
+ - readPacket() now uses an iterative approach instead of the recursive approach to merge splitted packets
6
15
7
16
New Features:
8
17
9
18
- Logging of critical errors is configurable with ` SetLogger `
19
+ - Google CloudSQL support
10
20
11
21
Bugfixes:
12
22
13
23
- Allow more than 32 parameters in prepared statements
24
+ - Various old_password fixes
25
+ - Fixed TestConcurrent test to pass Go's race detection
26
+ - Fixed appendLengthEncodedInteger for large numbers
27
+ - Renamed readLengthEnodedString to readLengthEncodedString and skipLengthEnodedString to skipLengthEncodedString (fixed typo)
14
28
15
29
16
30
## Version 1.1 (2013-11-02)
You can’t perform that action at this time.
0 commit comments