diff options
| author | Shulhan <ms@kilabit.info> | 2019-03-01 11:39:29 +0700 |
|---|---|---|
| committer | Shulhan <ms@kilabit.info> | 2019-03-01 11:39:29 +0700 |
| commit | bd8de0a789fb5f72f377beb2007d80a5f62c1c2f (patch) | |
| tree | 4fc9b40ea80e6b005bb4e338871b66ff2fd48a36 /go.sum | |
| parent | 0fb894f376db8ef67d9c71acc15a12852ae3015b (diff) | |
| download | pakakeh.go-0.4.0.tar.xz | |
Release share v0.4.0v0.4.0
=== New Features
* `email`: new package for working with Internet Message Format (RFC 5322)
* `email/dkim`: new package for parsing and creating DKIM signature
(RFC 6376)
* `email/maildir`: new package to manage email using maildir format
=== Enhancements
* `bytes`
** add function to copy slice
** add function to convert hexadecimal into byte
* `dns`
** add mapping of connection types and its names
** print the section question type by string
** add method to filter Message.Answer by specific query type
** add pool for UDP client
** add function to get list of system name servers
** make UDPClient Query routine safe
** increase the internal debug level from 2 to 3
* `http`
** add the charset type to content-type "text/plain"
** listen and serve using TLS if TLSConfig is defined
** add method to temporary redirect request to other location
* `ini`
** unexport the reader
** add method to get all variable values with the same key
* `io`
** rename Reader SkipSpace to SkipSpaces
** refactoring, export all fields for easy access on Reader
** add method read one line with line feed
** add method to unread N characters on Reader
** optimize ReadUntil without append
** add method to return the rest of unreaded buffer on Reader
** return the character separator that found on SkipUntil
* `memfs`
** add method to dump files as Go generated source
** add variable for allowing bypass file in memory
* `smtp` (work in progress)
** rename StorageFile to LocalStorage
** implement server with local handler
** add prefix Mail to methods in Storage interface
** use different port between normal listener and TLS listener
* `time`: add function to get micro seconds
=== Fixes
* all: fix the usage of "iota"
* `dns`: fix creating new UDP/TCP client without port number
* `memfs`: check for empty directory on Mount
Diffstat (limited to 'go.sum')
| -rw-r--r-- | go.sum | 9 |
1 files changed, 5 insertions, 4 deletions
@@ -1,4 +1,5 @@ -golang.org/x/crypto v0.0.0-20190225124518-7f87c0fbb88b h1:+/WWzjwW6gidDJnMKWLKLX1gxn7irUTF1fLpQovfQ5M= -golang.org/x/crypto v0.0.0-20190225124518-7f87c0fbb88b/go.mod h1:6SG95UA2DQfeDnfUPMdvaQW0Q7yPrPDi9nlGo2tz2b4= -golang.org/x/sys v0.0.0-20181228144115-9a3f9b0469bb h1:pf3XwC90UUdNPYWZdFjhGBE7DUFuK3Ct1zWmZ65QN30= -golang.org/x/sys v0.0.0-20181228144115-9a3f9b0469bb/go.mod h1:STP8DvDyc/dI5b8T5hshtkjS+E42TnysNCUPdjciGhY= +golang.org/x/crypto v0.0.0-20190228161510-8dd112bcdc25 h1:jsG6UpNLt9iAsb0S2AGW28DveNzzgmbXR+ENoPjUeIU= +golang.org/x/crypto v0.0.0-20190228161510-8dd112bcdc25/go.mod h1:djNgcEr1/C05ACkg1iLfiJU5Ep61QUkGW8qpdssI0+w= +golang.org/x/sys v0.0.0-20190215142949-d0b11bdaac8a/go.mod h1:STP8DvDyc/dI5b8T5hshtkjS+E42TnysNCUPdjciGhY= +golang.org/x/sys v0.0.0-20190228124157-a34e9553db1e h1:ZytStCyV048ZqDsWHiYDdoI2Vd4msMcrDECFxS+tL9c= +golang.org/x/sys v0.0.0-20190228124157-a34e9553db1e/go.mod h1:STP8DvDyc/dI5b8T5hshtkjS+E42TnysNCUPdjciGhY= |
