Skip to content

Commit 411cb38

Browse files
committed
Merge pull request #241 from go-sql-driver/changelog
Update Changelog
2 parents 65b0d74 + 3a382bb commit 411cb38

File tree

2 files changed

+16
-2
lines changed

2 files changed

+16
-2
lines changed

CHANGELOG.md

Lines changed: 15 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,15 +2,29 @@
22

33
Changes:
44

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 is no longer supported by this driver
6+
- Exported errors 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 also checks for a missing separating slash
10+
- Faster binary date / datetime to string formatting
11+
- Also exported the MySQLWarning type
12+
- mysqlConn.Close returns the first error encountered instead of ignoring all errors
13+
- writePacket() automatically writes the packet size to the header
14+
- readPacket() uses an iterative approach instead of the recursive approach to merge splitted packets
615

716
New Features:
817

918
- Logging of critical errors is configurable with `SetLogger`
19+
- Google CloudSQL support
1020

1121
Bugfixes:
1222

1323
- 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)
1428

1529

1630
## Version 1.1 (2013-11-02)

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@ A MySQL-Driver for Go's [database/sql](http://golang.org/pkg/database/sql) packa
4141

4242
## Requirements
4343
* Go 1.1 or higher
44-
* MySQL (Version 4.1 or higher), MariaDB or Percona Server
44+
* MySQL (Version 4.1 or higher), MariaDB, Percona Server, Google CloudSQL or Sphinx (Version 2.2.3 or higher)
4545

4646
---------------------------------------
4747

0 commit comments

Comments
 (0)