diff options
| author | Shulhan <ms@kilabit.info> | 2019-04-02 06:58:20 +0700 |
|---|---|---|
| committer | Shulhan <ms@kilabit.info> | 2019-04-02 06:58:20 +0700 |
| commit | dd6062c551c58f08efcad11985b95162d8dd2b55 (patch) | |
| tree | 751b723d134ba11b4644d77405633628a2763052 | |
| parent | 002e86067d3b2c90175f76f7525abc531be44476 (diff) | |
| download | pakakeh.go-0.5.0.tar.xz | |
Release v0.5.0v0.5.0
This minor release is dedicated for websocket package. Major refactoring
on server and client API to make it easy and extensible. The websocket is
now 100% pass the autobahn testsuite (minus compression feature).
=== New Features
* `cmd/smtpcli`: command line interface to SMTP client protocol
* `ints`: new package for working with slice of integer
* `ints64`: new package for working with slice of 64 bit integer
* `floats64`: new package for working with slice of 64 bit float
=== Enhancements
* `bytes`:
** change the Copy return type to non pointer
** add function to concat slice of byte or string into []byte
* `ints`: add function to remove value from slice
* `websockets`:
** Rewrite most of client and server APIs to be more simple and pass
autobahn testsuite
** Minimize global variables and unexport internal constants and
functions
** Handle interjected PING control frame from server
** Generate random mask only if masked field is set
| -rw-r--r-- | CHANGELOG.adoc | 11 |
1 files changed, 9 insertions, 2 deletions
diff --git a/CHANGELOG.adoc b/CHANGELOG.adoc index fb5faea4..6569c94b 100644 --- a/CHANGELOG.adoc +++ b/CHANGELOG.adoc @@ -4,10 +4,16 @@ This library is released each month, either at the end of month or at the first week of next month. -== share v0.5.0 (2019-04-xx) + +== share v0.5.0 (2019-04-02) + +This minor release is dedicated for websocket package. Major refactoring on +server and client API to make it easy and extensible. The websocket is now +100% pass the autobahn testsuite (minus compression feature). === New Features +* `cmd/smtpcli`: command line interface to SMTP client protocol * `ints`: new package for working with slice of integer * `ints64`: new package for working with slice of 64 bit integer * `floats64`: new package for working with slice of 64 bit float @@ -21,7 +27,8 @@ first week of next month. * `ints`: add function to remove value from slice * `websockets`: -** Rewrite most of client and server APIs to be more simple +** Rewrite most of client and server APIs to be more simple and pass autobahn + testsuite ** Minimize global variables and unexport internal constants and functions ** Handle interjected PING control frame from server ** Generate random mask only if masked field is set |
