Updated scaffolding

This commit is contained in:
Michael Snoyman 2015-02-08 09:58:24 +02:00
parent 887d7e8004
commit 7cc9700774
8 changed files with 17 additions and 13 deletions

View File

@ -1,3 +1,7 @@
## 1.4.3.6
* Scaffold update: use `addToken` instead of `addNonce`
## 1.4.3.5 ## 1.4.3.5
* Fix add-handler putting two routes on one line [#922](https://github.com/yesodweb/yesod/pull/922) * Fix add-handler putting two routes on one line [#922](https://github.com/yesodweb/yesod/pull/922)

View File

@ -557,7 +557,7 @@ test-suite test
build-depends: base build-depends: base
, PROJECTNAME , PROJECTNAME
, yesod-test >= 1.4.2 && < 1.5 , yesod-test >= 1.4.3 && < 1.5
, yesod-core , yesod-core
, yesod , yesod
, persistent , persistent
@ -9059,7 +9059,7 @@ spec = withApp $ do
request $ do request $ do
setMethod "POST" setMethod "POST"
setUrl HomeR setUrl HomeR
addNonce addToken
fileByLabel "Choose a file" "test/Spec.hs" "text/plain" -- talk about self-reference fileByLabel "Choose a file" "test/Spec.hs" "text/plain" -- talk about self-reference
byLabel "What's on the file?" "Some Content" byLabel "What's on the file?" "Some Content"

View File

@ -568,7 +568,7 @@ test-suite test
build-depends: base build-depends: base
, PROJECTNAME , PROJECTNAME
, yesod-test >= 1.4.2 && < 1.5 , yesod-test >= 1.4.3 && < 1.5
, yesod-core , yesod-core
, yesod , yesod
, persistent , persistent
@ -9069,7 +9069,7 @@ spec = withApp $ do
request $ do request $ do
setMethod "POST" setMethod "POST"
setUrl HomeR setUrl HomeR
addNonce addToken
fileByLabel "Choose a file" "test/Spec.hs" "text/plain" -- talk about self-reference fileByLabel "Choose a file" "test/Spec.hs" "text/plain" -- talk about self-reference
byLabel "What's on the file?" "Some Content" byLabel "What's on the file?" "Some Content"

View File

@ -612,7 +612,7 @@ test-suite test
build-depends: base build-depends: base
, PROJECTNAME , PROJECTNAME
, yesod-test >= 1.4.2 && < 1.5 , yesod-test >= 1.4.3 && < 1.5
, yesod-core , yesod-core
, yesod , yesod
, persistent , persistent
@ -9189,7 +9189,7 @@ spec = withApp $ do
request $ do request $ do
setMethod "POST" setMethod "POST"
setUrl HomeR setUrl HomeR
addNonce addToken
fileByLabel "Choose a file" "test/Spec.hs" "text/plain" -- talk about self-reference fileByLabel "Choose a file" "test/Spec.hs" "text/plain" -- talk about self-reference
byLabel "What's on the file?" "Some Content" byLabel "What's on the file?" "Some Content"

View File

@ -568,7 +568,7 @@ test-suite test
build-depends: base build-depends: base
, PROJECTNAME , PROJECTNAME
, yesod-test >= 1.4.2 && < 1.5 , yesod-test >= 1.4.3 && < 1.5
, yesod-core , yesod-core
, yesod , yesod
, persistent , persistent
@ -9069,7 +9069,7 @@ spec = withApp $ do
request $ do request $ do
setMethod "POST" setMethod "POST"
setUrl HomeR setUrl HomeR
addNonce addToken
fileByLabel "Choose a file" "test/Spec.hs" "text/plain" -- talk about self-reference fileByLabel "Choose a file" "test/Spec.hs" "text/plain" -- talk about self-reference
byLabel "What's on the file?" "Some Content" byLabel "What's on the file?" "Some Content"

View File

@ -481,7 +481,7 @@ test-suite test
build-depends: base build-depends: base
, PROJECTNAME , PROJECTNAME
, yesod-test >= 1.4.2 && < 1.5 , yesod-test >= 1.4.3 && < 1.5
, yesod-core , yesod-core
, yesod , yesod
, hspec >= 2.0.0 , hspec >= 2.0.0
@ -8950,7 +8950,7 @@ spec = withApp $ do
request $ do request $ do
setMethod "POST" setMethod "POST"
setUrl HomeR setUrl HomeR
addNonce addToken
fileByLabel "Choose a file" "test/Spec.hs" "text/plain" -- talk about self-reference fileByLabel "Choose a file" "test/Spec.hs" "text/plain" -- talk about self-reference
byLabel "What's on the file?" "Some Content" byLabel "What's on the file?" "Some Content"

View File

@ -568,7 +568,7 @@ test-suite test
build-depends: base build-depends: base
, PROJECTNAME , PROJECTNAME
, yesod-test >= 1.4.2 && < 1.5 , yesod-test >= 1.4.3 && < 1.5
, yesod-core , yesod-core
, yesod , yesod
, persistent , persistent
@ -9087,7 +9087,7 @@ spec = withApp $ do
request $ do request $ do
setMethod "POST" setMethod "POST"
setUrl HomeR setUrl HomeR
addNonce addToken
fileByLabel "Choose a file" "test/Spec.hs" "text/plain" -- talk about self-reference fileByLabel "Choose a file" "test/Spec.hs" "text/plain" -- talk about self-reference
byLabel "What's on the file?" "Some Content" byLabel "What's on the file?" "Some Content"

View File

@ -1,5 +1,5 @@
name: yesod-bin name: yesod-bin
version: 1.4.3.5 version: 1.4.3.6
license: MIT license: MIT
license-file: LICENSE license-file: LICENSE
author: Michael Snoyman <michael@snoyman.com> author: Michael Snoyman <michael@snoyman.com>