From 610b45d94ea22a4da73b7328ec5daaf3a0135450 Mon Sep 17 00:00:00 2001 From: Alexander Batischev Date: Sun, 3 Mar 2024 21:34:34 +0300 Subject: [PATCH 01/15] Re-enable hakyll-convert 0.3.0.4@rev:7 allows text-2.1. --- build-constraints.yaml | 1 - 1 file changed, 1 deletion(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index f3bdbe98..0945e496 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -6909,7 +6909,6 @@ packages: - hadolint < 0 # tried hadolint-2.12.0, but its *library* requires the disabled package: language-docker - hadoop-streaming < 0 # tried hadoop-streaming-0.2.0.3, but its *library* requires bytestring >=0.10 && < 0.11 and the snapshot contains bytestring-0.12.0.2 - hadoop-streaming < 0 # tried hadoop-streaming-0.2.0.3, but its *library* requires text >=1.2.2.0 && < 1.3 and the snapshot contains text-2.1 - - hakyll-convert < 0 # tried hakyll-convert-0.3.0.4, but its *library* requires text >=1.2 && < 1.3 || >=2.0 && < 2.1 and the snapshot contains text-2.1 - hakyllbars < 0 # tried hakyllbars-1.0.1.0, but its *library* requires bytestring >=0.11.3 && < 0.12 and the snapshot contains bytestring-0.12.0.2 - hakyllbars < 0 # tried hakyllbars-1.0.1.0, but its *library* requires text >=2.0.2 && < 2.1 and the snapshot contains text-2.1 - hapistrano < 0 # tried hapistrano-0.4.8.0, but its *executable* requires optparse-applicative >=0.11 && < 0.17 and the snapshot contains optparse-applicative-0.18.1.0 From 32e771da8e88131b296f8532dbe0ca701592675f Mon Sep 17 00:00:00 2001 From: Dan Burton Date: Mon, 4 Mar 2024 09:02:51 -0800 Subject: [PATCH 02/15] added constraint "cookie < 0.5" per #7335 --- build-constraints.yaml | 3 +++ 1 file changed, 3 insertions(+) diff --git a/build-constraints.yaml b/build-constraints.yaml index 0945e496..c8fcdfbf 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -8552,6 +8552,9 @@ packages: # https://github.com/commercialhaskell/stackage/issues/7328 - ghc-lib-parser-ex < 9.8.0.1 + # https://github.com/commercialhaskell/stackage/issues/7335 + - cookie < 0.5 + # end of Stackage upper bounds # end of packages From 6ed075fac74547ceb8463d3e6eb4034e91156a7d Mon Sep 17 00:00:00 2001 From: Dan Burton Date: Mon, 4 Mar 2024 09:08:54 -0800 Subject: [PATCH 03/15] unconstrain tls per #7316 --- build-constraints.yaml | 6 +----- 1 file changed, 1 insertion(+), 5 deletions(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index c8fcdfbf..816e6fa5 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -5401,6 +5401,7 @@ packages: - crypto-pubkey - crypto-pubkey-openssh < 0 # 0.2.7 compile fail - crypto-random < 0 # 0.0.9 compile fail https://github.com/vincenthz/hs-crypto-random/issues/15 + - crypto-token # required by tls-session-manager >= 0.0.5 - cryptohash-cryptoapi - cryptostore - css-text @@ -8538,10 +8539,6 @@ packages: # https://github.com/commercialhaskell/stackage/issues/7312 - numhask < 0.12 - # https://github.com/commercialhaskell/stackage/issues/7316 - - tls < 2 - - tls-session-manager < 0.0.5 - # https://github.com/commercialhaskell/stackage/issues/7321 - HPDF < 1.7 - boomwhacker < 0.0.2 @@ -9990,7 +9987,6 @@ hide: # # This only supports pinning to the initial release (revision 0), not to an arbitrary revision. no-revisions: -- tls - mime-mail - basement - cryptonite From 0817a91885c7270549254426907a0a15e644b8ad Mon Sep 17 00:00:00 2001 From: Dan Burton Date: Mon, 4 Mar 2024 09:20:23 -0800 Subject: [PATCH 04/15] disable tmp-proc per #7316 --- build-constraints.yaml | 14 +++++++++----- 1 file changed, 9 insertions(+), 5 deletions(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index 816e6fa5..b138d5e7 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -5141,17 +5141,17 @@ packages: "Tim Emiola @adetokunbo": - benri-hspec - attoparsec-framer - - hspec-tmp-proc + - hspec-tmp-proc < 0 # tls-2 via tmp-proc - keyed-vals - keyed-vals-hspec-tests - keyed-vals-mem - keyed-vals-redis - mem-info - redis-glob - - tmp-proc - - tmp-proc-postgres - - tmp-proc-redis - - tmp-proc-rabbitmq + - tmp-proc < 0 # tls-2 + - tmp-proc-postgres < 0 # tls-2 via tmp-proc + - tmp-proc-redis < 0 # tls-2 via tmp-proc + - tmp-proc-rabbitmq < 0 # tls-2 via tmp-proc - wai-middleware-delegate "Francisco Vallarino @fjvallarino": @@ -8838,6 +8838,10 @@ skipped-tests: # Revision to package caused it to require bounds and break - htoml # https://github.com/commercialhaskell/stackage/issues/6239 + # version bounds: tls-2 via tmp-proc + - keyed-vals-redis + - wai-middleware-delegate + # See "Large scale enabling/disabling of packages" in CURATORS.md for how to manage this section. # # Test bounds issues From 9462fe9399d094b22dae29a15d2eee1f9a24e908 Mon Sep 17 00:00:00 2001 From: Dan Burton Date: Tue, 5 Mar 2024 13:09:59 -0800 Subject: [PATCH 05/15] remove pontarius-xmpp per #7337 --- build-constraints.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index b138d5e7..d2ac97a4 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -2766,7 +2766,7 @@ packages: - monad-peel - NineP - Network-NineP - - pontarius-xmpp + - pontarius-xmpp < 0 # https://github.com/commercialhaskell/stackage/issues/7337 - stringprep - ranges From 35335ee90cf2adc42db6e150250c8204ccee7bf1 Mon Sep 17 00:00:00 2001 From: Dan Burton Date: Thu, 7 Mar 2024 10:26:30 -0800 Subject: [PATCH 06/15] add constraint "hoauth2 < 2.13.0" per #7340 --- build-constraints.yaml | 3 +++ 1 file changed, 3 insertions(+) diff --git a/build-constraints.yaml b/build-constraints.yaml index d2ac97a4..1312adda 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -8552,6 +8552,9 @@ packages: # https://github.com/commercialhaskell/stackage/issues/7335 - cookie < 0.5 + # https://github.com/commercialhaskell/stackage/issues/7340 + - hoauth2 < 2.13.0 + # end of Stackage upper bounds # end of packages From a39e52a9556f44deb7bf6bc53108ecd17a3ba0ad Mon Sep 17 00:00:00 2001 From: Aaron Allen Date: Sun, 25 Feb 2024 23:05:02 -0600 Subject: [PATCH 07/15] Change breakpoint owner I should be the PoC for `breakpoint` --- build-constraints.yaml | 2 ++ 1 file changed, 2 insertions(+) diff --git a/build-constraints.yaml b/build-constraints.yaml index 1312adda..3e42553c 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -1572,6 +1572,8 @@ packages: - hledger-lib - hledger-ui - hledger-web + + "Aaron Allen @aaronallen8455": - breakpoint "Mihai Maruseac @mihaimaruseac": From f764b345ae7afbaa2802591c32b5ea136011c00c Mon Sep 17 00:00:00 2001 From: Peter Lebbing Date: Sun, 25 Feb 2024 12:41:05 +0100 Subject: [PATCH 08/15] New maintainer for docopt --- build-constraints.yaml | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index 3e42553c..63db363f 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -2508,6 +2508,7 @@ packages: - timer-wheel "QBayLogic B.V. @martijnbastiaan": + - docopt - ghc-tcplugins-extra - ghc-typelits-extra - ghc-typelits-knownnat @@ -5861,7 +5862,6 @@ packages: - coercible-utils # #6271 - compiler-warnings # #6326/closed - curl - - docopt # #6326/closed - dynamic-state # #6326/closed - ekg - ekg-core @@ -6623,7 +6623,6 @@ packages: - docker < 0 # tried docker-0.7.0.1, but its *library* requires text >=1.0.0 && < 2.0.0 and the snapshot contains text-2.1 - docker < 0 # tried docker-0.7.0.1, but its *library* requires tls >=1.3.7 && < 1.7.0 and the snapshot contains tls-1.9.0 - docker-build-cacher < 0 # tried docker-build-cacher-2.1.1, but its *library* requires the disabled package: language-docker - - docopt < 0 # tried docopt-0.7.0.7, but its *library* requires containers >=0.6.2 && < 0.6.6 and the snapshot contains containers-0.6.8 - dom-parser < 0 # tried dom-parser-3.2.0, but its *library* requires the disabled package: xml-lens - download < 0 # tried download-0.3.2.7, but its *library* requires the disabled package: feed - download-curl < 0 # tried download-curl-0.1.4, but its *library* requires the disabled package: feed @@ -8917,7 +8916,6 @@ skipped-tests: - dialogflow-fulfillment # tried dialogflow-fulfillment-0.1.1.4, but its *test-suite* requires hspec-discover >=2.7.1 && < 2.9.0 and the snapshot contains hspec-discover-2.11.7 - distributed-process-lifted # tried distributed-process-lifted-0.3.0.1, but its *test-suite* requires the disabled package: network-transport-tcp - distributed-process-lifted # tried distributed-process-lifted-0.3.0.1, but its *test-suite* requires the disabled package: rematch - - docopt # tried docopt-0.7.0.7, but its *test-suite* requires template-haskell >=2.15.0 && < 2.18 and the snapshot contains template-haskell-2.21.0.0 - doldol # tried doldol-0.4.1.2, but its *test-suite* requires the disabled package: test-framework-th - drawille # tried drawille-0.1.3.0, but its *test-suite* requires containers >=0.5 && < 0.6 and the snapshot contains containers-0.6.8 - drawille # tried drawille-0.1.3.0, but its *test-suite* requires hspec >=1.11 && < 2.4 and the snapshot contains hspec-2.11.7 From 1166e87927ed2a2ada40f902bfd948913e4d092e Mon Sep 17 00:00:00 2001 From: Chris Hackett Date: Mon, 26 Feb 2024 21:04:48 -0500 Subject: [PATCH 09/15] Adding vty-windows. --- build-constraints.yaml | 1 + 1 file changed, 1 insertion(+) diff --git a/build-constraints.yaml b/build-constraints.yaml index 63db363f..35bb10f8 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -8689,6 +8689,7 @@ configure-args: {} skipped-builds: - hfsevents - lzma-clib + - vty-windows - Win32 - Win32-notify - windns From d991e6f7a0af04b7110b21ba84694d282e0fa5f5 Mon Sep 17 00:00:00 2001 From: Simon Michael Date: Wed, 28 Feb 2024 12:08:29 -1000 Subject: [PATCH 10/15] cassava-megaparsec: re-enable, 2.1.1 released --- build-constraints.yaml | 2 -- 1 file changed, 2 deletions(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index 35bb10f8..bad96f97 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -6418,8 +6418,6 @@ packages: - captcha-core < 0 # tried captcha-core-0.1.0.1, but its *library* requires mtl >=2.2.2 && < 2.3 and the snapshot contains mtl-2.3.1 - captcha-core < 0 # tried captcha-core-0.1.0.1, but its *library* requires o-clock >=1.2.1 && < 1.3 and the snapshot contains o-clock-1.4.0 - captcha-core < 0 # tried captcha-core-0.1.0.1, but its *library* requires text >=1.2.4.1 && < 1.3 and the snapshot contains text-2.1 - - cassava-megaparsec < 0 # tried cassava-megaparsec-2.1.0, but its *library* requires bytestring >=0.9 && < 0.12 and the snapshot contains bytestring-0.12.0.2 - - cassava-megaparsec < 0 # tried cassava-megaparsec-2.1.0, but its *library* requires vector >=0.11 && < 0.13 and the snapshot contains vector-0.13.1.0 - caster < 0 # tried caster-0.0.3.0, but its *library* requires the disabled package: fast-builder - category < 0 # tried category-0.2.5.0, but its *library* requires base >=4.10 && < 4.15 and the snapshot contains base-4.19.0.0 - category < 0 # tried category-0.2.5.0, but its *library* requires the disabled package: dual From 911f4672625c2db834a8eb7774b798cc2c4df2de Mon Sep 17 00:00:00 2001 From: Simon Michael Date: Wed, 28 Feb 2024 12:25:23 -1000 Subject: [PATCH 11/15] email-validate (and yesod, yesod-form): re-enable, 2.3.2.20 released --- build-constraints.yaml | 3 --- 1 file changed, 3 deletions(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index bad96f97..a50f607e 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -6650,7 +6650,6 @@ packages: - ekg-statsd < 0 # tried ekg-statsd-0.2.5.0, but its *library* requires time < 1.10 and the snapshot contains time-1.12.2 - ekg-wai < 0 # tried ekg-wai-0.1.1.0, but its *library* requires time < 1.10 and the snapshot contains time-1.12.2 - elliptic-curve < 0 # tried elliptic-curve-0.3.0, but its *library* requires protolude >=0.2 && < 0.3 and the snapshot contains protolude-0.3.4 - - email-validate < 0 # tried email-validate-2.3.2.19, but its *library* requires template-haskell >=2.10.0.0 && < 2.21 and the snapshot contains template-haskell-2.21.0.0 - emd < 0 # tried emd-0.2.0.0, but its *library* requires the disabled package: finite-typelits - envy < 0 # tried envy-2.1.2.0, but its *library* requires bytestring >=0.10 && < 0.11 || >=0.11 && < 0.12 and the snapshot contains bytestring-0.12.0.2 - envy < 0 # tried envy-2.1.2.0, but its *library* requires text >=1.2 && < 1.3 || >=2.0 && < 2.1 and the snapshot contains text-2.1 @@ -8461,7 +8460,6 @@ packages: - xmonad-extras < 0 # tried xmonad-extras-0.17.1, but its *library* requires dbus >=1.2 && < 1.3 and the snapshot contains dbus-1.3.2 - yeshql < 0 # tried yeshql-4.2.0.0, but its *library* requires the disabled package: yeshql-hdbc - yeshql < 0 # tried yeshql-4.2.0.0, but its *library* requires yeshql-core ==4.1.1.2 and the snapshot contains yeshql-core-4.2.0.0 - - yesod < 0 # tried yesod-1.6.2.1, but its *library* requires the disabled package: yesod-form - yesod-alerts < 0 # tried yesod-alerts-0.1.3.0, but its *library* requires text >=0.11 && < 2.0 and the snapshot contains text-2.1 - yesod-auth < 0 # tried yesod-auth-1.6.11.2, but its *library* requires the disabled package: email-validate - yesod-auth-basic < 0 # tried yesod-auth-basic-0.1.0.3, but its *library* requires the disabled package: yesod @@ -8473,7 +8471,6 @@ packages: - yesod-auth-hashdb < 0 # tried yesod-auth-hashdb-1.7.1.7, but its *library* requires the disabled package: yesod-form - yesod-auth-oauth2 < 0 # tried yesod-auth-oauth2-0.7.1.3, but its *library* requires the disabled package: yesod-auth - yesod-fb < 0 # tried yesod-fb-0.6.1, but its *library* requires the disabled package: fb - - yesod-form < 0 # tried yesod-form-1.7.6, but its *library* requires the disabled package: email-validate - yesod-form-bootstrap4 < 0 # tried yesod-form-bootstrap4-3.0.1.1, but its *library* requires the disabled package: yesod-form - yesod-form-richtext < 0 # tried yesod-form-richtext-0.1.0.2, but its *library* requires yesod-core >=1.4 && < 1.5 and the snapshot contains yesod-core-1.6.25.1 - yesod-form-richtext < 0 # tried yesod-form-richtext-0.1.0.2, but its *library* requires yesod-form >=1.4.4.1 && < 1.5 and the snapshot contains yesod-form-1.7.6 From ea493bdc5fc32d4d68d1d07225a25d168d32f03b Mon Sep 17 00:00:00 2001 From: Yoshikuni Jujo Date: Thu, 15 Feb 2024 10:16:48 +0900 Subject: [PATCH 12/15] Add JuicyCairo --- build-constraints.yaml | 1 + 1 file changed, 1 insertion(+) diff --git a/build-constraints.yaml b/build-constraints.yaml index a50f607e..228980ce 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -3463,6 +3463,7 @@ packages: - glib-stopgap - moffy-samples-gtk3-run - moffy-samples-gtk3 + - JuicyCairo "Jan Gerlinger @JanGe": - irc-dcc From 29a00890bdbee362e4009c02a626bbc8f0e57671 Mon Sep 17 00:00:00 2001 From: thomasjm Date: Fri, 1 Mar 2024 02:35:27 -0800 Subject: [PATCH 13/15] stamina: init at 0.1.0.3 --- build-constraints.yaml | 1 + 1 file changed, 1 insertion(+) diff --git a/build-constraints.yaml b/build-constraints.yaml index 228980ce..f08cccb2 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -4552,6 +4552,7 @@ packages: - servant-auth-swagger - servant-auth-docs - servant-elm < 0 # via elm-bridge + - stamina - systemd "Andre Van Der Merwe @andrevdm": From d499f78a889e89a8eabe88e1f335cc7f882e82d9 Mon Sep 17 00:00:00 2001 From: Pavan Rikhi Date: Sat, 2 Mar 2024 17:15:21 -0500 Subject: [PATCH 14/15] Bring hexpat Back Into Nightly --- build-constraints.yaml | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index f08cccb2..19326e1f 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -4768,6 +4768,7 @@ packages: - cointracking-imports - binance-exports - gemini-exports + - hexpat "David Baynard @dbaynard": - time-qq @@ -7034,8 +7035,6 @@ packages: - herms < 0 # tried herms-1.9.0.4, but its *executable* requires semigroups >=0.18.3 && < 0.19 and the snapshot contains semigroups-0.20 - herms < 0 # tried herms-1.9.0.4, but its *executable* requires vty >=5.15 && < =5.23 and the snapshot contains vty-6.2 - hetzner < 0 # tried hetzner-0.6.0.0, but its *library* requires base >=4.16 && < 4.19 and the snapshot contains base-4.19.0.0 - - hexpat < 0 # tried hexpat-0.20.13, but its *library* requires deepseq >=1.1.0.0 && < 1.5 and the snapshot contains deepseq-1.5.0.0 - - hexpat < 0 # tried hexpat-0.20.13, but its *library* requires text >=0.5.0.0 && < 1.3 || >=2 && < 2.1 and the snapshot contains text-2.1 - hgeometry < 0 # tried hgeometry-0.14, but its *library* requires the disabled package: vector-circular - hgeometry-combinatorial < 0 # tried hgeometry-combinatorial-0.14, but its *library* requires the disabled package: vector-circular - hgrev < 0 # tried hgrev-0.2.6, but its *library* requires aeson >=0.8 && < 1.6 and the snapshot contains aeson-2.2.1.0 From 0bdc3896d6b068da0204f09bcd0ef980c4d9d6b1 Mon Sep 17 00:00:00 2001 From: Dan Burton Date: Thu, 7 Mar 2024 10:46:58 -0800 Subject: [PATCH 15/15] re-enable feed --- build-constraints.yaml | 1 - 1 file changed, 1 deletion(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index 19326e1f..78c546b2 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -6689,7 +6689,6 @@ packages: - fastmemo < 0 # tried fastmemo-0.1.1, but its *library* requires bytestring >=0.10 && < 0.12 and the snapshot contains bytestring-0.12.0.2 - fclabels < 0 # tried fclabels-2.0.5.1, but its *library* requires base >=4.5 && < 4.19 and the snapshot contains base-4.19.0.0 - fclabels < 0 # tried fclabels-2.0.5.1, but its *library* requires template-haskell >=2.2 && < 2.21 and the snapshot contains template-haskell-2.21.0.0 - - feed < 0 # tried feed-1.3.2.1, but its *library* requires base-compat >=0.9 && < 0.13 and the snapshot contains base-compat-0.13.1 - fib < 0 # tried fib-0.1.0.1, but its *library* requires the disabled package: base-noprelude - filepath-bytestring < 0 # tried filepath-bytestring-1.5.2.0.0, but its *library* requires filepath ==1.5.2.0 and the snapshot contains filepath-1.4.100.4 - finite-typelits < 0 # tried finite-typelits-0.1.6.0, but its *library* requires base >=4.7 && < 4.19 and the snapshot contains base-4.19.0.0