hack-frontend-monadcgi 0.0.1 → 0.0.2
raw patch · 2 files changed
+4/−5 lines, 2 filesPVP ok
version bump matches the API change (PVP)
API changes (from Hackage documentation)
Files
Hack/Frontend/MonadCGI.hs view
@@ -19,13 +19,12 @@ cgiToApp :: CGI CGIResult -> Application cgiToApp cgi env = do- let vars = http env+ let vars = map (first fixVarName) (http env)++ getCgiVars env input = hackInput env (inputs, body') = decodeInput vars input req = CGIRequest- { cgiVars = Map.fromList $ map (first fixVarName) vars- ++ getCgiVars env- , cgiInputs = inputs+ { cgiVars = Map.fromList $ vars+ , cgiInputs = inputs , cgiRequestBody = body' } (headers'', output') <- runCGIT cgi req
hack-frontend-monadcgi.cabal view
@@ -1,5 +1,5 @@ name: hack-frontend-monadcgi-version: 0.0.1+version: 0.0.2 license: BSD3 license-file: LICENSE author: Michael Snoyman <michael@snoyman.com>