All Versions
13
Latest Version
Avg Release Cycle
202 days
Latest Release
1342 days ago
Changelog History
Page 1
Changelog History
Page 1
-
v3001.5.0.0 Changes
October 07, 2019- Define a proper
MonadFail
instance forCGIT
. This is necessary to compile successfully withghc-8.8.x
Since that change affects our public API, a major version bump is necessary. - ๐ The build no longer supports ghc prior to version 8.x.
- Define a proper
-
v3001.4.0.0 Changes
January 25, 2019- โฌ๏ธ Drop obsolete Network.CGI.Compat module. The code in that module relied on
obsolete functions and types from
network
which have been dropped there in the latest 3.x release. Re-writing the Compat module to use the new types felt like it would defeat the purpose of the module, so we've dropped it instead. - โฌ๏ธ Dropped the dependency on
network
altogether. We neednetwork-uri
, really. Giving up support for ancient versions ofnetwork
allows us to drop thenetwork-uri
flag, too, simplifying our builds. - โฌ๏ธ Dropped support for versions of
mtl
prior to 2.2.x. That version was released almost 5 years ago, so we can probably drop the compatibility code (and theold-mtl
Cabal flag) without surprising anyone. - โ Added new
cookieHttpOnly
flag to theCookies
type. When set, the client's browser will prevent client side scripts from accessing the cookie.
- โฌ๏ธ Drop obsolete Network.CGI.Compat module. The code in that module relied on
obsolete functions and types from
-
v3001.3.1.0 Changes
๐ Changed
- Our error handling functions
throwCGI
,catchCGI
,tryCGI
, andhandleExceptionCGI
are deprecated. These functions are trivial aliases for the corresponding functions from theexceptions
library'sMonadCatch
class. Users should directly use those functions. They are more general and have better documentation. - ๐ Relax version constraints to allow building with network 2.8.x.
- Our error handling functions
-
v3001.3.0.3 Changes
November 14, 2018๐ Changed
- โฌ๏ธ Bumped upper version bounds for containers and time.
- โก๏ธ Updated to exceptions 0.10.x. This meant extending our
MonadMask
instance to provide thegeneralBracket
method that was added to the class in recent versions of the exceptions library. - โ The doctest suite would not work reliably with different versions of Cabal. Instead of going all out with a custom written build system to support it properly, we now run doctests as part of our CI builds but not as a part of the Cabal build any more.
- ๐ Fixed several compiler warnings in our code.
-
v3001.3.0.2 Changes
November 15, 2016๐ Changed
- โฌ๏ธ Bumped QuickCheck upper bound to version < 2.10
-
v3001.3.0.1 Changes
April 08, 2016๐ Changed
- โฌ๏ธ Bumped doctest to version < 0.12
-
v3001.3.0.0 Changes
March 04, 2016๐ Changed
- Cookie.hs: cookieExpires now has type
Maybe UTCTime
rather thanMaybe CalendarTime
- Protocol.hs: URL decoding functions no longer decode UTF-8 encoding
- Functor and Applicative instance of CGIT no longer constrain Functor or Applicative parameter to be an instance of Monad
- Cookie.hs: cookieExpires now has type
-
v3001.2.2.3 Changes
January 20, 2016๐ Changed
- ๐ CGI.hs haddock: Use web.archive.org link for CGI specification
-
v3001.2.2.2 Changes
April 06, 2015๐ Changed
- โ Added support for building with mtl < 2.2.1 via flags
-
v3001.2.2.1 Changes
March 28, 2015๐ Changed
- โฌ๏ธ Bumped exceptions version to < 0.9