Skip to content

Commit a9159dc

Browse files
committed
Update yesod-test.cabal
This fixes the following errors that occur when running `cabal check`. ``` The following errors are likely to affect your build negatively: Error: [git-protocol] Cloning over git:// might lead to an arbitrary code execution vulnerability. Furthermore, popular forges like GitHub do not support it. Use https:// or ssh:// instead. These warnings may cause trouble when distributing the package: Warning: [missing-upper-bounds] On library, these packages miss upper bounds: - aeson - attoparsec - blaze-builder - blaze-html - blaze-markup - bytestring - case-insensitive - conduit - containers - cookie - directory - html-conduit - http-types - HUnit - memory - mtl - network - pretty-show - process - text - time - transformers - wai - wai-extra - xml-conduit - xml-types - yesod-core Please add them. There is more information at https://pvp.haskell.org/ Error: Hackage would reject this package. ```
1 parent 330b575 commit a9159dc

File tree

2 files changed

+36
-31
lines changed

2 files changed

+36
-31
lines changed

yesod-test/ChangeLog.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,10 @@
11
# ChangeLog for yesod-test
22

3+
4+
## 1.6.22
5+
6+
- Add upper bounds to all build dependencies to comply with Hackage upload requirements. [#1873](https://github.com/yesodweb/yesod/pull/1873)
7+
38
## 1.6.21
49

510
* Add `browseBody` to yesod-test. [#1872](https://github.com/yesodweb/yesod/pull/1872)

yesod-test/yesod-test.cabal

Lines changed: 31 additions & 31 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
name: yesod-test
2-
version: 1.6.21
2+
version: 1.6.22
33
license: MIT
44
license-file: LICENSE
55
author: Nubis <nubis@woobiz.com.ar>
@@ -22,35 +22,35 @@ extra-source-files:
2222
library
2323
default-language: Haskell2010
2424
build-depends:
25-
aeson
26-
, attoparsec >=0.10
27-
, base >=4.10 && <5
28-
, blaze-builder
29-
, blaze-html >=0.5
30-
, blaze-markup
31-
, bytestring >=0.9
32-
, case-insensitive >=0.2
33-
, conduit
34-
, containers
35-
, cookie
36-
, directory
37-
, hspec-core >=2 && <3
38-
, html-conduit >=0.1
39-
, http-types >=0.7
40-
, HUnit >=1.2
41-
, memory
42-
, mtl >=2.0.0
43-
, network >=2.2
44-
, pretty-show >=1.6
45-
, process
46-
, text
47-
, time
48-
, transformers >=0.2.2
49-
, wai >=3.0
50-
, wai-extra
51-
, xml-conduit >=1.0
52-
, xml-types >=0.3
53-
, yesod-core >=1.6.17
25+
aeson >= 1.0 && < 2.3
26+
, attoparsec >= 0.10 && < 0.15
27+
, base >= 4.10 && < 5
28+
, blaze-builder >= 0.3.1 && < 0.5
29+
, blaze-html >= 0.5 && < 0.10
30+
, blaze-markup >= 0.6 && < 0.9
31+
, bytestring >= 0.9 && < 0.13
32+
, case-insensitive >= 0.2 && < 1.3
33+
, conduit >= 1.3 && < 1.4
34+
, containers >= 0.5 && < 0.8
35+
, cookie >= 0.4 && < 0.6
36+
, directory >= 1.2 && < 1.4
37+
, hspec-core >= 2 && < 3
38+
, html-conduit >= 0.1 && < 1.4
39+
, http-types >= 0.7 && < 0.13
40+
, HUnit >= 1.2 && < 1.7
41+
, memory >= 0.14 && < 0.19
42+
, mtl >= 2.0.0 && < 2.4
43+
, network >= 2.2 && < 3.3
44+
, pretty-show >= 1.6 && < 1.11
45+
, process >= 1.6 && < 1.7
46+
, text >= 1.2 && < 2.2
47+
, time >= 1.5 && < 1.13
48+
, transformers >= 0.2.2 && < 0.7
49+
, wai >= 3.0 && < 3.3
50+
, wai-extra >= 3.0 && < 3.2
51+
, xml-conduit >= 1.0 && < 1.10
52+
, xml-types >= 0.3 && < 0.4
53+
, yesod-core >= 1.6.17 && < 1.7
5454

5555
exposed-modules:
5656
Yesod.Test
@@ -87,4 +87,4 @@ test-suite test
8787

8888
source-repository head
8989
type: git
90-
location: git://github.com/yesodweb/yesod.git
90+
location: https://github.com/yesodweb/yesod.git

0 commit comments

Comments
 (0)