packages feed

yesod-bin 1.4.13.1 → 1.4.13.2

raw patch · 8 files changed

+69/−31 lines, 8 files

Files

hsfiles/minimal.hsfiles view
@@ -32,13 +32,17 @@ *.hi *.o *.sqlite3+*.sqlite3-shm+*.sqlite3-wal .hsenv* cabal-dev/+.stack-work/ yesod-devel/ .cabal-sandbox cabal.sandbox.config .DS_Store *.swp+*.keter  {-# START_FILE Add.hs #-} {-# LANGUAGE OverloadedStrings #-}
hsfiles/mongo.hsfiles view
@@ -32,13 +32,17 @@ *.hi *.o *.sqlite3+*.sqlite3-shm+*.sqlite3-wal .hsenv* cabal-dev/+.stack-work/ yesod-devel/ .cabal-sandbox cabal.sandbox.config .DS_Store *.swp+*.keter  {-# START_FILE Application.hs #-} {-# OPTIONS_GHC -fno-warn-orphans #-}@@ -81,7 +85,7 @@ mkYesodDispatch "App" resourcesApp  -- | This function allocates resources (such as a database connection pool),--- performs initialization and return a foundation datatype value. This is also+-- performs initialization and returns a foundation datatype value. This is also -- the place to put your migrate statements to have automatic database -- migrations handled by Yesod. makeFoundation :: AppSettings -> IO App@@ -101,7 +105,7 @@     return App {..}  -- | Convert our foundation to a WAI Application by calling @toWaiAppPlain@ and--- applyng some additional middlewares.+-- applying some additional middlewares. makeApplication :: App -> IO Application makeApplication foundation = do     logWare <- mkRequestLogger def@@ -496,6 +500,7 @@                 GADTs                 GeneralizedNewtypeDeriving                 FlexibleContexts+                FlexibleInstances                 EmptyDataDecls                 NoMonomorphismRestriction                 DeriveDataTypeable@@ -507,7 +512,7 @@                  , yesod                         >= 1.4.1      && < 1.5                  , yesod-core                    >= 1.4.6      && < 1.5                  , yesod-auth                    >= 1.4.0      && < 1.5-                 , yesod-static                  >= 1.4.0.3    && < 1.5+                 , yesod-static                  >= 1.4.0.3    && < 1.6                  , yesod-form                    >= 1.4.0      && < 1.5                  , classy-prelude                >= 0.10.2                  , classy-prelude-conduit        >= 0.10.2@@ -565,6 +570,7 @@                 GADTs                 GeneralizedNewtypeDeriving                 FlexibleContexts+                FlexibleInstances                 EmptyDataDecls                 NoMonomorphismRestriction                 DeriveDataTypeable@@ -940,7 +946,7 @@  # Use the following to automatically copy your bundle upon creation via `yesod # keter`. Uses `scp` internally, so you can set it to a remote destination-# copy-to: user@host:/opt/keter/incoming+# copy-to: user@host:/opt/keter/incoming/  # You can pass arguments to `scp` used above. This example limits bandwidth to # 1024 Kbit/s and uses port 2222 instead of the default 22@@ -9034,7 +9040,7 @@          Send it! <span class="glyphicon glyphicon-upload"></span>   <hr /> -  <li> And last but not least, Testing. In <em>tests/main.hs</em> you will find a #+  <li> And last but not least, Testing. In <em>test/Spec.hs</em> you will find a #     test suite that performs tests on this page. #     You can run your tests by doing: <pre>yesod test</pre> 
hsfiles/mysql.hsfiles view
@@ -32,13 +32,17 @@ *.hi *.o *.sqlite3+*.sqlite3-shm+*.sqlite3-wal .hsenv* cabal-dev/+.stack-work/ yesod-devel/ .cabal-sandbox cabal.sandbox.config .DS_Store *.swp+*.keter  {-# START_FILE Application.hs #-} {-# OPTIONS_GHC -fno-warn-orphans #-}@@ -82,7 +86,7 @@ mkYesodDispatch "App" resourcesApp  -- | This function allocates resources (such as a database connection pool),--- performs initialization and return a foundation datatype value. This is also+-- performs initialization and returns a foundation datatype value. This is also -- the place to put your migrate statements to have automatic database -- migrations handled by Yesod. makeFoundation :: AppSettings -> IO App@@ -119,7 +123,7 @@     return $ mkFoundation pool  -- | Convert our foundation to a WAI Application by calling @toWaiAppPlain@ and--- applyng some additional middlewares.+-- applying some additional middlewares. makeApplication :: App -> IO Application makeApplication foundation = do     logWare <- mkRequestLogger def@@ -510,6 +514,7 @@                 GADTs                 GeneralizedNewtypeDeriving                 FlexibleContexts+                FlexibleInstances                 EmptyDataDecls                 NoMonomorphismRestriction                 DeriveDataTypeable@@ -521,7 +526,7 @@                  , yesod                         >= 1.4.1      && < 1.5                  , yesod-core                    >= 1.4.6      && < 1.5                  , yesod-auth                    >= 1.4.0      && < 1.5-                 , yesod-static                  >= 1.4.0.3    && < 1.5+                 , yesod-static                  >= 1.4.0.3    && < 1.6                  , yesod-form                    >= 1.4.0      && < 1.5                  , classy-prelude                >= 0.10.2                  , classy-prelude-conduit        >= 0.10.2@@ -579,6 +584,7 @@                 GADTs                 GeneralizedNewtypeDeriving                 FlexibleContexts+                FlexibleInstances                 EmptyDataDecls                 NoMonomorphismRestriction                 DeriveDataTypeable@@ -952,7 +958,7 @@  # Use the following to automatically copy your bundle upon creation via `yesod # keter`. Uses `scp` internally, so you can set it to a remote destination-# copy-to: user@host:/opt/keter/incoming+# copy-to: user@host:/opt/keter/incoming/  # You can pass arguments to `scp` used above. This example limits bandwidth to # 1024 Kbit/s and uses port 2222 instead of the default 22@@ -9047,7 +9053,7 @@          Send it! <span class="glyphicon glyphicon-upload"></span>   <hr /> -  <li> And last but not least, Testing. In <em>tests/main.hs</em> you will find a #+  <li> And last but not least, Testing. In <em>test/Spec.hs</em> you will find a #     test suite that performs tests on this page. #     You can run your tests by doing: <pre>yesod test</pre> 
hsfiles/postgres-fay.hsfiles view
@@ -37,11 +37,13 @@ fay/Fay/Yesod.hs .hsenv* cabal-dev/+.stack-work/ yesod-devel/ .cabal-sandbox cabal.sandbox.config .DS_Store *.swp+*.keter  {-# START_FILE Application.hs #-} {-# OPTIONS_GHC -fno-warn-orphans #-}@@ -87,7 +89,7 @@ mkYesodDispatch "App" resourcesApp  -- | This function allocates resources (such as a database connection pool),--- performs initialization and return a foundation datatype value. This is also+-- performs initialization and returns a foundation datatype value. This is also -- the place to put your migrate statements to have automatic database -- migrations handled by Yesod. makeFoundation :: AppSettings -> IO App@@ -125,7 +127,7 @@     return $ mkFoundation pool  -- | Convert our foundation to a WAI Application by calling @toWaiAppPlain@ and--- applyng some additional middlewares.+-- applying some additional middlewares. makeApplication :: App -> IO Application makeApplication foundation = do     logWare <- mkRequestLogger def@@ -552,6 +554,7 @@                 GADTs                 GeneralizedNewtypeDeriving                 FlexibleContexts+                FlexibleInstances                 EmptyDataDecls                 NoMonomorphismRestriction                 RankNTypes@@ -564,7 +567,7 @@                  , yesod                         >= 1.4.1      && < 1.5                  , yesod-core                    >= 1.4.6      && < 1.5                  , yesod-auth                    >= 1.4.0      && < 1.5-                 , yesod-static                  >= 1.4.0.3    && < 1.5+                 , yesod-static                  >= 1.4.0.3    && < 1.6                  , yesod-form                    >= 1.4.0      && < 1.5                  , yesod-fay                     >= 0.7        && < 0.8                  , fay                           >= 0.21.2.1   && < 0.24@@ -623,6 +626,7 @@                 GADTs                 GeneralizedNewtypeDeriving                 FlexibleContexts+                FlexibleInstances                 EmptyDataDecls                 NoMonomorphismRestriction                 DeriveDataTypeable@@ -1011,7 +1015,7 @@  # Use the following to automatically copy your bundle upon creation via `yesod # keter`. Uses `scp` internally, so you can set it to a remote destination-# copy-to: user@host:/opt/keter/incoming+# copy-to: user@host:/opt/keter/incoming/  # You can pass arguments to `scp` used above. This example limits bandwidth to # 1024 Kbit/s and uses port 2222 instead of the default 22@@ -9162,7 +9166,7 @@          Send it! <span class="glyphicon glyphicon-upload"></span>   <hr /> -  <li> And last but not least, Testing. In <em>tests/main.hs</em> you will find a #+  <li> And last but not least, Testing. In <em>test/Spec.hs</em> you will find a #     test suite that performs tests on this page. #     You can run your tests by doing: <pre>yesod test</pre> 
hsfiles/postgres.hsfiles view
@@ -32,13 +32,17 @@ *.hi *.o *.sqlite3+*.sqlite3-shm+*.sqlite3-wal .hsenv* cabal-dev/+.stack-work/ yesod-devel/ .cabal-sandbox cabal.sandbox.config .DS_Store *.swp+*.keter  {-# START_FILE Application.hs #-} {-# OPTIONS_GHC -fno-warn-orphans #-}@@ -82,7 +86,7 @@ mkYesodDispatch "App" resourcesApp  -- | This function allocates resources (such as a database connection pool),--- performs initialization and return a foundation datatype value. This is also+-- performs initialization and returns a foundation datatype value. This is also -- the place to put your migrate statements to have automatic database -- migrations handled by Yesod. makeFoundation :: AppSettings -> IO App@@ -119,7 +123,7 @@     return $ mkFoundation pool  -- | Convert our foundation to a WAI Application by calling @toWaiAppPlain@ and--- applyng some additional middlewares.+-- applying some additional middlewares. makeApplication :: App -> IO Application makeApplication foundation = do     logWare <- mkRequestLogger def@@ -510,6 +514,7 @@                 GADTs                 GeneralizedNewtypeDeriving                 FlexibleContexts+                FlexibleInstances                 EmptyDataDecls                 NoMonomorphismRestriction                 DeriveDataTypeable@@ -521,7 +526,7 @@                  , yesod                         >= 1.4.1      && < 1.5                  , yesod-core                    >= 1.4.6      && < 1.5                  , yesod-auth                    >= 1.4.0      && < 1.5-                 , yesod-static                  >= 1.4.0.3    && < 1.5+                 , yesod-static                  >= 1.4.0.3    && < 1.6                  , yesod-form                    >= 1.4.0      && < 1.5                  , classy-prelude                >= 0.10.2                  , classy-prelude-conduit        >= 0.10.2@@ -579,6 +584,7 @@                 GADTs                 GeneralizedNewtypeDeriving                 FlexibleContexts+                FlexibleInstances                 EmptyDataDecls                 NoMonomorphismRestriction                 DeriveDataTypeable@@ -952,7 +958,7 @@  # Use the following to automatically copy your bundle upon creation via `yesod # keter`. Uses `scp` internally, so you can set it to a remote destination-# copy-to: user@host:/opt/keter/incoming+# copy-to: user@host:/opt/keter/incoming/  # You can pass arguments to `scp` used above. This example limits bandwidth to # 1024 Kbit/s and uses port 2222 instead of the default 22@@ -9047,7 +9053,7 @@          Send it! <span class="glyphicon glyphicon-upload"></span>   <hr /> -  <li> And last but not least, Testing. In <em>tests/main.hs</em> you will find a #+  <li> And last but not least, Testing. In <em>test/Spec.hs</em> you will find a #     test suite that performs tests on this page. #     You can run your tests by doing: <pre>yesod test</pre> 
hsfiles/simple.hsfiles view
@@ -32,13 +32,17 @@ *.hi *.o *.sqlite3+*.sqlite3-shm+*.sqlite3-wal .hsenv* cabal-dev/+.stack-work/ yesod-devel/ .cabal-sandbox cabal.sandbox.config .DS_Store *.swp+*.keter  {-# START_FILE Application.hs #-} {-# OPTIONS_GHC -fno-warn-orphans #-}@@ -79,7 +83,7 @@ mkYesodDispatch "App" resourcesApp  -- | This function allocates resources (such as a database connection pool),--- performs initialization and return a foundation datatype value. This is also+-- performs initialization and returns a foundation datatype value. This is also -- the place to put your migrate statements to have automatic database -- migrations handled by Yesod. makeFoundation :: AppSettings -> IO App@@ -96,7 +100,7 @@     return App {..}  -- | Convert our foundation to a WAI Application by calling @toWaiAppPlain@ and--- applyng some additional middlewares.+-- applying some additional middlewares. makeApplication :: App -> IO Application makeApplication foundation = do     logWare <- mkRequestLogger def@@ -427,6 +431,7 @@                 GADTs                 GeneralizedNewtypeDeriving                 FlexibleContexts+                FlexibleInstances                 EmptyDataDecls                 NoMonomorphismRestriction                 DeriveDataTypeable@@ -437,7 +442,7 @@     build-depends: base                          >= 4          && < 5                  , yesod                         >= 1.4.1      && < 1.5                  , yesod-core                    >= 1.4.6      && < 1.5-                 , yesod-static                  >= 1.4.0.3    && < 1.5+                 , yesod-static                  >= 1.4.0.3    && < 1.6                  , yesod-form                    >= 1.4.0      && < 1.5                  , classy-prelude                >= 0.10.2                  , classy-prelude-conduit        >= 0.10.2@@ -492,6 +497,7 @@                 GADTs                 GeneralizedNewtypeDeriving                 FlexibleContexts+                FlexibleInstances                 EmptyDataDecls                 NoMonomorphismRestriction                 DeriveDataTypeable@@ -855,7 +861,7 @@  # Use the following to automatically copy your bundle upon creation via `yesod # keter`. Uses `scp` internally, so you can set it to a remote destination-# copy-to: user@host:/opt/keter/incoming+# copy-to: user@host:/opt/keter/incoming/  # You can pass arguments to `scp` used above. This example limits bandwidth to # 1024 Kbit/s and uses port 2222 instead of the default 22@@ -8926,7 +8932,7 @@          Send it! <span class="glyphicon glyphicon-upload"></span>   <hr /> -  <li> And last but not least, Testing. In <em>tests/main.hs</em> you will find a #+  <li> And last but not least, Testing. In <em>test/Spec.hs</em> you will find a #     test suite that performs tests on this page. #     You can run your tests by doing: <pre>yesod test</pre> 
hsfiles/sqlite.hsfiles view
@@ -32,13 +32,17 @@ *.hi *.o *.sqlite3+*.sqlite3-shm+*.sqlite3-wal .hsenv* cabal-dev/+.stack-work/ yesod-devel/ .cabal-sandbox cabal.sandbox.config .DS_Store *.swp+*.keter  {-# START_FILE Application.hs #-} {-# OPTIONS_GHC -fno-warn-orphans #-}@@ -82,7 +86,7 @@ mkYesodDispatch "App" resourcesApp  -- | This function allocates resources (such as a database connection pool),--- performs initialization and return a foundation datatype value. This is also+-- performs initialization and returns a foundation datatype value. This is also -- the place to put your migrate statements to have automatic database -- migrations handled by Yesod. makeFoundation :: AppSettings -> IO App@@ -119,7 +123,7 @@     return $ mkFoundation pool  -- | Convert our foundation to a WAI Application by calling @toWaiAppPlain@ and--- applyng some additional middlewares.+-- applying some additional middlewares. makeApplication :: App -> IO Application makeApplication foundation = do     logWare <- mkRequestLogger def@@ -510,6 +514,7 @@                 GADTs                 GeneralizedNewtypeDeriving                 FlexibleContexts+                FlexibleInstances                 EmptyDataDecls                 NoMonomorphismRestriction                 DeriveDataTypeable@@ -521,7 +526,7 @@                  , yesod                         >= 1.4.1      && < 1.5                  , yesod-core                    >= 1.4.6      && < 1.5                  , yesod-auth                    >= 1.4.0      && < 1.5-                 , yesod-static                  >= 1.4.0.3    && < 1.5+                 , yesod-static                  >= 1.4.0.3    && < 1.6                  , yesod-form                    >= 1.4.0      && < 1.5                  , classy-prelude                >= 0.10.2                  , classy-prelude-conduit        >= 0.10.2@@ -579,6 +584,7 @@                 GADTs                 GeneralizedNewtypeDeriving                 FlexibleContexts+                FlexibleInstances                 EmptyDataDecls                 NoMonomorphismRestriction                 DeriveDataTypeable@@ -952,7 +958,7 @@  # Use the following to automatically copy your bundle upon creation via `yesod # keter`. Uses `scp` internally, so you can set it to a remote destination-# copy-to: user@host:/opt/keter/incoming+# copy-to: user@host:/opt/keter/incoming/  # You can pass arguments to `scp` used above. This example limits bandwidth to # 1024 Kbit/s and uses port 2222 instead of the default 22@@ -9065,7 +9071,7 @@          Send it! <span class="glyphicon glyphicon-upload"></span>   <hr /> -  <li> And last but not least, Testing. In <em>tests/main.hs</em> you will find a #+  <li> And last but not least, Testing. In <em>test/Spec.hs</em> you will find a #     test suite that performs tests on this page. #     You can run your tests by doing: <pre>yesod test</pre> 
yesod-bin.cabal view
@@ -1,5 +1,5 @@ name:            yesod-bin-version:         1.4.13.1+version:         1.4.13.2 license:         MIT license-file:    LICENSE author:          Michael Snoyman <michael@snoyman.com>