haskellPackages: stackage LTS 21.0 -> LTS 21.3

all-cabal-hashes: 2023-06-28T16:36:39Z -> 2023-07-19T20:56:38Z

This commit has been generated by

* maintainers/scripts/haskell/update-hackage.sh
* maintainers/scripts/haskell/update-stackage.sh
* maintainers/scripts/haskell/regenerate-hackage-packages.sh

Additionally, the following manual changes are included:

* Delete now obsolete overrides for

  - base-compat, base-compat-batteries (new release in stackage)
  - cmark (new release in stackage)
  - skylighting (newer release than 0.13.3 in stackage)
  - optics (new release in stackage)

* Adjust to new versions for

  - hspec, hspec-core, hspec-discover, hspec-expectations
  - fourmolu
  - pandoc
  - doctest

!fixup stackage
This commit is contained in:
sternenseemann 2023-07-20 00:13:47 +02:00
parent 6b9663e3af
commit 2ae7741768
5 changed files with 2386 additions and 2574 deletions

View file

@ -1,6 +1,6 @@
{
"commit": "f8559c8c2e1ba7d8a86432d124e86d3e8ff2d6e2",
"url": "https://github.com/commercialhaskell/all-cabal-hashes/archive/f8559c8c2e1ba7d8a86432d124e86d3e8ff2d6e2.tar.gz",
"sha256": "0fm0q5mbx3v9mv943rgippjl0cxp6zfkdcdgy49kzhgai8c9qgr9",
"msg": "Update from Hackage at 2023-06-28T16:36:39Z"
"commit": "e77d5a3a5c42ac250ea50152727d734f46796e27",
"url": "https://github.com/commercialhaskell/all-cabal-hashes/archive/e77d5a3a5c42ac250ea50152727d734f46796e27.tar.gz",
"sha256": "09qcfza0657j0s3wbyj2cqk8cbh4z0yq8930jayagdzf9irwmrzx",
"msg": "Update from Hackage at 2023-07-19T20:56:38Z"
}

View file

@ -57,15 +57,15 @@ self: super: {
# not solvable short of recompiling GHC. Instead of adding
# allowInconsistentDependencies for all reverse dependencies of hspec-core,
# just upgrade to an hspec version without the offending dependency.
hspec-core = cself.hspec-core_2_11_1;
hspec-discover = cself.hspec-discover_2_11_1;
hspec = cself.hspec_2_11_1;
hspec-core = cself.hspec-core_2_11_3;
hspec-discover = cself.hspec-discover_2_11_3;
hspec = cself.hspec_2_11_3;
# hspec-discover and hspec-core depend on hspec-meta for testing which
# we need to avoid since it depends on ghc as well. Since hspec*_2_11*
# are overridden to take the versioned attributes as inputs, we need
# to make sure to override the versioned attribute with this fix.
hspec-discover_2_11_1 = dontCheck csuper.hspec-discover_2_11_1;
hspec-discover_2_11_3 = dontCheck csuper.hspec-discover_2_11_3;
# Prevent dependency on doctest which causes an inconsistent dependency
# due to depending on ghc which depends on directory etc.
@ -159,18 +159,6 @@ self: super: {
### END HASKELL-LANGUAGE-SERVER SECTION ###
###########################################
base-compat = overrideCabal (drv: {
version = assert drv.version == "0.12.2"; "0.12.3";
sha256 = "13dcrwihqn57js1ylj9vbw2snx90kfwikanvs1bj77zm22grj9nv";
editedCabalFile = null; revision = null;
}) super.base-compat;
base-compat-batteries = overrideCabal (drv: {
inherit (self.base-compat) version;
sha256 = "1bsz3bi1mnp60p90n5av76knscgssqvphc9f2jy1nhyr6ap7jxi0";
editedCabalFile = null; revision = null;
}) super.base-compat-batteries;
vector = overrideCabal (old: {
# Too strict bounds on doctest which isn't used, but is part of the configuration
jailbreak = true;
@ -235,10 +223,6 @@ self: super: {
# There are numerical tests on random data, that may fail occasionally
lapack = dontCheck super.lapack;
# Allow text-2.0.*
# https://github.com/jgm/cmark-hs/pull/15
cmark = assert super.cmark.version == "0.6"; doJailbreak super.cmark;
# fix tests failure for base≥4.15 (https://github.com/kim/leveldb-haskell/pull/41)
leveldb-haskell = appendPatch (fetchpatch {
url = "https://github.com/kim/leveldb-haskell/commit/f5249081f589233890ddb1945ec548ca9fb717cf.patch";
@ -313,7 +297,7 @@ self: super: {
})
# Overriding the version pandoc dependency uses as the latest release has version bounds
# defined as >= 3.1 && < 3.2, can be removed once pandoc gets bumped by Stackage.
] (super.patat.override { pandoc = self.pandoc_3_1_4; });
] (super.patat.override { pandoc = self.pandoc_3_1_5; });
# The latest release on hackage has an upper bound on containers which
# breaks the build, though it works with the version of containers present
@ -1737,15 +1721,15 @@ self: super: {
servant-openapi3 = dontCheck super.servant-openapi3;
# Give latest hspec correct dependency versions without overrideScope
hspec_2_11_1 = doDistribute (super.hspec_2_11_1.override {
hspec-discover = self.hspec-discover_2_11_1;
hspec-core = self.hspec-core_2_11_1;
hspec_2_11_3 = doDistribute (super.hspec_2_11_3.override {
hspec-discover = self.hspec-discover_2_11_3;
hspec-core = self.hspec-core_2_11_3;
});
hspec-discover_2_11_1 = doDistribute super.hspec-discover_2_11_1;
# Need to disable tests to prevent an infinite recursion if hspec-core_2_11_1
hspec-discover_2_11_3 = doDistribute super.hspec-discover_2_11_3;
# Need to disable tests to prevent an infinite recursion if hspec-core_2_11_3
# is overlayed to hspec-core.
hspec-core_2_11_1 = doDistribute (dontCheck (super.hspec-core_2_11_1.override {
hspec-expectations = self.hspec-expectations_0_8_3;
hspec-core_2_11_3 = doDistribute (dontCheck (super.hspec-core_2_11_3.override {
hspec-expectations = self.hspec-expectations_0_8_4;
}));
# Point hspec 2.7.10 to correct dependencies
@ -1912,7 +1896,7 @@ self: super: {
inherit (let
pandoc-cli-overlay = self: super: {
# pandoc-cli requires pandoc >= 3.1
pandoc = self.pandoc_3_1_4;
pandoc = self.pandoc_3_1_5;
# pandoc depends on crypton-connection, which requires tls >= 1.7
tls = self.tls_1_7_0;
@ -1920,22 +1904,14 @@ self: super: {
# pandoc depends on http-client-tls, which only starts depending
# on crypton-connection in http-client-tls-0.3.6.2.
http-client-tls = self.http-client-tls_0_3_6_2;
# pandoc requires recent versions of skylighting
skylighting = self.skylighting_0_13_3;
skylighting-core = self.skylighting-core_0_13_3;
};
in {
pandoc-cli = super.pandoc-cli.overrideScope pandoc-cli-overlay;
pandoc_3_1_4 = doDistribute (super.pandoc_3_1_4.overrideScope pandoc-cli-overlay);
skylighting_0_13_3 = doDistribute (super.skylighting_0_13_3.overrideScope pandoc-cli-overlay);
skylighting-core_0_13_3 = doDistribute (super.skylighting-core_0_13_3.overrideScope pandoc-cli-overlay);
pandoc_3_1_5 = doDistribute (super.pandoc_3_1_5.overrideScope pandoc-cli-overlay);
pandoc-lua-engine = super.pandoc-lua-engine.overrideScope pandoc-cli-overlay;
})
pandoc-cli
pandoc_3_1_4
skylighting_0_13_3
skylighting-core_0_13_3
pandoc_3_1_5
pandoc-lua-engine
;
@ -2580,11 +2556,6 @@ self: super: {
testTarget = "tests";
}) super.conduit-aeson;
# Tests have a dependency on a certain version of the inspection-testing
# library. This is fixed in the next point release, so this override is
# likely safe to remove when the assertion starts failing.
optics = assert super.optics.version == "0.4.2"; dontCheck super.optics;
# Upper bounds are too strict:
# https://github.com/velveteer/hermes/pull/22
hermes-json = doJailbreak super.hermes-json;
@ -2774,7 +2745,7 @@ self: super: {
# Tests fail due to the newly-build fourmolu not being in PATH
# https://github.com/fourmolu/fourmolu/issues/231
fourmolu_0_13_0_0 = dontCheck (super.fourmolu_0_13_0_0.overrideScope (lself: lsuper: {
fourmolu_0_13_1_0 = dontCheck (super.fourmolu_0_13_1_0.overrideScope (lself: lsuper: {
Cabal-syntax = lself.Cabal-syntax_3_10_1_0;
ghc-lib-parser = lself.ghc-lib-parser_9_6_2_20230523;
parsec = lself.parsec_3_1_16_1;

View file

@ -65,7 +65,7 @@ self: super: {
# Version deviations from Stackage LTS
#
doctest = doDistribute super.doctest_0_21_1;
doctest = doDistribute super.doctest_0_22_0;
http-api-data = doDistribute self.http-api-data_0_6; # allows base >= 4.18
some = doDistribute self.some_1_0_5;
th-abstraction = doDistribute self.th-abstraction_0_5_0_0;

View file

@ -1,4 +1,4 @@
# Stackage LTS 21.0
# Stackage LTS 21.3
# This file is auto-generated by
# maintainers/scripts/haskell/update-stackage.sh
default-package-overrides:
@ -26,7 +26,7 @@ default-package-overrides:
- aeson-extra ==0.5.1.2
- aeson-generic-compat ==0.0.1.3
- aeson-iproute ==0.3.0
- aeson-optics ==1.2.0.1
- aeson-optics ==1.2.1
- aeson-picker ==0.1.0.6
- aeson-pretty ==0.8.9
- aeson-qq ==0.8.4
@ -79,16 +79,16 @@ default-package-overrides:
- array-memoize ==0.6.0
- arrow-extras ==0.1.0.1
- arrows ==0.4.4.2
- ascii ==1.7.0.0
- ascii-case ==1.0.1.2
- ascii-caseless ==0.0.0.0
- ascii ==1.7.0.1
- ascii-case ==1.0.1.3
- ascii-caseless ==0.0.0.1
- ascii-char ==1.0.1.0
- ascii-group ==1.0.0.15
- ascii-numbers ==1.2.0.0
- ascii-predicates ==1.0.1.2
- ascii-group ==1.0.0.16
- ascii-numbers ==1.2.0.1
- ascii-predicates ==1.0.1.3
- ascii-progress ==0.3.3.0
- ascii-superset ==1.3.0.0
- ascii-th ==1.2.0.0
- ascii-superset ==1.3.0.1
- ascii-th ==1.2.0.1
- asn1-encoding ==0.9.6
- asn1-parse ==0.9.5
- asn1-types ==0.3.4
@ -123,7 +123,7 @@ default-package-overrides:
- autoexporter ==2.0.0.8
- auto-update ==0.1.6
- avro ==0.6.1.2
- aws ==0.24
- aws ==0.24.1
- aws-cloudfront-signed-cookies ==0.2.0.12
- aws-lambda-haskell-runtime ==4.1.2
- aws-lambda-haskell-runtime-wai ==2.0.2
@ -144,8 +144,8 @@ default-package-overrides:
- base64-bytestring ==1.2.1.0
- base64-bytestring-type ==1.0.1
- base64-string ==0.2
- base-compat ==0.12.2
- base-compat-batteries ==0.12.2
- base-compat ==0.12.3
- base-compat-batteries ==0.12.3
- basement ==0.0.16
- base-orphans ==0.9.0
- base-prelude ==1.6.1
@ -173,7 +173,7 @@ default-package-overrides:
- bimaps ==0.1.0.2
- bimap-server ==0.1.0.1
- bin ==0.1.3
- binance-exports ==0.1.1.0
- binance-exports ==0.1.2.0
- binary-conduit ==1.3.1
- binaryen ==0.0.6.0
- binary-generic-combinators ==0.4.4.0
@ -197,7 +197,7 @@ default-package-overrides:
- bitvec ==1.1.4.0
- bitwise-enum ==1.0.1.0
- blake2 ==0.3.0
- Blammo ==1.1.2.0
- Blammo ==1.1.2.1
- blank-canvas ==0.7.3
- blanks ==0.5.0
- blas-carray ==0.1.0.2
@ -244,7 +244,7 @@ default-package-overrides:
- buffer-pipe ==0.0
- bugsnag ==1.0.0.1
- bugsnag-haskell ==0.0.4.4
- bugsnag-hs ==0.2.0.9
- bugsnag-hs ==0.2.0.11
- bugsnag-wai ==1.0.0.1
- bugsnag-yesod ==1.0.0.1
- bugzilla-redhat ==1.0.1
@ -285,7 +285,7 @@ default-package-overrides:
- cairo ==0.13.10.0
- calendar-recycling ==0.0.0.1
- call-alloy ==0.4.0.3
- calligraphy ==0.1.4
- calligraphy ==0.1.6
- call-plantuml ==0.0.1.2
- call-stack ==0.4.0
- can-i-haz ==0.3.1.1
@ -300,7 +300,7 @@ default-package-overrides:
- cases ==0.1.4.2
- casing ==0.1.4.1
- cassava ==0.5.3.0
- cassava-conduit ==0.6.2
- cassava-conduit ==0.6.5
- cassava-megaparsec ==2.0.4
- cast ==0.1.0.2
- cborg ==0.2.9.0
@ -366,12 +366,12 @@ default-package-overrides:
- combinatorial ==0.1.1
- comfort-array ==0.5.2.3
- comfort-array-shape ==0.0
- comfort-blas ==0.0
- comfort-blas ==0.0.0.1
- comfort-fftw ==0.0.0.1
- comfort-glpk ==0.1
- comfort-graph ==0.0.3.2
- commonmark ==0.2.2
- commonmark-extensions ==0.2.3.4
- commonmark ==0.2.3
- commonmark-extensions ==0.2.3.5
- commonmark-pandoc ==0.2.1.3
- commutative ==0.0.2
- commutative-semigroups ==0.1.0.1
@ -406,7 +406,7 @@ default-package-overrides:
- conferer-aeson ==1.1.0.2
- conferer-warp ==1.1.0.1
- ConfigFile ==1.1.4
- config-ini ==0.2.5.0
- config-ini ==0.2.6.0
- configuration-tools ==0.6.1
- configurator ==0.3.0.0
- configurator-export ==0.1.0.1
@ -430,8 +430,8 @@ default-package-overrides:
- cookie ==0.4.6
- copr-api ==0.1.0
- core-data ==0.3.9.1
- core-program ==0.6.8.0
- core-telemetry ==0.2.9.3
- core-program ==0.6.9.4
- core-telemetry ==0.2.9.4
- core-text ==0.3.8.1
- countable ==1.2
- country ==0.2.3.1
@ -467,7 +467,7 @@ default-package-overrides:
- crypto-pubkey-types ==0.4.3
- crypto-random ==0.0.9
- crypto-random-api ==0.2.0
- cryptostore ==0.3.0.0
- cryptostore ==0.3.0.1
- crypt-sha512 ==0
- csp ==1.4.0
- css-syntax ==0.1.0.1
@ -476,7 +476,7 @@ default-package-overrides:
- csv ==0.1.2
- csv-conduit ==0.7.3.0
- ctrie ==0.2
- cubicbezier ==0.6.0.6
- cubicbezier ==0.6.0.7
- cubicspline ==0.1.2
- cue-sheet ==2.0.2
- curl ==1.3.8
@ -489,7 +489,7 @@ default-package-overrides:
- cursor-gen ==0.4.0.0
- cutter ==0.0
- cyclotomic ==1.1.2
- d10 ==1.0.1.2
- d10 ==1.0.1.3
- data-accessor ==0.2.3.1
- data-accessor-mtl ==0.2.0.5
- data-accessor-transformers ==0.2.1.8
@ -514,7 +514,7 @@ default-package-overrides:
- data-dword ==0.3.2.1
- data-endian ==0.1.1
- data-fix ==0.3.2
- data-forest ==0.1.0.10
- data-forest ==0.1.0.12
- data-has ==0.4.0.0
- data-hash ==0.2.0.1
- data-interval ==2.1.1
@ -564,9 +564,9 @@ default-package-overrides:
- dhall-json ==1.7.11
- dhall-yaml ==1.2.12
- di ==1.3
- diagrams ==1.4.0.1
- diagrams-canvas ==1.4.1.1
- diagrams-contrib ==1.4.5
- diagrams ==1.4.1
- diagrams-canvas ==1.4.1.2
- diagrams-contrib ==1.4.5.1
- diagrams-core ==1.5.1
- diagrams-html5 ==1.4.2
- diagrams-lib ==1.4.6
@ -621,7 +621,7 @@ default-package-overrides:
- domain-optics ==0.1.0.3
- do-notation ==0.1.0.2
- dot ==0.3
- dotenv ==0.11.0.1
- dotenv ==0.11.0.2
- dotgen ==0.4.3
- dotnet-timespan ==0.0.1.0
- double-conversion ==2.0.4.2
@ -635,7 +635,7 @@ default-package-overrides:
- dual ==0.1.1.1
- dual-tree ==0.2.3.1
- dublincore-xml-conduit ==0.1.0.2
- dunai ==0.11.0
- dunai ==0.11.1
- duration ==0.2.0.0
- dvorak ==0.1.0.0
- dynamic-state ==0.3.1
@ -667,12 +667,12 @@ default-package-overrides:
- elm-bridge ==0.8.2
- elm-core-sources ==1.0.0
- elm-export ==0.6.0.1
- elynx ==0.7.2.1
- elynx-markov ==0.7.2.1
- elynx-nexus ==0.7.2.1
- elynx-seq ==0.7.2.1
- elynx ==0.7.2.2
- elynx-markov ==0.7.2.2
- elynx-nexus ==0.7.2.2
- elynx-seq ==0.7.2.2
- elynx-tools ==0.7.2.1
- elynx-tree ==0.7.2.1
- elynx-tree ==0.7.2.2
- emacs-module ==0.1.1.1
- email-validate ==2.3.2.18
- emojis ==0.1.2
@ -718,12 +718,12 @@ default-package-overrides:
- explainable-predicates ==0.1.2.3
- explicit-exception ==0.2
- exp-pairs ==0.2.1.0
- express ==1.0.10
- express ==1.0.12
- extended-reals ==0.2.4.0
- extensible ==0.9
- extensible-effects ==5.0.0.1
- extensible-exceptions ==0.1.1.4
- extra ==1.7.13
- extra ==1.7.14
- extractable-singleton ==0.0.1
- extrapolate ==0.4.6
- fail ==4.9.0.0
@ -736,7 +736,7 @@ default-package-overrides:
- fakepull ==0.3.0.2
- faktory ==1.1.2.4
- fasta ==0.10.4.2
- fast-logger ==3.2.1
- fast-logger ==3.2.2
- fast-math ==1.0.2
- fastmemo ==0.1.1
- fb ==2.1.1.1
@ -756,7 +756,7 @@ default-package-overrides:
- filelock ==0.1.1.6
- filemanip ==0.3.6.3
- file-modules ==0.1.2.4
- filepath-bytestring ==1.4.2.1.12
- filepath-bytestring ==1.4.2.1.13
- file-path-th ==0.1.0.0
- filepattern ==0.1.3
- fileplow ==0.1.0.0
@ -791,7 +791,7 @@ default-package-overrides:
- focuslist ==0.1.1.0
- foldable1-classes-compat ==0.1
- fold-debounce ==0.2.0.11
- foldl ==1.4.14
- foldl ==1.4.15
- folds ==0.7.8
- follow-file ==0.0.3
- FontyFruity ==0.5.3.5
@ -888,7 +888,7 @@ default-package-overrides:
- ghc-core ==0.5.6
- ghc-events ==0.19.0.1
- ghc-exactprint ==1.6.1.3
- ghcid ==0.8.8
- ghcid ==0.8.9
- ghci-hexcalc ==0.1.1.0
- ghcjs-codemirror ==0.0.0.2
- ghcjs-perch ==0.3.3.3
@ -927,10 +927,10 @@ default-package-overrides:
- gio ==0.13.10.0
- gi-pango ==1.0.29
- gi-soup ==2.4.28
- githash ==0.1.6.3
- githash ==0.1.7.0
- github ==0.28.0.1
- github-release ==2.0.0.6
- github-rest ==1.1.3
- github-release ==2.0.0.8
- github-rest ==1.1.4
- github-types ==0.2.1
- github-webhooks ==0.17.0
- gitlab-haskell ==1.0.0.1
@ -940,7 +940,7 @@ default-package-overrides:
- gi-webkit2 ==4.0.30
- gi-xlib ==2.0.13
- gl ==0.9
- glabrous ==2.0.6.1
- glabrous ==2.0.6.2
- glasso ==0.1.0
- GLFW-b ==3.3.0.0
- glib ==0.13.10.0
@ -1033,10 +1033,10 @@ default-package-overrides:
- has-transformers ==0.1.0.4
- hasty-hamiltonian ==1.3.4
- HaTeX ==3.22.3.2
- HaXml ==1.25.12
- HaXml ==1.25.13
- haxr ==3000.11.5
- HCodecs ==0.5.2
- hdaemonize ==0.5.6
- hdaemonize ==0.5.7
- HDBC ==2.4.0.4
- HDBC-session ==0.1.2.0
- headed-megaparsec ==0.2.1.2
@ -1049,7 +1049,7 @@ default-package-overrides:
- hedgehog-corpus ==0.2.0
- hedgehog-fakedata ==0.0.1.5
- hedgehog-fn ==1.0
- hedgehog-optics ==1.0.0.2
- hedgehog-optics ==1.0.0.3
- hedgehog-quickcheck ==0.1.1
- hedis ==0.15.2
- hedn ==0.3.0.4
@ -1062,7 +1062,7 @@ default-package-overrides:
- hexml ==0.3.4
- hexml-lens ==0.2.2
- hexpat ==0.20.13
- hex-text ==0.1.0.8
- hex-text ==0.1.0.9
- hformat ==0.3.3.1
- hfsevents ==0.1.6
- hgal ==2.0.0.3
@ -1076,7 +1076,7 @@ default-package-overrides:
- histogram-fill ==0.9.1.0
- hjsmin ==0.2.1
- hkd-default ==1.1.0.0
- hkgr ==0.4.3
- hkgr ==0.4.3.1
- hledger ==1.30.1
- hledger-interest ==1.6.5
- hledger-lib ==1.30
@ -1210,14 +1210,14 @@ default-package-overrides:
- http-media ==0.8.0.0
- http-query ==0.1.3
- http-reverse-proxy ==0.6.0.1
- http-streams ==0.8.9.6
- http-streams ==0.8.9.8
- http-types ==0.12.3
- human-readable-duration ==0.2.1.4
- HUnit ==1.6.2.0
- HUnit-approx ==1.1.1.1
- hunit-dejafu ==2.0.0.6
- hvect ==0.4.0.1
- hvega ==0.12.0.3
- hvega ==0.12.0.5
- hw-balancedparens ==0.4.1.3
- hw-bits ==0.7.2.2
- hw-conduit ==0.2.1.1
@ -1279,7 +1279,7 @@ default-package-overrides:
- indexed ==0.1.3
- indexed-containers ==0.1.0.2
- indexed-list-literals ==0.2.1.3
- indexed-profunctors ==0.1.1
- indexed-profunctors ==0.1.1.1
- indexed-traversable ==0.1.2.1
- indexed-traversable-instances ==0.1.1.2
- inf-backprop ==0.1.0.2
@ -1288,15 +1288,15 @@ default-package-overrides:
- ini ==0.4.2
- inj ==1.0
- inline-c ==0.9.1.8
- inline-c-cpp ==0.5.0.0
- inline-c-cpp ==0.5.0.1
- inline-r ==1.0.1
- input-parsers ==0.3.0.1
- insert-ordered-containers ==0.2.5.2
- inspection-testing ==0.5.0.1
- insert-ordered-containers ==0.2.5.3
- inspection-testing ==0.5.0.2
- instance-control ==0.1.2.0
- integer-logarithms ==1.0.3.1
- integer-roots ==1.0.2.0
- integer-types ==0.1.1.0
- integer-types ==0.1.4.0
- integration ==0.2.1
- intern ==0.9.4
- interpolate ==0.2.1
@ -1307,7 +1307,7 @@ default-package-overrides:
- intervals ==0.9.2
- intset-imperative ==0.1.0.0
- invariant ==0.6.1
- invert ==1.0.0.3
- invert ==1.0.0.4
- invertible-grammar ==0.1.3.4
- io-machine ==0.2.0.0
- io-manager ==0.1.0.4
@ -1319,7 +1319,7 @@ default-package-overrides:
- ip ==1.7.6
- ip6addr ==1.0.3
- iproute ==1.7.12
- IPv6Addr ==2.0.5
- IPv6Addr ==2.0.5.1
- ipynb ==0.2
- ipython-kernel ==0.10.3.0
- irc ==0.6.1.0
@ -1340,18 +1340,18 @@ default-package-overrides:
- jl ==0.1.0
- jmacro ==0.6.18
- jose ==0.10
- jose-jwt ==0.9.5
- jose-jwt ==0.9.6
- journalctl-stream ==0.6.0.4
- js-chart ==2.9.4.1
- js-dgtable ==0.5.2
- js-flot ==0.8.3
- js-jquery ==3.3.1
- json ==0.10
- json-feed ==2.0.0.8
- json-feed ==2.0.0.9
- jsonifier ==0.2.1.2
- jsonpath ==0.3.0.0
- json-rpc ==1.0.4
- json-stream ==0.4.5.2
- json-stream ==0.4.5.3
- JuicyPixels ==3.3.8
- JuicyPixels-extra ==0.6.0
- JuicyPixels-scale-dct ==0.1.2
@ -1362,21 +1362,21 @@ default-package-overrides:
- kansas-comet ==0.4.1
- katip ==0.8.7.4
- katip-logstash ==0.1.0.2
- katip-wai ==0.1.2.1
- katip-wai ==0.1.2.2
- kazura-queue ==0.1.0.4
- kdt ==0.2.5
- keep-alive ==0.2.1.0
- keter ==2.1.1
- keycode ==0.2.2
- keyed-vals ==0.2.0.0
- keyed-vals-hspec-tests ==0.2.0.0
- keyed-vals-mem ==0.2.0.0
- keyed-vals-redis ==0.2.0.0
- keyed-vals ==0.2.2.0
- keyed-vals-hspec-tests ==0.2.2.0
- keyed-vals-mem ==0.2.2.0
- keyed-vals-redis ==0.2.2.0
- keys ==3.12.3
- ki ==1.0.1.0
- kind-apply ==0.4.0.0
- kind-generics ==0.5.0.0
- kind-generics-th ==0.2.3.1
- kind-generics-th ==0.2.3.2
- ki-unlifted ==1.0.0.1
- kleene ==0.1
- kmeans ==0.1.3
@ -1420,7 +1420,7 @@ default-package-overrides:
- leb128-cereal ==1.2
- lens ==5.2.2
- lens-action ==0.2.6
- lens-aeson ==1.2.2
- lens-aeson ==1.2.3
- lens-csv ==0.1.1.0
- lens-family ==2.1.2
- lens-family-core ==2.1.2
@ -1452,7 +1452,7 @@ default-package-overrides:
- linux-file-extents ==0.2.0.0
- linux-namespaces ==0.1.3.0
- List ==0.6.2
- ListLike ==4.7.8
- ListLike ==4.7.8.1
- list-predicate ==0.1.0.1
- listsafe ==0.1.0.1
- list-t ==1.0.5.6
@ -1475,13 +1475,13 @@ default-package-overrides:
- logging-facade ==0.3.1
- logging-facade-syslog ==1
- logict ==0.8.0.0
- logstash ==0.1.0.3
- logstash ==0.1.0.4
- loop ==0.3.0
- lpeg ==1.0.4
- lrucache ==1.2.0.1
- lua ==2.3.1
- lua-arbitrary ==1.0.1.1
- lucid2 ==0.0.20221012
- lucid2 ==0.0.20230706
- lucid ==2.11.20230408
- lucid-cdn ==0.2.2.0
- lucid-extras ==0.2.2
@ -1533,7 +1533,7 @@ default-package-overrides:
- memcache ==0.3.0.1
- memfd ==1.0.1.3
- memory ==0.18.0
- MemoTrie ==0.6.10
- MemoTrie ==0.6.11
- mergeful ==0.3.0.0
- mergeless ==0.4.0.0
- merkle-tree ==0.1.1
@ -1541,7 +1541,7 @@ default-package-overrides:
- mersenne-random-pure64 ==0.2.2.0
- messagepack ==0.5.5
- metrics ==0.4.1.1
- mfsolve ==0.3.2.1
- mfsolve ==0.3.2.2
- microaeson ==0.1.0.1
- microlens ==0.4.13.1
- microlens-aeson ==2.5.0
@ -1594,7 +1594,7 @@ default-package-overrides:
- monadlist ==0.0.2
- monadloc ==0.7.1
- monad-logger ==0.3.40
- monad-logger-aeson ==0.4.0.4
- monad-logger-aeson ==0.4.1.1
- monad-logger-json ==0.1.0.0
- monad-logger-logstash ==0.2.0.2
- monad-loops ==0.4.3
@ -1693,7 +1693,7 @@ default-package-overrides:
- network-messagepack-rpc-websocket ==0.1.1.1
- network-multicast ==0.3.2
- Network-NineP ==0.4.7.2
- network-run ==0.2.5
- network-run ==0.2.6
- network-simple ==0.4.5
- network-simple-tls ==0.4.1
- network-transport ==0.5.6
@ -1769,9 +1769,10 @@ default-package-overrides:
- operational ==0.2.4.2
- operational-class ==0.3.0.0
- opml-conduit ==0.9.0.0
- optics ==0.4.2
- optics-core ==0.4.1
- optics ==0.4.2.1
- optics-core ==0.4.1.1
- optics-extra ==0.4.2.1
- optics-operators ==0.1.0.1
- optics-th ==0.4.1
- optics-vl ==0.2.1
- optima ==0.4.0.4
@ -1791,16 +1792,16 @@ default-package-overrides:
- pagination ==0.2.2
- pagure ==0.1.1
- pagure-cli ==0.2.1
- palette ==0.3.0.2
- palette ==0.3.0.3
- pandoc ==3.0.1
- pandoc-dhall-decoder ==0.1.0.1
- pandoc-lua-marshal ==0.2.2
- pandoc-plot ==1.7.0
- pandoc-symreg ==0.2.0.0
- pandoc-throw ==0.1.0.0
- pandoc-types ==1.23
- pandoc-types ==1.23.0.1
- pango ==0.13.10.0
- pantry ==0.8.2.2
- pantry ==0.8.3
- parallel ==3.2.2.0
- parallel-io ==0.3.5
- parameterized ==0.5.0.0
@ -1815,7 +1816,7 @@ default-package-overrides:
- partial-handler ==1.0.3
- partial-isomorphisms ==0.2.3.0
- partial-order ==0.2.0.0
- partial-semigroup ==0.6.0.1
- partial-semigroup ==0.6.0.2
- password ==3.0.2.1
- password-instances ==3.0.0.0
- password-types ==1.0.0.0
@ -1827,11 +1828,11 @@ default-package-overrides:
- path-io ==1.8.1
- path-like ==0.2.0.2
- path-pieces ==0.2.1
- path-text-utf8 ==0.0.1.11
- path-text-utf8 ==0.0.1.12
- pathtype ==0.8.1.2
- path-utils ==0.1.1.0
- pathwalk ==0.3.1.2
- patrol ==1.0.0.4
- patrol ==1.0.0.5
- pattern-arrows ==0.0.2
- pava ==0.1.1.4
- pcf-font ==0.2.2.1
@ -1847,9 +1848,9 @@ default-package-overrides:
- peano ==0.1.0.1
- pedersen-commitment ==0.2.0
- pem ==0.2.4
- percent-format ==0.0.2
- percent-format ==0.0.4
- perfect-hash-generator ==1.0.0
- persistent ==2.14.5.0
- persistent ==2.14.5.1
- persistent-discover ==0.1.0.6
- persistent-documentation ==0.1.0.4
- persistent-iproute ==0.2.5
@ -1908,7 +1909,7 @@ default-package-overrides:
- polysemy ==1.9.1.0
- polysemy-fs ==0.1.0.0
- polysemy-plugin ==0.4.5.0
- polysemy-webserver ==0.2.1.1
- polysemy-webserver ==0.2.1.2
- pontarius-xmpp ==0.5.6.6
- pooled-io ==0.0.2.3
- portable-lines ==0.1
@ -1922,7 +1923,7 @@ default-package-overrides:
- postgresql-libpq-notify ==0.2.0.0
- postgresql-migration ==0.2.1.7
- postgresql-schema ==0.1.14
- postgresql-simple ==0.6.5
- postgresql-simple ==0.6.5.1
- postgresql-simple-url ==0.2.1.0
- postgresql-syntax ==0.4.1
- postgresql-typed ==0.6.2.2
@ -1952,7 +1953,7 @@ default-package-overrides:
- primes ==0.2.1.0
- primitive ==0.8.0.0
- primitive-addr ==0.1.0.2
- primitive-extras ==0.10.1.6
- primitive-extras ==0.10.1.7
- primitive-offset ==0.2.0.0
- primitive-unaligned ==0.1.1.2
- primitive-unlifted ==0.1.3.1
@ -1988,7 +1989,7 @@ default-package-overrides:
- pulse-simple ==0.1.14
- pureMD5 ==2.1.4
- purescript-bridge ==0.15.0.0
- pusher-http-haskell ==2.1.0.13
- pusher-http-haskell ==2.1.0.15
- pvar ==1.0.0.0
- pwstore-fast ==2.4.4
- PyF ==0.11.1.1
@ -2038,7 +2039,7 @@ default-package-overrides:
- rank1dynamic ==0.4.1
- Rasterific ==0.7.5.4
- rasterific-svg ==0.3.3.2
- ratel ==2.0.0.8
- ratel ==2.0.0.9
- rate-limit ==1.4.3
- ratel-wai ==2.0.0.4
- ratio-int ==0.1.2
@ -2068,7 +2069,7 @@ default-package-overrides:
- recv ==0.1.0
- redact ==0.5.0.0
- reddit-scrape ==0.0.1
- redis-glob ==0.1.0.4
- redis-glob ==0.1.0.5
- reducers ==3.12.4
- refact ==0.3.0.2
- ref-fd ==0.5.0.1
@ -2108,7 +2109,7 @@ default-package-overrides:
- resolv ==0.2.0.2
- resource-pool ==0.4.0.0
- resourcet ==1.2.6
- rest-rewrite ==0.4.1
- rest-rewrite ==0.4.2
- result ==0.2.6.0
- retry ==0.9.3.1
- rev-state ==0.1.2
@ -2151,12 +2152,12 @@ default-package-overrides:
- safe-coloured-text-terminfo ==0.1.0.0
- safecopy ==0.10.4.2
- safe-decimal ==0.2.1.0
- safe-exceptions ==0.1.7.3
- safe-exceptions ==0.1.7.4
- safe-exceptions-checked ==0.1.0
- safe-foldable ==0.1.0.0
- safe-gen ==1.0.1
- safeio ==0.0.5.0
- safe-json ==1.1.3.1
- safe-json ==1.1.4.0
- safe-money ==0.9.1
- SafeSemaphore ==0.10.1
- saltine ==0.2.1.0
@ -2165,11 +2166,11 @@ default-package-overrides:
- sample-frame-np ==0.0.5
- sampling ==0.3.5
- sandi ==0.5
- sandwich ==0.1.4.0
- sandwich ==0.1.5.0
- sandwich-hedgehog ==0.1.3.0
- sandwich-quickcheck ==0.1.0.7
- sandwich-slack ==0.1.1.0
- sandwich-webdriver ==0.2.1.0
- sandwich-slack ==0.1.2.0
- sandwich-webdriver ==0.2.2.0
- say ==0.1.0.1
- sbp ==4.15.0
- sbv ==10.2
@ -2203,14 +2204,14 @@ default-package-overrides:
- sendfile ==0.7.11.4
- sendgrid-v3 ==1.0.0.1
- seqalign ==0.2.0.4
- seqid ==0.6.2
- seqid ==0.6.3
- seqid-streams ==0.7.2
- sequence-formats ==1.7.1
- sequenceTools ==1.5.3.1
- serialise ==0.2.6.0
- servant ==0.19.1
- servant-auth ==0.4.1.0
- servant-auth-client ==0.4.1.0
- servant-auth-client ==0.4.1.1
- servant-auth-docs ==0.2.10.0
- servant-auth-wordpress ==1.0.0.2
- servant-blaze ==0.9.1
@ -2301,8 +2302,8 @@ default-package-overrides:
- skein ==1.0.9.4
- skews ==0.1.0.3
- skip-var ==0.1.1.0
- skylighting ==0.13.2.1
- skylighting-core ==0.13.2.1
- skylighting ==0.13.4
- skylighting-core ==0.13.4
- skylighting-format-ansi ==0.1
- skylighting-format-blaze-html ==0.1.1
- skylighting-format-context ==0.1.0.2
@ -2311,7 +2312,7 @@ default-package-overrides:
- slave-thread ==1.1.0.2
- slick ==1.2.1.0
- slist ==0.2.1.0
- slynx ==0.7.2.1
- slynx ==0.7.2.2
- smallcheck ==1.2.1.1
- smtp-mail ==0.3.0.0
- snap-blaze ==0.2.1.5
@ -2354,8 +2355,9 @@ default-package-overrides:
- squeather ==0.8.0.0
- srcloc ==0.6.0.1
- srt ==0.1.2.0
- srtree ==1.0.0.4
- stache ==2.3.3
- srtree ==1.0.0.5
- stache ==2.3.4
- stack ==2.9.3.1
- stack-all ==0.4.1
- stack-clean-old ==0.4.6
- stack-templatizer ==0.1.1.0
@ -2391,9 +2393,9 @@ default-package-overrides:
- store-streaming ==0.2.0.3
- stratosphere ==0.60.0
- Stream ==0.4.7.2
- streaming ==0.2.3.1
- streaming ==0.2.4.0
- streaming-attoparsec ==1.0.0.1
- streaming-bytestring ==0.3.0
- streaming-bytestring ==0.3.1
- streaming-commons ==0.2.2.6
- streaming-wai ==0.1.1
- streamly ==0.9.0
@ -2417,16 +2419,16 @@ default-package-overrides:
- string-conversions ==0.4.0.1
- string-interpolate ==0.3.2.1
- stringprep ==1.0.0
- string-qq ==0.0.4
- string-qq ==0.0.5
- string-random ==0.1.4.3
- stringsearch ==0.3.6.6
- string-transform ==1.1.1
- string-variants ==0.2.2.0
- stripe-concepts ==1.0.3.2
- stripe-scotty ==1.1.0.3
- stripe-signature ==1.0.0.15
- stripe-wreq ==1.0.1.15
- strive ==6.0.0.7
- stripe-concepts ==1.0.3.3
- stripe-scotty ==1.1.0.4
- stripe-signature ==1.0.0.16
- stripe-wreq ==1.0.1.16
- strive ==6.0.0.9
- structs ==0.1.8
- structured ==0.1.1
- structured-cli ==2.7.0.1
@ -2477,7 +2479,7 @@ default-package-overrides:
- tagchup ==0.4.1.2
- tagged ==0.8.7
- tagged-binary ==0.2.0.1
- tagged-identity ==0.1.3
- tagged-identity ==0.1.4
- tagged-transformer ==0.8.2
- tagshare ==0.0
- tagsoup ==0.14.8
@ -2485,7 +2487,7 @@ default-package-overrides:
- tao ==1.0.0
- tao-example ==1.0.0
- tar ==0.5.1.1
- tar-conduit ==0.3.2
- tar-conduit ==0.3.2.1
- tardis ==0.4.4.0
- tasty ==1.4.3
- tasty-ant-xml ==1.1.8
@ -2519,7 +2521,7 @@ default-package-overrides:
- tcp-streams ==1.0.1.1
- tdigest ==0.3
- teardown ==0.5.0.1
- telegram-bot-api ==6.7
- telegram-bot-api ==6.7.1
- telegram-bot-simple ==0.12
- template-haskell-compat-v0208 ==0.1.9.2
- temporary ==1.3
@ -2620,14 +2622,14 @@ default-package-overrides:
- titlecase ==1.0.1
- tls ==1.6.0
- tls-session-manager ==0.0.4
- tlynx ==0.7.2.1
- tlynx ==0.7.2.2
- tmapchan ==0.0.3
- tmapmvar ==0.0.4
- tmp-postgres ==1.34.1.0
- tmp-proc ==0.5.1.3
- tmp-proc-postgres ==0.5.2.2
- tmp-proc-rabbitmq ==0.5.1.2
- tmp-proc-redis ==0.5.1.2
- tmp-proc ==0.5.1.4
- tmp-proc-postgres ==0.5.2.3
- tmp-proc-rabbitmq ==0.5.1.4
- tmp-proc-redis ==0.5.1.4
- token-bucket ==0.1.0.1
- toml-reader ==0.2.1.0
- toml-reader-parse ==0.1.1.1
@ -2684,7 +2686,7 @@ default-package-overrides:
- type-rig ==0.1
- type-spec ==0.4.0.0
- typography-geometry ==1.0.1.0
- typst-symbols ==0.1.0.1
- typst-symbols ==0.1.2
- tz ==0.1.3.6
- tzdata ==0.2.20230322.0
- tztime ==0.1.0.0
@ -2724,9 +2726,10 @@ default-package-overrides:
- universe-instances-extended ==1.1.3
- universe-reverse-instances ==1.1.1
- universe-some ==1.2.1
- universum ==1.8.2
- unix-bytestring ==0.4.0
- unix-compat ==0.7
- unix-time ==0.4.9
- unix-time ==0.4.10
- unjson ==0.15.4
- unliftio ==0.2.25.0
- unliftio-core ==0.2.1.0
@ -2781,6 +2784,7 @@ default-package-overrides:
- vector-instances ==3.4.2
- vector-mmap ==0.0.3
- vector-rotcev ==0.1.0.2
- vector-sized ==1.5.0
- vector-space ==0.16
- vector-split ==1.0.0.3
- vector-stream ==0.1.0.0
@ -2806,7 +2810,7 @@ default-package-overrides:
- wai-enforce-https ==1.0.0.0
- wai-eventsource ==3.0.0
- wai-extra ==3.1.13.0
- wai-feature-flags ==0.1.0.4
- wai-feature-flags ==0.1.0.6
- wai-handler-launch ==3.0.3.1
- wai-logger ==2.4.0
- wai-middleware-bearer ==1.0.3
@ -2889,14 +2893,14 @@ default-package-overrides:
- xdg-desktop-entry ==0.1.1.1
- xdg-userdirs ==0.1.0.2
- xeno ==0.6
- xlsx ==1.1.0.1
- xlsx ==1.1.1
- xml ==1.3.14
- xml-basic ==0.1.3.2
- xmlbf ==0.7
- xmlbf-xeno ==0.2.2
- xmlbf-xmlhtml ==0.2.2
- xml-conduit ==1.9.1.2
- xml-conduit-writer ==0.1.1.2
- xml-conduit ==1.9.1.3
- xml-conduit-writer ==0.1.1.4
- xmlgen ==0.6.2.2
- xml-hamlet ==0.5.0.2
- xml-helpers ==1.0.0
@ -2913,8 +2917,8 @@ default-package-overrides:
- xor ==0.0.1.1
- xss-sanitize ==0.3.7.2
- xxhash-ffi ==0.2.0.0
- yaml ==0.11.11.1
- yaml-unscrambler ==0.1.0.16
- yaml ==0.11.11.2
- yaml-unscrambler ==0.1.0.17
- Yampa ==0.14.3
- yarn-lock ==0.6.5
- yeshql-core ==4.2.0.0
@ -2925,7 +2929,7 @@ default-package-overrides:
- yesod-auth-oauth2 ==0.7.1.0
- yesod-auth-oidc ==0.1.4
- yesod-bin ==1.6.2.2
- yesod-core ==1.6.24.2
- yesod-core ==1.6.24.3
- yesod-eventsource ==1.6.0.1
- yesod-fb ==0.6.1
- yesod-form ==1.7.4

File diff suppressed because it is too large Load diff