From f808f288da8c5595c917b3b097e431f2c7113722 Mon Sep 17 00:00:00 2001 From: Julien Schmidt Date: Wed, 16 Nov 2016 19:12:15 +0800 Subject: [PATCH 1/3] Update CHANGELOG --- CHANGELOG.md | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 617ad80fc..3c78bf46d 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,4 +1,4 @@ -## HEAD +## Version 1.3 (2016-11-16) Changes: @@ -8,6 +8,8 @@ Changes: - TLS ServerName defaults to the host (#283) - Refactoring (#400, #410, #437) - Adjusted documentation for second generation CloudSQL (#485) + - Documented DSN system var quoting rules (#502) + - Made statement.Close() calls idempotent to avoid errors in Go 1.6+ (#512) New Features: @@ -21,6 +23,7 @@ New Features: - Support for JSON field type (#414) - Support for multi-statements and multi-results (#411, #431) - DSN parameter to set the driver-side max_allowed_packet value manually (#489) + - Native password authentication plugin support (#494) Bugfixes: @@ -38,6 +41,8 @@ Bugfixes: - Fixed parsing of floats into float64 when placeholders are used (#434) - Fixed DSN tests with Go 1.7+ (#459) - Handle ERR packets while waiting for EOF (#473) + - Invalidate connection on error while discarding additional results (#513) + - Allow terminating packets of length 0 (#516) ## Version 1.2 (2014-06-03) From ac063d1407c5f577fcbd7b1230ac9b780038670e Mon Sep 17 00:00:00 2001 From: Julien Schmidt Date: Wed, 16 Nov 2016 19:12:57 +0800 Subject: [PATCH 2/3] README: Removed most recent version and build status --- README.md | 4 ---- 1 file changed, 4 deletions(-) diff --git a/README.md b/README.md index 25dcdc8f2..a16012f81 100644 --- a/README.md +++ b/README.md @@ -4,10 +4,6 @@ A MySQL-Driver for Go's [database/sql](http://golang.org/pkg/database/sql) packa ![Go-MySQL-Driver logo](https://raw.github.com/wiki/go-sql-driver/mysql/gomysql_m.png "Golang Gopher holding the MySQL Dolphin") -**Latest stable Release:** [Version 1.2 (June 03, 2014)](https://github.com/go-sql-driver/mysql/releases) - -[![Build Status](https://travis-ci.org/go-sql-driver/mysql.png?branch=master)](https://travis-ci.org/go-sql-driver/mysql) - --------------------------------------- * [Features](#features) * [Requirements](#requirements) From 05378736058f9825ea27d266288a1a1034642be1 Mon Sep 17 00:00:00 2001 From: Julien Schmidt Date: Tue, 29 Nov 2016 13:35:55 +0800 Subject: [PATCH 3/3] Update CHANGELOG --- CHANGELOG.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 3c78bf46d..6bcad7eaa 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,4 +1,4 @@ -## Version 1.3 (2016-11-16) +## Version 1.3 (2016-12-01) Changes: @@ -23,7 +23,7 @@ New Features: - Support for JSON field type (#414) - Support for multi-statements and multi-results (#411, #431) - DSN parameter to set the driver-side max_allowed_packet value manually (#489) - - Native password authentication plugin support (#494) + - Native password authentication plugin support (#494, #524) Bugfixes: