diff options
| author | Shulhan <m.shulhan@gmail.com> | 2020-07-05 20:21:40 +0700 |
|---|---|---|
| committer | Shulhan <m.shulhan@gmail.com> | 2020-07-05 20:22:51 +0700 |
| commit | 74a62f29f6566efd6379e2a90c88b878ca59ad3d (patch) | |
| tree | b95c539e73e6cf55e1c735433f5952adec8a2194 | |
| parent | d1357989684739de20567338537f1ffdee12c849 (diff) | |
| download | pakakeh.go-0.17.0.tar.xz | |
Release share v0.17.0 (2020-07-05)v0.17.0
=== Breaking changes
* dns: replace RDataText with plain []byte
* http: add parameter headers to client methods
* http: return the http.Response as the first parameter
=== Bug fixes
* http: initialize TLSClientConfig only if insecure is true
* io: truncate file on Copy
* websocket: fix race on pingTicker when stopping server
=== Enhancements
* http: check for possible index.html file on getFSNode
* http: add method Delete
* http: add method Stop for HTTP server
* http: check the number of bytes written on ResponseWriter.Write
* http: log error if path not exist if debug value is set to 3 or greater
* smtp: check for EOF when receiving data from server
| -rw-r--r-- | CHANGELOG.adoc | 33 | ||||
| -rw-r--r-- | share.go | 2 |
2 files changed, 34 insertions, 1 deletions
diff --git a/CHANGELOG.adoc b/CHANGELOG.adoc index b3751d85..9e9062f3 100644 --- a/CHANGELOG.adoc +++ b/CHANGELOG.adoc @@ -3,6 +3,39 @@ This library is released each month, usually at the first week of month. +== share v0.17.0 (2020-07-05) + +=== Breaking changes + +* dns: replace RDataText with plain []byte + +* http: add parameter headers to client methods + +* http: return the http.Response as the first parameter + +=== Bug fixes + +* http: initialize TLSClientConfig only if insecure is true + +* io: truncate file on Copy + +* websocket: fix race on pingTicker when stopping server + +=== Enhancements + +* http: check for possible index.html file on getFSNode + +* http: add method Delete + +* http: add method Stop for HTTP server + +* http: check the number of bytes written on ResponseWriter.Write + +* http: log error if path not exist if debug value is set to 3 or greater + +* smtp: check for EOF when receiving data from server + + == share v0.16.0 (2020-06-05) === Breaking changes @@ -10,5 +10,5 @@ package share const ( // Version of this module. - Version = "0.16.0" + Version = "0.17.0" ) |
