diff --git a/doc/go1.4.html b/doc/go1.4.html index ac63ade60a..d96440708d 100644 --- a/doc/go1.4.html +++ b/doc/go1.4.html @@ -637,12 +637,29 @@ See the relevant package documentation for more information about each change.
archive/zip package's
+Writer now supports a
+Flush method.
+compress/flate,
compress/gzip,
and compress/zlib
packages now support a Reset method
for the decompressors, allowing them to reuse buffers and improve performance.
+The compress/gzip package also has a
+Multistream method to control support
+for multistream files.
+crypto package now has a
+Signer interface, implemented by the
+PrivateKey types in
+crypto/ecdsa and
+crypto/rsa.
database/sql package can now list all registered
+Drivers.
+debug/dwarf package now supports
+UnspecifiedTypes.
+encoding/asn1 package,
optional elements with a default value will now only be omitted if they have that value.
@@ -685,6 +712,11 @@ in some cases, especially involving arrays, it can be faster.
There is no functional change.
encoding/xml package's
+Decoder can now report its input offset.
+fmt package,
formatting of pointers to maps has changed to be consistent with that of pointers
@@ -693,6 +725,28 @@ For instance, &map[string]int{"one": 1} now prints
&map[one: 1] rather than as a hexadecimal pointer value.
image package's
+Image
+implementations like
+RGBA and
+Gray have specialized
+RGBAAt and
+GrayAt methods alongside the general
+At method.
+image/png package now has an
+Encoder
+type to control the compression level used for encoding.
+math package now has a
+Nextafter32 function.
+net/http package's
Request type
@@ -721,6 +775,7 @@ The os package
now implements symbolic links on the Windows operating system
through the Symlink function.
Other operating systems already have this functionality.
+There is also a new Unsetenv function.