network-uri-2.6.4.1 (2021-02-07)
* Fix: Restore "Safe" designation which was accidentally removed.
network-uri-2.6.4.0 (2021-02-07)
* Add compatibility with GHC 9.0.1.
network-uri-2.6.3.0 (2020-02-18)
* Add official support for SafeHaskell NOTE: This is the first version
whose SafeHaskell properties have become an intentional part of the
API contract; previous versions were merely accidentally
safe-inferred (or not depending on various factors; in other words,
this was a fragile property).
* Derive Lift instances using DeriveLift extension, when available.
network-uri-2.6.2.0 (2020-01-30)
* Mark the modules as Safe for SafeHaskell.
network-uri-2.6.2.0 (2020-01-30)
* Merge network-uri-static (Network.URI.Static) into this package,
which offers a way to parse URI strings at compile time.
* Add Lenses for the URI types
* Add Generic instances for the URI type
* Add Lift instances for the URI type
* Optimize isReserved and related character-class functions.
* Start to add some benchmarks for performance analysis
* Fix a bug: Correctly parse IPv6 addresses in URIs.
* Add rectify which normalizes a URI if it is missing certain
separator characters required by the module. Some users found adding
those characters inconvenient when building a URI from parts.
* Add nullURIAuth and uriAuthToString, paralleling nullURI and
uriToString.
Version 1.5.5
* QUIC support #419#427#428#430#433#441
* Server ECDSA for P-256 #436
* Sort ciphersuites based on hardware-acceleration support #439
* Sending no_application_protocol #440
* Internal improvements #426#431
Version 1.5.4
* Restore interoperability with early Java 6 #422
* Test cleanups for timeout and async usage #416
0.28
* Add hash constant time capability
* Prevent possible overflow during hashing by hashing in 4GB chunks
0.27
* Optimise AES GCM and CCM
* Optimise P256R1 implementation
* Various AES-NI building improvements
* Add better ECDSA support
* Add XSalsa derive
* Implement square roots for ECC binary curve
* Various tests and benchmarks
Changes in 0.15.0.1
* Bug in generation of Int/Word in both uniform and uniformR is
fixed. (#75)
Changes in 0.15.0.0
* withSystemRandomST and createSystemSeed are added.
* withSystemRandom is deprecated.
* random>=1.2 is dependency of mwc-random.
* Instances for type classes StatefulGen & FrozenGen defined in
random-1.2 are added for Gen.
* Functions in System.Random.MWC.Distributions and
System.Random.MWC.CondensedTable now work with arbitrary StatefulGen
* System.Random.MWC.uniformVector now works with arbitrary StatefulGen
as well and uses in-place initialization instead of generateM. It
should be faster for anything but IO and ST (those shoud remain
same).
Changes in 0.3.4.2
* Fixed crash in invIncompleteBeta (#68) for some inputs initial
approximation was computed incorrectly.
Changes in 0.3.4.1
* Precision of incompleteGamma improved.
Changes in 0.3.4.0
* Dependency on vector-th-unbox is dropped. All instances are written
by hand now.