[Git][haskell-team/package-plan][master] planned update to Stackage LTS 16.31
Clint Adams (@clint)
gitlab at salsa.debian.org
Tue Sep 21 17:59:50 BST 2021
Clint Adams pushed to branch master at Debian Haskell Group / package-plan
Commits:
71273db3 by Clint Adams at 2021-09-21T12:59:14-04:00
planned update to Stackage LTS 16.31
- - - - -
15 changed files:
- + additional-cabals/io-streams-1.5.2.0.cabal
- − additional-cabals/postgresql-simple-0.6.2.cabal
- + additional-cabals/postgresql-simple-0.6.4.cabal
- lts.config
- packages.txt
- patches/io-streams/1.5.1.0/no-bytestring-builder → patches/io-streams/1.5.2.0/no-bytestring-builder
- patches/io-streams/1.5.1.0/series → patches/io-streams/1.5.2.0/series
- − patches/postgresql-simple/0.6.2/newer-deps
- − patches/postgresql-simple/0.6.2/no-bytestring-builder
- + patches/postgresql-simple/0.6.4/no-bytestring-builder
- patches/snap-server/1.1.1.2/series → patches/postgresql-simple/0.6.4/series
- patches/snap-server/1.1.1.2/no-bytestring-builder → patches/snap-server/1.1.2.0/no-bytestring-builder
- patches/websockets/0.12.7.1/series → patches/snap-server/1.1.2.0/series
- patches/websockets/0.12.7.1/no-bytestring-builder → patches/websockets/0.12.7.2/no-bytestring-builder
- patches/postgresql-simple/0.6.2/series → patches/websockets/0.12.7.2/series
Changes:
=====================================
additional-cabals/io-streams-1.5.2.0.cabal
=====================================
@@ -0,0 +1,266 @@
+Name: io-streams
+Version: 1.5.2.0
+License: BSD3
+License-file: LICENSE
+Category: Data, Network, IO-Streams
+Build-type: Simple
+Maintainer: Gregory Collins <greg at gregorycollins.net>
+Cabal-version: >= 1.10
+Synopsis: Simple, composable, and easy-to-use stream I/O
+Tested-With: GHC==7.4.2, GHC==7.6.3, GHC==7.8.4, GHC==7.10.3,
+ GHC==8.0.2, GHC==8.2.2, GHC==8.4.3, GHC==8.6.3,
+ GHC==8.8.3, GHC==8.10.1
+
+Bug-Reports: https://github.com/snapframework/io-streams/issues
+Description:
+ /Overview/
+ .
+ The io-streams library contains simple and easy-to-use primitives for I/O
+ using streams. Most users will want to import the top-level convenience
+ module "System.IO.Streams", which re-exports most of the library:
+ .
+ @
+ import System.IO.Streams (InputStream, OutputStream)
+ import qualified System.IO.Streams as Streams
+ @
+ .
+ For first-time users, @io-streams@ comes with an included tutorial, which can
+ be found in the "System.IO.Streams.Tutorial" module.
+ .
+ /Features/
+ .
+ The @io-streams@ user API has two basic types: @InputStream a@ and
+ @OutputStream a@, and three fundamental I/O primitives:
+ .
+ @
+ \-\- read an item from an input stream
+ Streams.read :: InputStream a -> IO (Maybe a)
+ .
+ \-\- push an item back to an input stream
+ Streams.unRead :: a -> InputStream a -> IO ()
+ .
+ \-\- write to an output stream
+ Streams.write :: Maybe a -> OutputStream a -> IO ()
+ @
+ .
+ Streams can be transformed by composition and hooked together with provided combinators:
+ .
+ @
+ ghci> Streams.fromList [1,2,3::Int] >>= Streams.map (*10) >>= Streams.toList
+ [10,20,30]
+ @
+ .
+ Stream composition leaves the original stream accessible:
+ .
+ @
+ ghci> input \<- Streams.fromByteString \"long string\"
+ ghci> wrapped \<- Streams.takeBytes 4 input
+ ghci> Streams.read wrapped
+ Just \"long\"
+ ghci> Streams.read wrapped
+ Nothing
+ ghci> Streams.read input
+ Just \" string\"
+ @
+ .
+ Simple types and operations in the IO monad mean straightforward and simple
+ exception handling and resource cleanup using Haskell standard library
+ facilities like 'Control.Exception.bracket'.
+ .
+ @io-streams@ comes with:
+ .
+ * functions to use files, handles, concurrent channels, sockets, lists,
+ vectors, and more as streams.
+ .
+ * a variety of combinators for wrapping and transforming streams, including
+ compression and decompression using zlib, controlling precisely how many
+ bytes are read from or written to a stream, buffering output using
+ bytestring builders, folds, maps, filters, zips, etc.
+ .
+ * support for parsing from streams using @attoparsec at .
+ .
+ * support for spawning processes and communicating with them using streams.
+
+Extra-Source-Files: CONTRIBUTORS README.md changelog.md
+
+Flag NoInteractiveTests
+ Description: Do not run interactive tests
+ Default: False
+
+Flag Zlib
+ Description: Include zlib support
+ Default: True
+ Manual: True
+
+Flag Network
+ Description: Include network support
+ Default: True
+ Manual: True
+
+------------------------------------------------------------------------------
+Library
+ hs-source-dirs: src
+ Default-language: Haskell2010
+
+ ghc-options: -Wall -fwarn-tabs -funbox-strict-fields
+ -fno-warn-unused-do-bind
+
+ Exposed-modules: System.IO.Streams,
+ System.IO.Streams.Attoparsec,
+ System.IO.Streams.Attoparsec.ByteString,
+ System.IO.Streams.Attoparsec.Text,
+ System.IO.Streams.Builder,
+ System.IO.Streams.ByteString,
+ System.IO.Streams.Combinators,
+ System.IO.Streams.Concurrent,
+ System.IO.Streams.Core,
+ System.IO.Streams.Debug,
+ System.IO.Streams.Handle,
+ System.IO.Streams.File,
+ System.IO.Streams.List,
+ System.IO.Streams.Process,
+ System.IO.Streams.Text,
+ System.IO.Streams.Vector,
+ System.IO.Streams.Internal,
+ System.IO.Streams.Tutorial
+
+ Other-modules: System.IO.Streams.Internal.Attoparsec,
+ System.IO.Streams.Internal.Search
+
+ Build-depends: base >= 4 && <5,
+ attoparsec >= 0.10 && <0.14,
+ bytestring >= 0.9 && <0.11,
+ bytestring-builder >= 0.10 && <0.11,
+ primitive >= 0.2 && <0.8,
+ process >= 1.1 && <1.7,
+ text >= 0.10 && <1.3,
+ time >= 1.2 && <1.10,
+ transformers >= 0.2 && <0.6,
+ vector >= 0.7 && <0.13
+
+ if impl(ghc >= 7.2)
+ other-extensions: Trustworthy
+
+ if flag(Zlib)
+ Exposed-modules: System.IO.Streams.Zlib
+ Build-depends: zlib-bindings >= 0.1 && <0.2
+ cpp-options: -DENABLE_ZLIB
+
+ if flag(Network)
+ Exposed-modules: System.IO.Streams.Network
+ Other-modules: System.IO.Streams.Internal.Network
+ Build-depends: network >= 2.3 && <3.2
+ cpp-options: -DENABLE_NETWORK
+
+ other-extensions:
+ BangPatterns,
+ CPP,
+ DeriveDataTypeable,
+ FlexibleContexts,
+ FlexibleInstances,
+ GeneralizedNewtypeDeriving,
+ MultiParamTypeClasses,
+ OverloadedStrings,
+ RankNTypes,
+ TypeSynonymInstances
+
+
+------------------------------------------------------------------------------
+Test-suite testsuite
+ Type: exitcode-stdio-1.0
+ hs-source-dirs: src test
+ Main-is: TestSuite.hs
+ Default-language: Haskell2010
+
+ Other-modules: System.IO.Streams.Tests.Attoparsec.ByteString,
+ System.IO.Streams.Tests.Attoparsec.Text,
+ System.IO.Streams.Tests.Builder,
+ System.IO.Streams.Tests.ByteString,
+ System.IO.Streams.Tests.Combinators,
+ System.IO.Streams.Tests.Common,
+ System.IO.Streams.Tests.Concurrent,
+ System.IO.Streams.Tests.Debug,
+ System.IO.Streams.Tests.File,
+ System.IO.Streams.Tests.Handle,
+ System.IO.Streams.Tests.Internal,
+ System.IO.Streams.Tests.List,
+ System.IO.Streams.Tests.Process,
+ System.IO.Streams.Tests.Text,
+ System.IO.Streams.Tests.Vector,
+ System.IO.Streams,
+ System.IO.Streams.Attoparsec.ByteString,
+ System.IO.Streams.Attoparsec.Text,
+ System.IO.Streams.Builder,
+ System.IO.Streams.ByteString,
+ System.IO.Streams.Combinators,
+ System.IO.Streams.Concurrent,
+ System.IO.Streams.Core,
+ System.IO.Streams.Debug,
+ System.IO.Streams.Handle,
+ System.IO.Streams.File,
+ System.IO.Streams.List,
+ System.IO.Streams.Process,
+ System.IO.Streams.Text,
+ System.IO.Streams.Vector,
+ System.IO.Streams.Internal,
+ System.IO.Streams.Internal.Attoparsec,
+ System.IO.Streams.Internal.Search
+
+
+ ghc-options: -Wall -fwarn-tabs -funbox-strict-fields -threaded
+ -fno-warn-unused-do-bind
+
+ if !os(windows) && !flag(NoInteractiveTests)
+ cpp-options: -DENABLE_PROCESS_TESTS
+
+ if flag(Zlib)
+ Other-modules: System.IO.Streams.Tests.Zlib,
+ System.IO.Streams.Zlib
+ Build-depends: zlib-bindings,
+ zlib >= 0.5 && <0.7
+ cpp-options: -DENABLE_ZLIB
+
+ if flag(Network)
+ Other-modules: System.IO.Streams.Internal.Network,
+ System.IO.Streams.Network,
+ System.IO.Streams.Tests.Network
+ Build-depends: network
+ cpp-options: -DENABLE_NETWORK
+
+ Build-depends: base,
+ attoparsec,
+ bytestring,
+ bytestring-builder,
+ deepseq >= 1.2 && <1.5,
+ directory >= 1.1 && <2,
+ filepath >= 1.2 && <2,
+ mtl >= 2 && <3,
+ primitive,
+ process,
+ text,
+ time,
+ transformers,
+ vector,
+
+ HUnit >= 1.2 && <2,
+ QuickCheck >= 2.3.0.2 && <3,
+ test-framework >= 0.6 && <0.9,
+ test-framework-hunit >= 0.2.7 && <0.4,
+ test-framework-quickcheck2 >= 0.2.12.1 && <0.4
+
+ if impl(ghc >= 7.2)
+ other-extensions: Trustworthy
+
+ other-extensions:
+ BangPatterns,
+ CPP,
+ DeriveDataTypeable,
+ FlexibleInstances,
+ GeneralizedNewtypeDeriving,
+ MultiParamTypeClasses,
+ OverloadedStrings,
+ RankNTypes
+
+source-repository head
+ type: git
+ location: https://github.com/snapframework/io-streams.git
=====================================
additional-cabals/postgresql-simple-0.6.2.cabal deleted
=====================================
@@ -1,194 +0,0 @@
-Cabal-version: 1.12
-Name: postgresql-simple
-Version: 0.6.2
-
-Synopsis: Mid-Level PostgreSQL client library
-Description:
- Mid-Level PostgreSQL client library, forked from mysql-simple.
-License: BSD3
-License-file: LICENSE
-Author: Bryan O'Sullivan, Leon P Smith
-Maintainer: Oleg Grenrus <oleg.grenrus at iki.fi>
-Copyright: (c) 2011 MailRank, Inc.
- (c) 2011-2018 Leon P Smith
- (c) 2018-2019 Oleg Grenrus
-Category: Database
-Build-type: Simple
-
-extra-source-files:
- CONTRIBUTORS
- CHANGES.md
- test/results/malformed-input.expected
- test/results/unique-constraint-violation.expected
-
-tested-with:
- GHC == 7.6.3
- || == 7.8.4
- || == 7.10.3
- || == 8.0.2
- || == 8.2.2
- || == 8.4.4
- || == 8.6.5
- || == 8.8.1
-
-Library
- default-language: Haskell2010
- hs-source-dirs: src
- Exposed-modules:
- Database.PostgreSQL.Simple
- Database.PostgreSQL.Simple.Arrays
- Database.PostgreSQL.Simple.Copy
- Database.PostgreSQL.Simple.Cursor
- Database.PostgreSQL.Simple.FromField
- Database.PostgreSQL.Simple.FromRow
- Database.PostgreSQL.Simple.LargeObjects
- Database.PostgreSQL.Simple.HStore
- Database.PostgreSQL.Simple.HStore.Internal
- Database.PostgreSQL.Simple.Notification
- Database.PostgreSQL.Simple.Ok
- Database.PostgreSQL.Simple.Range
- Database.PostgreSQL.Simple.SqlQQ
- Database.PostgreSQL.Simple.Time
- Database.PostgreSQL.Simple.Time.Internal
- Database.PostgreSQL.Simple.ToField
- Database.PostgreSQL.Simple.ToRow
- Database.PostgreSQL.Simple.Transaction
- Database.PostgreSQL.Simple.TypeInfo
- Database.PostgreSQL.Simple.TypeInfo.Macro
- Database.PostgreSQL.Simple.TypeInfo.Static
- Database.PostgreSQL.Simple.Types
- Database.PostgreSQL.Simple.Errors
- Database.PostgreSQL.Simple.Vector
- Database.PostgreSQL.Simple.Vector.Unboxed
-
--- Other-modules:
- Database.PostgreSQL.Simple.Internal
-
- Other-modules:
- Database.PostgreSQL.Simple.Compat
- Database.PostgreSQL.Simple.HStore.Implementation
- Database.PostgreSQL.Simple.Internal.PQResultUtils
- Database.PostgreSQL.Simple.Time.Implementation
- Database.PostgreSQL.Simple.Time.Internal.Parser
- Database.PostgreSQL.Simple.Time.Internal.Printer
- Database.PostgreSQL.Simple.TypeInfo.Types
-
- -- GHC bundled libs
- Build-depends:
- base >=4.6.0.0 && <4.13
- , bytestring >=0.10.0.0 && <0.11
- , containers >=0.5.0.0 && <0.7
- , time >=1.4.0.1 && <1.9
- , transformers >=0.3.0.0 && <0.6
- , template-haskell >=2.8.0.0 && <2.15
- , text >=1.2.3.0 && <1.3
-
- -- Other dependencies
- Build-depends:
- aeson >=1.4.1.0 && <1.5
- , attoparsec >=0.13.2.2 && <0.14
- , bytestring-builder >=0.10.8.1.0 && <0.11
- , case-insensitive >=1.2.0.11 && <1.3
- , hashable >=1.2.7.0 && <1.3
- , Only >=0.1 && <0.1.1
- , postgresql-libpq >=0.9.4.2 && < 0.10
- , uuid-types >=1.0.3 && <1.1
- , scientific >=0.3.6.2 && <0.4
- , vector >=0.12.0.1 && <0.13
-
- if !impl(ghc >= 8.0)
- Build-depends:
- fail >=4.9.0.0 && <4.10,
- semigroups >=0.18.5 && <0.19
-
- if !impl(ghc >= 7.6)
- Build-depends:
- ghc-prim
-
- default-extensions:
- DoAndIfThenElse
- OverloadedStrings
- BangPatterns
- ViewPatterns
- TypeOperators
-
- ghc-options: -Wall -fno-warn-name-shadowing
-
-source-repository head
- type: git
- location: http://github.com/phadej/postgresql-simple
-
-source-repository this
- type: git
- location: http://github.com/phadej/postgresql-simple
- tag: v0.6
-
-test-suite inspection
- if !impl(ghc >= 8.0)
- buildable: False
-
- default-language: Haskell2010
- type: exitcode-stdio-1.0
- hs-source-dirs: test
- main-is: Inspection.hs
- build-depends:
- base
- , inspection-testing >=0.4.1.1 && <0.5
- , postgresql-simple
- , postgresql-libpq
- , tasty
- , tasty-hunit
-
-test-suite test
- default-language: Haskell2010
- type: exitcode-stdio-1.0
-
- hs-source-dirs: test
- main-is: Main.hs
- other-modules:
- Common
- Notify
- Serializable
- Time
-
- ghc-options: -Wall -fno-warn-name-shadowing -fno-warn-unused-do-bind
-
- default-extensions:
- NamedFieldPuns
- OverloadedStrings
- Rank2Types
- RecordWildCards
- PatternGuards
- ScopedTypeVariables
-
- build-depends: base
- , aeson
- , base16-bytestring
- , bytestring
- , containers
- , cryptohash-md5 >= 0.11.100.1 && <0.12
- , filepath
- , tasty
- , tasty-hunit
- , tasty-golden
- , HUnit
- , postgresql-simple
- , text
- , time
- , vector
- , case-insensitive
-
- if !impl(ghc >= 7.6)
- build-depends:
- ghc-prim
-
-benchmark select
- default-language: Haskell2010
- type: exitcode-stdio-1.0
-
- hs-source-dirs: bench
- main-is: Select.hs
-
- build-depends: base
- , postgresql-simple
- , vector
=====================================
additional-cabals/postgresql-simple-0.6.4.cabal
=====================================
@@ -0,0 +1,194 @@
+cabal-version: 1.12
+name: postgresql-simple
+version: 0.6.4
+synopsis: Mid-Level PostgreSQL client library
+description:
+ Mid-Level PostgreSQL client library, forked from mysql-simple.
+
+license: BSD3
+license-file: LICENSE
+author: Bryan O'Sullivan, Leon P Smith
+maintainer: Oleg Grenrus <oleg.grenrus at iki.fi>
+copyright:
+ (c) 2011 MailRank, Inc.
+ (c) 2011-2018 Leon P Smith
+ (c) 2018-2020 Oleg Grenrus
+
+category: Database
+build-type: Simple
+extra-source-files:
+ CHANGES.md
+ CONTRIBUTORS
+ test/results/malformed-input.expected
+ test/results/unique-constraint-violation.expected
+
+tested-with:
+ GHC ==7.6.3
+ || ==7.8.4
+ || ==7.10.3
+ || ==8.0.2
+ || ==8.2.2
+ || ==8.4.4
+ || ==8.6.5
+ || ==8.8.4
+ || ==8.10.3
+
+library
+ default-language: Haskell2010
+ hs-source-dirs: src
+ exposed-modules:
+ Database.PostgreSQL.Simple
+ Database.PostgreSQL.Simple.Arrays
+ Database.PostgreSQL.Simple.Copy
+ Database.PostgreSQL.Simple.Cursor
+ Database.PostgreSQL.Simple.Errors
+ Database.PostgreSQL.Simple.FromField
+ Database.PostgreSQL.Simple.FromRow
+ Database.PostgreSQL.Simple.HStore
+ Database.PostgreSQL.Simple.HStore.Internal
+ Database.PostgreSQL.Simple.Internal
+ Database.PostgreSQL.Simple.LargeObjects
+ Database.PostgreSQL.Simple.Newtypes
+ Database.PostgreSQL.Simple.Notification
+ Database.PostgreSQL.Simple.Ok
+ Database.PostgreSQL.Simple.Range
+ Database.PostgreSQL.Simple.SqlQQ
+ Database.PostgreSQL.Simple.Time
+ Database.PostgreSQL.Simple.Time.Internal
+ Database.PostgreSQL.Simple.ToField
+ Database.PostgreSQL.Simple.ToRow
+ Database.PostgreSQL.Simple.Transaction
+ Database.PostgreSQL.Simple.TypeInfo
+ Database.PostgreSQL.Simple.TypeInfo.Macro
+ Database.PostgreSQL.Simple.TypeInfo.Static
+ Database.PostgreSQL.Simple.Types
+ Database.PostgreSQL.Simple.Vector
+ Database.PostgreSQL.Simple.Vector.Unboxed
+
+ -- Other-modules:
+ other-modules:
+ Database.PostgreSQL.Simple.Compat
+ Database.PostgreSQL.Simple.HStore.Implementation
+ Database.PostgreSQL.Simple.Internal.PQResultUtils
+ Database.PostgreSQL.Simple.Time.Implementation
+ Database.PostgreSQL.Simple.Time.Internal.Parser
+ Database.PostgreSQL.Simple.Time.Internal.Printer
+ Database.PostgreSQL.Simple.TypeInfo.Types
+
+ -- GHC bundled libs
+ build-depends:
+ base >=4.6.0.0 && <4.15
+ , bytestring >=0.10.0.0 && <0.12
+ , containers >=0.5.0.0 && <0.7
+ , template-haskell >=2.8.0.0 && <2.17
+ , text >=1.2.3.0 && <1.3
+ , time-compat >=1.9.5 && <1.12
+ , transformers >=0.3.0.0 && <0.6
+
+ -- Other dependencies
+ build-depends:
+ aeson >=1.4.1.0 && <1.6
+ , attoparsec >=0.13.2.2 && <0.14
+ , bytestring-builder >=0.10.8.1.0 && <0.11
+ , case-insensitive >=1.2.0.11 && <1.3
+ , hashable >=1.2.7.0 && <1.4
+ , Only >=0.1 && <0.1.1
+ , postgresql-libpq >=0.9.4.3 && <0.10
+ , scientific >=0.3.6.2 && <0.4
+ , uuid-types >=1.0.3 && <1.1
+ , vector >=0.12.0.1 && <0.13
+
+ if !impl(ghc >=8.0)
+ build-depends:
+ fail >=4.9.0.0 && <4.10
+ , semigroups >=0.18.5 && <0.20
+
+ if !impl(ghc >=7.6)
+ build-depends: ghc-prim
+
+ default-extensions:
+ BangPatterns
+ DoAndIfThenElse
+ OverloadedStrings
+ TypeOperators
+ ViewPatterns
+
+ ghc-options: -Wall -fno-warn-name-shadowing
+
+source-repository head
+ type: git
+ location: http://github.com/haskellari/postgresql-simple
+
+source-repository this
+ type: git
+ location: http://github.com/haskellari/postgresql-simple
+ tag: v0.6.3
+
+test-suite inspection
+ if !impl(ghc >=8.0)
+ buildable: False
+
+ default-language: Haskell2010
+ type: exitcode-stdio-1.0
+ hs-source-dirs: test
+ main-is: Inspection.hs
+ build-depends:
+ base
+ , inspection-testing >=0.4.1.1 && <0.5
+ , postgresql-libpq
+ , postgresql-simple
+ , tasty
+ , tasty-hunit
+
+test-suite test
+ default-language: Haskell2010
+ type: exitcode-stdio-1.0
+ hs-source-dirs: test
+ main-is: Main.hs
+ other-modules:
+ Common
+ Notify
+ Serializable
+ Time
+ Interval
+
+ ghc-options: -threaded
+ ghc-options: -Wall -fno-warn-name-shadowing -fno-warn-unused-do-bind
+ default-extensions:
+ NamedFieldPuns
+ OverloadedStrings
+ PatternGuards
+ Rank2Types
+ RecordWildCards
+ ScopedTypeVariables
+
+ build-depends:
+ aeson
+ , base
+ , base16-bytestring
+ , bytestring
+ , case-insensitive
+ , containers
+ , cryptohash-md5 >=0.11.100.1 && <0.12
+ , filepath
+ , HUnit
+ , postgresql-simple
+ , tasty
+ , tasty-golden
+ , tasty-hunit
+ , text
+ , time-compat
+ , vector
+
+ if !impl(ghc >=7.6)
+ build-depends: ghc-prim
+
+benchmark select
+ default-language: Haskell2010
+ type: exitcode-stdio-1.0
+ hs-source-dirs: bench
+ main-is: Select.hs
+ build-depends:
+ base
+ , postgresql-simple
+ , vector
=====================================
lts.config
=====================================
@@ -1,10 +1,10 @@
-- NOTE: Due to revisions, this file may not work. See:
-- https://github.com/fpco/stackage-server/issues/232
--- Stackage snapshot from: http://www.stackage.org/snapshot/lts-16.9
+-- Stackage snapshot from: http://www.stackage.org/snapshot/lts-16.31
-- Please place this file next to your .cabal file as cabal.config
-- To only use tested packages, uncomment the following line:
--- remote-repo: stackage-lts-16.9:http://www.stackage.org/lts-16.9
+-- remote-repo: stackage-lts-16.31:http://www.stackage.org/lts-16.31
constraints: abstract-deque ==0.3,
abstract-par ==0.3.3,
AC-Angle ==1.0,
@@ -12,15 +12,15 @@ constraints: abstract-deque ==0.3,
ace ==0.6,
action-permutations ==0.0.0.1,
active ==0.2.0.14,
- ad ==4.4,
+ ad ==4.4.1,
adjunctions ==4.4,
adler32 ==0.1.2.0,
- advent-of-code-api ==0.2.7.0,
+ advent-of-code-api ==0.2.8.0,
aeson ==1.4.7.1,
aeson-attoparsec ==0.0.0,
aeson-better-errors ==0.9.1.0,
aeson-casing ==0.2.0.0,
- aeson-combinators ==0.0.2.1,
+ aeson-combinators ==0.0.4.0,
aeson-compat ==0.3.9,
aeson-default ==0.9.1.0,
aeson-diff ==1.1.0.9,
@@ -37,7 +37,7 @@ constraints: abstract-deque ==0.3,
al ==0.1.4.2,
alarmclock ==0.7.0.5,
alerts ==0.1.2.0,
- alex ==3.2.5,
+ alex ==3.2.6,
alg ==0.2.13.1,
algebraic-graphs ==0.5,
Allure ==0.9.5.0,
@@ -138,21 +138,21 @@ constraints: abstract-deque ==0.3,
amazonka-waf ==1.6.1,
amazonka-workspaces ==1.6.1,
amazonka-xray ==1.6.1,
- amqp ==0.20.0,
- amqp-utils ==0.4.4.0,
+ amqp ==0.20.0.1,
+ amqp-utils ==0.4.4.1,
annotated-wl-pprint ==0.7.0,
ansi-terminal ==0.10.3,
ansi-wl-pprint ==0.6.9,
- antiope-core ==7.5.1,
- antiope-dynamodb ==7.5.1,
- antiope-messages ==7.5.1,
- antiope-s3 ==7.5.1,
- antiope-sns ==7.5.1,
- antiope-sqs ==7.5.1,
+ antiope-core ==7.5.3,
+ antiope-dynamodb ==7.5.3,
+ antiope-messages ==7.5.3,
+ antiope-s3 ==7.5.3,
+ antiope-sns ==7.5.3,
+ antiope-sqs ==7.5.3,
ANum ==0.2.0.2,
apecs ==0.9.2,
apecs-gloss ==0.2.4,
- apecs-physics ==0.4.4,
+ apecs-physics ==0.4.5,
api-field-json-th ==0.1.0.2,
appar ==0.1.8,
appendmap ==0.1.5,
@@ -176,7 +176,7 @@ constraints: abstract-deque ==0.3,
asn1-encoding ==0.9.6,
asn1-parse ==0.9.5,
asn1-types ==0.3.4,
- assert-failure ==0.1.2.3,
+ assert-failure ==0.1.2.5,
assoc ==1.0.2,
astro ==0.4.2.1,
async ==2.2.2,
@@ -185,32 +185,31 @@ constraints: abstract-deque ==0.3,
async-refresh-tokens ==0.4.0.0,
async-timer ==0.2.0.0,
atom-basic ==0.2.5,
- atomic-primops ==0.8.3,
+ atomic-primops ==0.8.4,
atomic-write ==0.2.0.7,
attoparsec ==0.13.2.4,
attoparsec-base64 ==0.0.0,
attoparsec-binary ==0.2,
attoparsec-expr ==0.1.1.2,
- attoparsec-iso8601 ==1.0.1.0,
+ attoparsec-iso8601 ==1.0.2.0,
attoparsec-path ==0.0.0.1,
audacity ==0.0.2,
- aur ==7.0.3,
- aura ==3.1.6,
+ aur ==7.0.5,
+ aura ==3.1.9,
authenticate ==1.3.5,
authenticate-oauth ==1.6.0.1,
auto ==0.4.3.1,
- autoexporter ==1.1.18,
+ autoexporter ==1.1.19,
auto-update ==0.1.6,
avers ==0.0.17.1,
avro ==0.5.2.0,
aws-cloudfront-signed-cookies ==0.2.0.6,
- bank-holidays-england ==0.2.0.5,
+ bank-holidays-england ==0.2.0.6,
base installed,
base16 ==0.2.1.0,
base16-bytestring ==0.1.1.7,
base16-lens ==0.1.2.0,
- base32 ==0.1.1.2,
- base32-lens ==0.1.0.0,
+ base32 ==0.2.0.0,
base32string ==0.9.1,
base58string ==0.10.0,
base64 ==0.4.2.2,
@@ -218,11 +217,11 @@ constraints: abstract-deque ==0.3,
base64-bytestring-type ==1.0.1,
base64-lens ==0.3.0,
base64-string ==0.2,
- base-compat ==0.11.1,
- base-compat-batteries ==0.11.1,
+ base-compat ==0.11.2,
+ base-compat-batteries ==0.11.2,
basement ==0.0.11,
base-noprelude ==4.13.0.0,
- base-orphans ==0.8.2,
+ base-orphans ==0.8.4,
base-prelude ==1.3,
base-unicode-symbols ==0.2.4.2,
basic-prelude ==0.7.0,
@@ -232,7 +231,7 @@ constraints: abstract-deque ==0.3,
bech32 ==1.0.2,
bech32-th ==1.0.2,
bench ==1.0.12,
- benchpress ==0.2.2.14,
+ benchpress ==0.2.2.15,
between ==0.11.0.0,
bibtex ==0.1.0.6,
bifunctors ==5.5.7,
@@ -261,6 +260,7 @@ constraints: abstract-deque ==0.3,
bitset-word8 ==0.1.1.2,
bits-extra ==0.0.2.0,
bitvec ==1.0.3.0,
+ bitwise-enum ==1.0.0.3,
blake2 ==0.3.0,
blanks ==0.3.0,
blas-carray ==0.1.0.1,
@@ -273,6 +273,7 @@ constraints: abstract-deque ==0.3,
blaze-svg ==0.3.6.1,
blaze-textual ==0.2.1.0,
bmp ==1.2.6.3,
+ BNFC ==2.8.4,
boltzmann-samplers ==0.1.1.0,
Boolean ==0.2.4,
boolean-like ==0.1.1.0,
@@ -289,7 +290,7 @@ constraints: abstract-deque ==0.3,
bower-json ==1.0.0.1,
boxes ==0.1.5,
brick ==0.52.1,
- brittany ==0.12.1.1,
+ brittany ==0.12.2.0,
broadcast-chan ==0.2.1.1,
bsb-http-chunked ==0.0.0.4,
bson ==0.4.0.1,
@@ -301,7 +302,7 @@ constraints: abstract-deque ==0.3,
bv ==0.5,
bv-little ==1.1.1,
byteable ==0.1.1,
- byte-count-reader ==0.10.0.1,
+ byte-count-reader ==0.10.1.2,
bytedump ==1.0,
byteorder ==1.0.4,
byte-order ==0.1.2.0,
@@ -314,17 +315,17 @@ constraints: abstract-deque ==0.3,
bytestring-mmap ==0.2.2,
bytestring-strict-builder ==0.4.5.3,
bytestring-to-vector ==0.3.0.1,
- bytestring-tree-builder ==0.2.7.3,
+ bytestring-tree-builder ==0.2.7.7,
bz2 ==1.0.0.1,
bzlib-conduit ==0.3.0.2,
- c2hs ==0.28.6,
+ c2hs ==0.28.7,
Cabal installed,
cabal2nix ==2.15.1,
cabal2spec ==2.5,
cabal-appimage ==0.3.0.0,
cabal-debian ==5.0.3,
cabal-doctest ==1.0.8,
- cabal-rpm ==2.0.6,
+ cabal-rpm ==2.0.7,
cache ==0.1.3.0,
cacophony ==0.10.1,
calendar-recycling ==0.0.0.1,
@@ -341,7 +342,7 @@ constraints: abstract-deque ==0.3,
casing ==0.1.4.1,
cassava ==0.5.2.0,
cassava-conduit ==0.5.1,
- cassava-megaparsec ==2.0.1,
+ cassava-megaparsec ==2.0.2,
cast ==0.1.0.2,
category ==0.2.5.0,
cayley-client ==0.4.13,
@@ -367,7 +368,7 @@ constraints: abstract-deque ==0.3,
checkers ==0.5.6,
checksum ==0.0,
chimera ==0.3.1.0,
- chiphunk ==0.1.2.1,
+ chiphunk ==0.1.4.0,
choice ==0.2.2,
chronologique ==0.3.1.3,
chronos ==1.1.1,
@@ -378,9 +379,9 @@ constraints: abstract-deque ==0.3,
cipher-des ==0.0.6,
cipher-rc4 ==0.1.4,
circle-packing ==0.1.0.6,
- clash-ghc ==1.2.4,
- clash-lib ==1.2.4,
- clash-prelude ==1.2.4,
+ clash-ghc ==1.2.5,
+ clash-lib ==1.2.5,
+ clash-prelude ==1.2.5,
classy-prelude ==1.5.0,
classy-prelude-conduit ==1.5.0,
classy-prelude-yesod ==1.5.0,
@@ -393,7 +394,7 @@ constraints: abstract-deque ==0.3,
clumpiness ==0.17.0.2,
ClustalParser ==1.3.0,
cmark ==0.6,
- cmark-gfm ==0.2.1,
+ cmark-gfm ==0.2.2,
cmark-lucid ==0.1.0.0,
cmdargs ==0.10.20,
codec-beam ==0.2.0,
@@ -428,7 +429,7 @@ constraints: abstract-deque ==0.3,
concurrent-split ==0.0.1.1,
concurrent-supply ==0.1.8,
cond ==0.4.1.1,
- conduit ==1.3.2,
+ conduit ==1.3.4,
conduit-algorithms ==0.0.11.0,
conduit-combinators ==1.3.0,
conduit-concurrent-map ==0.1.1,
@@ -443,7 +444,7 @@ constraints: abstract-deque ==0.3,
config-ini ==0.2.4.0,
configurator ==0.3.0.0,
configurator-export ==0.1.0.1,
- configurator-pg ==0.2.3,
+ configurator-pg ==0.2.5,
connection ==0.3.1,
connection-pool ==0.2.2,
console-style ==0.0.2.1,
@@ -451,15 +452,15 @@ constraints: abstract-deque ==0.3,
constraints ==0.12,
constraint-tuples ==0.1.2,
containers installed,
- contravariant ==1.5.2,
- contravariant-extras ==0.3.5.1,
+ contravariant ==1.5.3,
+ contravariant-extras ==0.3.5.2,
control-bool ==0.2.1,
control-monad-free ==0.6.2,
control-monad-omega ==0.3.2,
convertible ==1.1.1.0,
cookie ==0.4.5,
core-data ==0.2.1.8,
- core-program ==0.2.4.5,
+ core-program ==0.2.5.0,
core-text ==0.2.3.6,
countable ==1.0,
cpio-conduit ==0.7.0,
@@ -470,12 +471,12 @@ constraints: abstract-deque ==0.3,
crackNum ==2.3,
crc32c ==0.0.0,
credential-store ==0.1.2,
- criterion ==1.5.6.2,
+ criterion ==1.5.7.0,
criterion-measurement ==0.1.2.0,
cron ==0.7.0,
crypto-api ==0.13.3,
crypto-cipher-types ==0.0.9,
- cryptocompare ==0.1.1,
+ cryptocompare ==0.1.2,
crypto-enigma ==0.1.1.6,
cryptohash ==0.11.9,
cryptohash-cryptoapi ==0.1.4,
@@ -496,7 +497,7 @@ constraints: abstract-deque ==0.3,
css-syntax ==0.1.0.0,
css-text ==0.1.3.0,
csv ==0.1.2,
- csv-conduit ==0.7.1.0,
+ csv-conduit ==0.7.2.0,
ctrie ==0.2,
cubicbezier ==0.6.0.6,
cubicspline ==0.1.2,
@@ -534,6 +535,7 @@ constraints: abstract-deque ==0.3,
data-fix ==0.2.1,
data-forest ==0.1.0.8,
data-has ==0.3.0.0,
+ data-hash ==0.2.0.1,
data-interval ==2.0.1,
data-inttrie ==0.1.4,
data-lens-light ==0.1.2.2,
@@ -543,14 +545,14 @@ constraints: abstract-deque ==0.3,
data-or ==1.0.0.5,
data-ordlist ==0.4.7.0,
data-ref ==0.0.2,
- data-reify ==0.6.1,
+ data-reify ==0.6.3,
data-serializer ==0.3.4.1,
data-textual ==0.3.0.3,
data-tree-print ==0.1.0.2,
dataurl ==0.1.0.0,
DAV ==1.3.4,
DBFunctor ==0.1.1.1,
- dbus ==1.2.16,
+ dbus ==1.2.17,
dbus-hslogger ==0.1.0.1,
debian ==4.0.2,
debian-build ==0.10.2.0,
@@ -561,7 +563,7 @@ constraints: abstract-deque ==0.3,
deepseq installed,
deepseq-generics ==0.2.0.0,
deepseq-instances ==0.1.0.1,
- deferred-folds ==0.9.10.1,
+ deferred-folds ==0.9.15,
dejafu ==2.3.0.1,
dense-linear-algebra ==0.1.0.0,
depq ==0.4.1.0,
@@ -599,22 +601,22 @@ constraints: abstract-deque ==0.3,
distributed-closure ==0.4.2.0,
distribution-nixpkgs ==1.3.1,
distribution-opensuse ==1.1.1,
- distributive ==0.6.2,
- dl-fedora ==0.7.4,
+ distributive ==0.6.2.1,
+ dl-fedora ==0.7.5,
dlist ==0.8.0.8,
dlist-instances ==0.1.1.1,
dlist-nonempty ==0.1.1,
dns ==4.0.1,
dockerfile ==0.2.0,
doclayout ==0.3,
- doctemplates ==0.8.2,
+ doctemplates ==0.8.3,
doctest ==0.16.3,
doctest-discover ==0.2.0.0,
doctest-driver-gen ==0.3.0.2,
doldol ==0.4.1.2,
do-list ==1.0.1,
do-notation ==0.1.0.2,
- dotenv ==0.8.0.4,
+ dotenv ==0.8.0.7,
dotgen ==0.4.3,
dotnet-timespan ==0.0.1.0,
double-conversion ==2.0.2.0,
@@ -642,7 +644,7 @@ constraints: abstract-deque ==0.3,
editor-open ==0.6.0.0,
egison ==4.0.3,
egison-pattern-src ==0.2.1.0,
- egison-pattern-src-th-mode ==0.2.1.1,
+ egison-pattern-src-th-mode ==0.2.1.2,
either ==5.0.1.1,
either-both ==0.1.1.1,
either-unwrap ==1.1,
@@ -653,7 +655,7 @@ constraints: abstract-deque ==0.3,
elerea ==2.9.0,
elf ==0.30,
eliminators ==0.6,
- elm2nix ==0.2,
+ elm2nix ==0.2.1,
elm-bridge ==0.6.1,
elm-core-sources ==1.0.0,
elm-export ==0.6.0.1,
@@ -669,14 +671,15 @@ constraints: abstract-deque ==0.3,
envelope ==0.2.2.0,
envy ==2.1.0.0,
epub-metadata ==4.5,
- eq ==4.2,
+ eq ==4.2.1,
equal-files ==0.0.5.3,
equational-reasoning ==0.6.0.3,
+ equivalence ==0.3.5,
erf ==2.0.0.0,
errors ==2.3.0,
errors-ext ==0.4.2,
ersatz ==0.4.8,
- esqueleto ==3.3.3.2,
+ esqueleto ==3.3.4.1,
essence-of-live-coding ==0.1.0.3,
essence-of-live-coding-gloss ==0.1.0.3,
essence-of-live-coding-pulse ==0.1.0.3,
@@ -689,7 +692,7 @@ constraints: abstract-deque ==0.3,
every ==0.0.1,
exact-combinatorics ==0.2.0.9,
exact-pi ==0.5.0.1,
- exception-hierarchy ==0.1.0.3,
+ exception-hierarchy ==0.1.0.4,
exception-mtl ==0.4.0.1,
exceptions ==0.10.4,
exception-transformers ==0.4.0.9,
@@ -703,7 +706,7 @@ constraints: abstract-deque ==0.3,
extended-reals ==0.2.4.0,
extensible-effects ==5.0.0.1,
extensible-exceptions ==0.1.1.4,
- extra ==1.7.4,
+ extra ==1.7.9,
extractable-singleton ==0.0.1,
extrapolate ==0.4.2,
fail ==4.9.0.0,
@@ -711,7 +714,7 @@ constraints: abstract-deque ==0.3,
fakedata ==0.6.1,
farmhash ==0.1.0.5,
fast-digits ==0.3.0.0,
- fast-logger ==3.0.1,
+ fast-logger ==3.0.2,
fast-math ==1.0.2,
fb ==2.1.1,
feature-flags ==0.1.0.1,
@@ -747,15 +750,15 @@ constraints: abstract-deque ==0.3,
flac-picture ==0.1.2,
flags-applicative ==0.1.0.2,
flat ==0.4.4,
- flat-mcmc ==1.5.1,
+ flat-mcmc ==1.5.2,
FloatingHex ==0.4,
floatshow ==0.2.4,
flow ==1.0.21,
flush-queue ==1.0.0,
- fmlist ==0.9.3,
+ fmlist ==0.9.4,
fmt ==0.6.1.2,
fn ==0.3.0.2,
- focus ==1.0.1.3,
+ focus ==1.0.2,
focuslist ==0.1.0.2,
foldable1 ==0.1.0.0,
fold-debounce ==0.2.0.9,
@@ -773,7 +776,7 @@ constraints: abstract-deque ==0.3,
formatting ==6.3.7,
foundation ==0.0.25,
free ==5.1.3,
- free-categories ==0.2.0.0,
+ free-categories ==0.2.0.2,
freenect ==1.2.1,
freer-simple ==1.2.1.1,
freetype2 ==0.2.0,
@@ -812,6 +815,7 @@ constraints: abstract-deque ==0.3,
generic-random ==1.3.0.1,
generics-sop ==0.5.1.0,
generics-sop-lens ==0.2.0.1,
+ geniplate-mirror ==0.7.7,
genvalidity ==0.11.0.0,
genvalidity-aeson ==0.3.0.0,
genvalidity-bytestring ==0.6.0.0,
@@ -837,33 +841,28 @@ constraints: abstract-deque ==0.3,
genvalidity-vector ==0.3.0.1,
geojson ==4.0.2,
getopt-generics ==0.13.0.4,
- ghc installed,
- ghc-boot installed,
- ghc-boot-th installed,
ghc-byteorder ==4.11.0.0.10,
- ghc-check ==0.5.0.1,
+ ghc-check ==0.5.0.3,
ghc-compact ==0.1.0.0,
ghc-core ==0.5.6,
ghc-events ==0.13.0,
ghc-exactprint ==0.6.2,
- ghc-heap installed,
- ghci installed,
ghcid ==0.8.7,
ghci-hexcalc ==0.1.1.0,
ghcjs-codemirror ==0.0.0.2,
- ghc-lib ==8.10.2.20200808,
- ghc-lib-parser ==8.10.2.20200808,
- ghc-lib-parser-ex ==8.10.0.16,
+ ghc-lib ==8.10.3.20201220,
+ ghc-lib-parser ==8.10.3.20201220,
+ ghc-lib-parser-ex ==8.10.0.17,
ghc-parser ==0.2.2.0,
ghc-paths ==0.1.0.12,
ghc-prim installed,
ghc-prof ==1.4.1.7,
ghc-source-gen ==0.4.0.0,
ghc-syntax-highlighter ==0.0.6.0,
- ghc-tcplugins-extra ==0.4,
- ghc-typelits-extra ==0.4,
- ghc-typelits-knownnat ==0.7.3,
- ghc-typelits-natnormalise ==0.7.2,
+ ghc-tcplugins-extra ==0.4.1,
+ ghc-typelits-extra ==0.4.2,
+ ghc-typelits-knownnat ==0.7.4,
+ ghc-typelits-natnormalise ==0.7.3,
ghc-typelits-presburger ==0.3.0.1,
ghost-buster ==0.1.1.0,
gi-atk ==2.0.21,
@@ -881,11 +880,11 @@ constraints: abstract-deque ==0.3,
gi-graphene ==1.0.1,
gi-gtk ==3.0.33,
gi-gtk-hs ==0.3.8.1,
- ginger ==0.10.0.5,
+ ginger ==0.10.1.0,
gingersnap ==0.3.1.0,
gi-pango ==1.0.22,
giphy-api ==0.7.0.0,
- githash ==0.1.4.0,
+ githash ==0.1.5.0,
github-rest ==1.0.3,
github-types ==0.2.1,
gitlab-haskell ==0.1.8,
@@ -895,7 +894,7 @@ constraints: abstract-deque ==0.3,
glabrous ==2.0.2,
GLFW-b ==3.3.0.0,
Glob ==0.10.1,
- gloss ==1.13.1.2,
+ gloss ==1.13.2.1,
gloss-rendering ==1.13.1.1,
GLURaw ==2.0.0.4,
GLUT ==2.7.0.15,
@@ -912,9 +911,9 @@ constraints: abstract-deque ==0.3,
gravatar ==0.8.0,
greskell ==1.1.0.3,
greskell-core ==0.1.3.5,
- greskell-websocket ==0.1.2.4,
+ greskell-websocket ==0.1.2.5,
groom ==0.1.2.1,
- group-by-date ==0.1.0.3,
+ group-by-date ==0.1.0.4,
groups ==0.4.1.0,
gtk-sni-tray ==0.1.6.0,
gtk-strut ==0.1.3.0,
@@ -922,14 +921,14 @@ constraints: abstract-deque ==0.3,
hackage-db ==2.1.0,
hackage-security ==0.6.0.1,
haddock-library ==1.8.0,
- hadolint ==1.18.0,
+ hadolint ==1.18.2,
hadoop-streaming ==0.2.0.3,
hakyll ==4.13.4.0,
half ==0.3,
hall-symbols ==0.1.0.6,
hamtsolo ==1.0.3,
HandsomeSoup ==0.4.2,
- hapistrano ==0.4.1.0,
+ hapistrano ==0.4.1.2,
happstack-server ==7.6.1,
happy ==1.19.12,
HasBigDecimal ==0.1.1,
@@ -938,7 +937,7 @@ constraints: abstract-deque ==0.3,
hashable-time ==0.2.0.2,
hashids ==1.0.2.4,
hashmap ==1.3.3,
- hashtables ==1.2.3.4,
+ hashtables ==1.2.4.1,
haskeline ==0.7.5.0,
haskell-gi ==0.23.1,
haskell-gi-base ==0.23.0,
@@ -957,11 +956,11 @@ constraints: abstract-deque ==0.3,
haskoin-core ==0.13.4,
haskoin-node ==0.13.0,
hasql ==1.4.3,
- hasql-optparse-applicative ==0.3.0.5,
+ hasql-optparse-applicative ==0.3.0.6,
hasql-pool ==0.5.2,
hasql-transaction ==1.0.0.1,
hasty-hamiltonian ==1.3.3,
- HaTeX ==3.22.2.0,
+ HaTeX ==3.22.3.0,
HaXml ==1.25.5,
haxr ==3000.11.4.1,
HCodecs ==0.5.2,
@@ -977,10 +976,10 @@ constraints: abstract-deque ==0.3,
hedgehog-fakedata ==0.0.1.3,
hedgehog-fn ==1.0,
hedgehog-quickcheck ==0.1.1,
- hedis ==0.12.14,
+ hedis ==0.12.15,
here ==1.2.13,
heredoc ==0.2.0.0,
- heterocephalus ==1.0.5.3,
+ heterocephalus ==1.0.5.4,
hexml ==0.3.4,
hexml-lens ==0.2.1,
hexpat ==0.20.13,
@@ -993,13 +992,13 @@ constraints: abstract-deque ==0.3,
higher-leveldb ==0.5.0.2,
highlighting-kate ==0.6.4,
hinfo ==0.0.3.0,
- hinotify ==0.4,
+ hinotify ==0.4.1,
hint ==0.9.0.3,
hjsmin ==0.2.0.4,
hkd-default ==1.1.0.0,
hkgr ==0.2.6.1,
hledger ==1.18.1,
- hledger-iadd ==1.3.11,
+ hledger-iadd ==1.3.12,
hledger-lib ==1.18.1,
hledger-stockquotes ==0.1.0.0,
hledger-ui ==1.18.1,
@@ -1007,7 +1006,7 @@ constraints: abstract-deque ==0.3,
hlibcpuid ==0.2.0,
hlibgit2 ==0.18.0.16,
hlint ==3.1.6,
- hmatrix ==0.20.0.0,
+ hmatrix ==0.20.1,
hmatrix-gsl ==0.19.0.1,
hmatrix-gsl-stats ==0.4.1.8,
hmatrix-morpheus ==0.1.1.2,
@@ -1015,8 +1014,8 @@ constraints: abstract-deque ==0.3,
hmpfr ==0.4.4,
hnock ==0.4.0,
hoauth2 ==1.14.0,
- hOpenPGP ==2.9.4,
- hopenpgp-tools ==0.23.1,
+ hOpenPGP ==2.9.5,
+ hopenpgp-tools ==0.23.6,
hopenssl ==2.2.4,
hopfli ==0.2.2.1,
hosc ==0.17,
@@ -1025,10 +1024,10 @@ constraints: abstract-deque ==0.3,
hourglass ==0.2.12,
hourglass-orphans ==0.1.0.0,
hp2pretty ==0.9,
- hpack ==0.34.2,
+ hpack ==0.34.3,
hpack-dhall ==0.5.2,
hpc installed,
- hpc-codecov ==0.2.0.0,
+ hpc-codecov ==0.2.0.1,
hpc-lcov ==1.0.1,
hreader ==1.1.0,
hreader-lens ==0.1.3.0,
@@ -1038,7 +1037,7 @@ constraints: abstract-deque ==0.3,
hscolour ==1.24.4,
hsdns ==1.8,
hsebaysdk ==0.4.1.0,
- hsemail ==2.2.0,
+ hsemail ==2.2.1,
hset ==2.2.0,
hs-functors ==0.1.7.1,
hs-GeoIP ==0.3,
@@ -1047,18 +1046,19 @@ constraints: abstract-deque ==0.3,
HSlippyMap ==3.0.1,
hslogger ==1.3.1.0,
hslua ==1.0.3.2,
- hslua-aeson ==1.0.2,
+ hslua-aeson ==1.0.3.1,
hslua-module-doclayout ==0.1.0,
- hslua-module-system ==0.2.1,
+ hslua-module-system ==0.2.2.1,
hslua-module-text ==0.2.1,
- HsOpenSSL ==0.11.4.18,
+ HsOpenSSL ==0.11.5.1,
+ HsOpenSSL-x509-system ==0.1.0.4,
hsp ==0.10.0,
- hspec ==2.7.1,
+ hspec ==2.7.6,
hspec-attoparsec ==0.1.0.2,
hspec-checkers ==0.1.0.2,
hspec-contrib ==0.5.1,
- hspec-core ==2.7.1,
- hspec-discover ==2.7.1,
+ hspec-core ==2.7.6,
+ hspec-discover ==2.7.6,
hspec-expectations ==0.8.2,
hspec-expectations-lifted ==0.10.0,
hspec-expectations-pretty-diff ==0.7.2.5,
@@ -1088,31 +1088,32 @@ constraints: abstract-deque ==0.3,
html-entities ==1.1.4.3,
html-entity-map ==0.1.0.0,
htoml ==1.0.0.3,
- HTTP ==4000.3.14,
+ HTTP ==4000.3.15,
http2 ==2.0.5,
http-api-data ==0.4.1.1,
http-client ==0.6.4.1,
- http-client-openssl ==0.3.1.0,
+ http-client-openssl ==0.3.2.0,
http-client-overrides ==0.1.1.0,
http-client-tls ==0.3.5.3,
http-common ==0.8.2.1,
- http-conduit ==2.3.7.3,
- http-date ==0.0.8,
+ http-conduit ==2.3.7.4,
+ http-date ==0.0.10,
http-directory ==0.1.8,
http-download ==0.2.0.0,
httpd-shed ==0.4.1.1,
http-link-header ==1.0.3.1,
http-media ==0.8.0.0,
+ http-query ==0.1.0,
http-reverse-proxy ==0.6.0,
http-streams ==0.8.7.2,
http-types ==0.12.3,
human-readable-duration ==0.2.1.4,
- HUnit ==1.6.0.0,
+ HUnit ==1.6.1.0,
HUnit-approx ==1.1.1.1,
hunit-dejafu ==2.0.0.4,
hvect ==0.4.0.0,
hvega ==0.9.1.0,
- hw-balancedparens ==0.4.1.0,
+ hw-balancedparens ==0.4.1.1,
hw-bits ==0.7.2.1,
hw-conduit ==0.2.1.0,
hw-conduit-merges ==0.2.1.0,
@@ -1143,13 +1144,14 @@ constraints: abstract-deque ==0.3,
hybrid-vectors ==0.2.2,
hyperloglog ==0.4.3,
hyphenation ==0.8,
- hyraxAbif ==0.2.3.21,
+ hyraxAbif ==0.2.3.27,
iconv ==0.4.1.3,
identicon ==0.2.2,
+ idris ==1.3.3,
ieee754 ==0.8.0,
if ==0.1.0.0,
iff ==0.0.6,
- ihaskell ==0.10.1.1,
+ ihaskell ==0.10.1.2,
ihs ==0.1.0.3,
ilist ==0.4.0.1,
imagesize-conduit ==1.1,
@@ -1164,11 +1166,11 @@ constraints: abstract-deque ==0.3,
indexed-list-literals ==0.2.1.3,
indexed-profunctors ==0.1,
infer-license ==0.2.0,
- inflections ==0.4.0.5,
+ inflections ==0.4.0.6,
influxdb ==1.7.1.6,
ini ==0.4.1,
inj ==1.0,
- inline-c ==0.9.1.0,
+ inline-c ==0.9.1.4,
inline-c-cpp ==0.4.0.2,
inliterate ==0.1.0,
insert-ordered-containers ==0.2.3.1,
@@ -1176,10 +1178,10 @@ constraints: abstract-deque ==0.3,
instance-control ==0.1.2.0,
int-cast ==0.2.0.0,
integer-gmp installed,
- integer-logarithms ==1.0.3,
+ integer-logarithms ==1.0.3.1,
integer-roots ==1.0,
integration ==0.2.1,
- intern ==0.9.2,
+ intern ==0.9.3,
interpolate ==0.2.1,
interpolatedstring-perl6 ==1.0.2,
interpolation ==0.1.1.1,
@@ -1192,19 +1194,19 @@ constraints: abstract-deque ==0.3,
invertible ==0.2.0.7,
invertible-grammar ==0.1.3,
io-machine ==0.2.0.0,
- io-manager ==0.1.0.2,
+ io-manager ==0.1.0.3,
io-memoize ==1.1.1.0,
io-region ==0.1.1,
io-storage ==0.3,
- io-streams ==1.5.1.0,
+ io-streams ==1.5.2.0,
io-streams-haproxy ==1.0.1.0,
ip6addr ==1.0.1,
- iproute ==1.7.9,
+ iproute ==1.7.10,
IPv6Addr ==1.1.5,
ipynb ==0.1.0.1,
- ipython-kernel ==0.10.2.0,
+ ipython-kernel ==0.10.2.1,
irc ==0.6.1.0,
- irc-client ==1.1.1.1,
+ irc-client ==1.1.2.0,
irc-conduit ==0.3.0.4,
irc-ctcp ==0.1.3.0,
isbn ==1.0.0.0,
@@ -1219,7 +1221,7 @@ constraints: abstract-deque ==0.3,
jack ==0.7.1.4,
jailbreak-cabal ==1.3.5,
jira-wiki-markup ==1.1.4,
- jose ==0.8.3,
+ jose ==0.8.3.1,
jose-jwt ==0.8.0,
js-dgtable ==0.5.2,
js-flot ==0.8.3,
@@ -1233,12 +1235,12 @@ constraints: abstract-deque ==0.3,
JuicyPixels-blurhash ==0.1.0.3,
JuicyPixels-extra ==0.4.1,
JuicyPixels-scale-dct ==0.1.2,
- junit-xml ==0.1.0.1,
+ junit-xml ==0.1.0.2,
justified-containers ==0.3.0.0,
jwt ==0.10.0,
- kan-extensions ==5.2,
+ kan-extensions ==5.2.1,
kanji ==3.4.1,
- katip ==0.8.4.0,
+ katip ==0.8.5.0,
kawhi ==0.3.0,
kazura-queue ==0.1.0.4,
kdt ==0.2.4,
@@ -1246,11 +1248,11 @@ constraints: abstract-deque ==0.3,
keys ==3.12.3,
kind-apply ==0.3.2.0,
kind-generics ==0.4.1.0,
- kind-generics-th ==0.2.2.0,
+ kind-generics-th ==0.2.2.1,
kmeans ==0.1.3,
koofr-client ==1.0.0.3,
krank ==0.2.2,
- kubernetes-webhook-haskell ==0.2.0.2,
+ kubernetes-webhook-haskell ==0.2.0.3,
l10n ==0.1.0.1,
labels ==0.3.3,
lackey ==1.0.13,
@@ -1260,7 +1262,7 @@ constraints: abstract-deque ==0.3,
language-bash ==0.9.2,
language-c ==0.8.3,
language-c-quote ==0.12.2.1,
- language-docker ==9.1.1,
+ language-docker ==9.1.2,
language-haskell-extract ==0.2.4,
language-java ==0.2.9,
language-javascript ==0.7.1.0,
@@ -1297,8 +1299,7 @@ constraints: abstract-deque ==0.3,
libffi ==0.1,
libgit ==0.3.1,
libgraph ==1.14,
- libiserv installed,
- libmpd ==0.9.1.0,
+ libmpd ==0.9.3.0,
libyaml ==0.1.2,
LibZip ==1.0.1,
life-sync ==1.1.1.0,
@@ -1306,12 +1307,12 @@ constraints: abstract-deque ==0.3,
lifted-base ==0.2.3.12,
lift-generics ==0.1.3,
line ==4.0.1,
- linear ==1.21.1,
+ linear ==1.21.3,
linenoise ==0.3.2,
linux-file-extents ==0.2.0.0,
linux-namespaces ==0.1.3.0,
List ==0.6.2,
- ListLike ==4.7.1,
+ ListLike ==4.7.4,
list-predicate ==0.1.0.1,
listsafe ==0.1.0.1,
list-singleton ==1.0.0.4,
@@ -1323,7 +1324,7 @@ constraints: abstract-deque ==0.3,
llvm-hs-pure ==9.0.0,
lmdb ==0.2.5,
load-env ==0.2.1.0,
- loc ==0.1.3.8,
+ loc ==0.1.3.10,
loch-th ==0.2.2,
lockfree-queue ==0.2.3.1,
log-base ==0.8.0.1,
@@ -1332,7 +1333,7 @@ constraints: abstract-deque ==0.3,
logging ==3.0.5,
logging-facade ==0.3.0,
logging-facade-syslog ==1,
- logict ==0.7.0.2,
+ logict ==0.7.0.3,
loop ==0.3.0,
loopbreaker ==0.1.1.1,
lrucache ==1.2.0.1,
@@ -1343,21 +1344,21 @@ constraints: abstract-deque ==0.3,
lukko ==0.1.1.2,
lzma ==0.0.0.3,
lzma-conduit ==1.2.1,
- machines ==0.7,
+ machines ==0.7.1,
magic ==1.1,
mainland-pretty ==0.7.0.1,
main-tester ==0.2.0.1,
makefile ==1.1.0.0,
- managed ==1.0.7,
+ managed ==1.0.8,
markdown ==0.1.17.4,
- markdown-unlit ==0.5.0,
+ markdown-unlit ==0.5.1,
markov-chain ==0.0.3.4,
- massiv ==0.5.3.2,
+ massiv ==0.5.4.0,
massiv-io ==0.2.1.0,
- massiv-test ==0.1.3.1,
+ massiv-test ==0.1.4,
mathexpr ==0.3.0.0,
math-extras ==0.1.1.0,
- math-functions ==0.3.4.0,
+ math-functions ==0.3.4.1,
matplotlib ==0.7.5,
matrices ==0.5.0,
matrix ==0.3.6.1,
@@ -1389,14 +1390,14 @@ constraints: abstract-deque ==0.3,
microlens-mtl ==0.2.0.1,
microlens-platform ==0.4.1,
microlens-process ==0.2.0.2,
- microlens-th ==0.4.3.5,
+ microlens-th ==0.4.3.6,
microspec ==0.2.1.3,
- microstache ==1.0.1.1,
+ microstache ==1.0.1.2,
midair ==0.2.0.1,
midi ==0.2.2.2,
mighty-metropolis ==2.0.0,
mime-mail ==0.5.0,
- mime-mail-ses ==0.4.1,
+ mime-mail-ses ==0.4.3,
mime-types ==0.1.0.9,
mini-egison ==1.0.0,
minimal-configuration ==0.1.4,
@@ -1418,9 +1419,9 @@ constraints: abstract-deque ==0.3,
mmorph ==1.1.3,
mnist-idx ==0.1.2.8,
mockery ==0.3.5,
- mod ==0.1.2.0,
+ mod ==0.1.2.1,
model ==0.5,
- modern-uri ==0.3.2.0,
+ modern-uri ==0.3.3.0,
modular ==0.1.0.8,
monad-bayes ==0.1.1.0,
monad-control ==1.0.2.3,
@@ -1429,12 +1430,12 @@ constraints: abstract-deque ==0.3,
monad-extras ==0.6.0,
monadic-arrays ==0.2.2,
monad-journal ==0.8.1,
- monad-logger ==0.3.34,
+ monad-logger ==0.3.36,
monad-logger-json ==0.1.0.0,
- monad-logger-prefix ==0.1.11,
+ monad-logger-prefix ==0.1.12,
monad-loops ==0.4.3,
- monad-memo ==0.5.1,
- monad-metrics ==0.2.1.4,
+ monad-memo ==0.5.3,
+ monad-metrics ==0.2.2.0,
monad-par ==0.3.5,
monad-parallel ==0.7.2.3,
monad-par-extras ==0.3.3,
@@ -1479,7 +1480,7 @@ constraints: abstract-deque ==0.3,
mwc-probability ==2.3.1,
mwc-random ==0.14.0.0,
mx-state-codes ==1.0.0.0,
- mysql ==0.1.7,
+ mysql ==0.1.7.2,
mysql-simple ==0.4.5,
n2o ==0.11.1,
nagios-check ==0.3.2,
@@ -1503,7 +1504,7 @@ constraints: abstract-deque ==0.3,
netwire-input-glfw ==0.0.11,
network ==3.1.1.1,
network-bsd ==2.8.1.0,
- network-byte-order ==0.1.5,
+ network-byte-order ==0.1.6,
network-conduit-tls ==1.3.2,
network-info ==0.2.0.10,
network-ip ==0.3.0.3,
@@ -1522,10 +1523,10 @@ constraints: abstract-deque ==0.3,
nonce ==1.0.7,
nondeterminism ==1.4,
non-empty ==0.3.2,
- nonempty-containers ==0.3.4.0,
+ nonempty-containers ==0.3.4.1,
nonemptymap ==0.0.6.0,
non-empty-sequence ==0.2.0.4,
- nonempty-vector ==0.2.0.2,
+ nonempty-vector ==0.2.1.0,
non-negative ==0.1.2,
not-gloss ==0.7.7.0,
no-value ==1.0.0.0,
@@ -1553,7 +1554,7 @@ constraints: abstract-deque ==0.3,
OneTuple ==0.2.2.1,
Only ==0.1,
oo-prototypes ==0.1.0.0,
- opaleye ==0.6.7005.0,
+ opaleye ==0.6.7006.1,
OpenAL ==1.7.0.5,
open-browser ==0.2.1.0,
openexr-write ==0.1.0.2,
@@ -1561,7 +1562,7 @@ constraints: abstract-deque ==0.3,
OpenGLRaw ==3.3.4.0,
openpgp-asciiarmor ==0.1.2,
opensource ==0.1.1.0,
- openssl-streams ==1.2.2.0,
+ openssl-streams ==1.2.3.0,
opentelemetry ==0.4.2,
opentelemetry-extra ==0.4.2,
opentelemetry-lightstep ==0.4.2,
@@ -1577,10 +1578,10 @@ constraints: abstract-deque ==0.3,
options ==1.2.1.1,
optparse-applicative ==0.15.1.0,
optparse-generic ==1.3.1,
- optparse-simple ==0.1.1.2,
+ optparse-simple ==0.1.1.3,
optparse-text ==0.1.1.0,
ordered-containers ==0.2.2,
- ormolu ==0.1.2.0,
+ ormolu ==0.1.4.1,
overhang ==1.0.0,
packcheck ==0.5.1,
pager ==0.1.1.0,
@@ -1613,13 +1614,13 @@ constraints: abstract-deque ==0.3,
password-instances ==2.0.0.1,
path ==0.7.0,
path-extra ==0.2.0,
- path-io ==1.6.0,
+ path-io ==1.6.2,
path-pieces ==0.2.1,
path-text-utf8 ==0.0.1.6,
pathtype ==0.8.1.1,
pathwalk ==0.3.1.2,
pattern-arrows ==0.0.2,
- pcg-random ==0.1.3.6,
+ pcg-random ==0.1.3.7,
pcre-heavy ==1.0.0.2,
pcre-light ==0.4.1.0,
pcre-utils ==0.1.8.1.1,
@@ -1632,11 +1633,11 @@ constraints: abstract-deque ==0.3,
persist ==0.1.1.5,
persistable-record ==0.6.0.5,
persistable-types-HDBC-pg ==0.0.3.5,
- persistent ==2.10.5.2,
+ persistent ==2.10.5.3,
persistent-mysql ==2.10.2.3,
- persistent-pagination ==0.1.1.1,
+ persistent-pagination ==0.1.1.2,
persistent-postgresql ==2.10.1.2,
- persistent-qq ==2.9.1.1,
+ persistent-qq ==2.9.2.1,
persistent-sqlite ==2.10.6.2,
persistent-template ==2.8.2.3,
persistent-test ==2.0.3.1,
@@ -1669,7 +1670,7 @@ constraints: abstract-deque ==0.3,
plaid ==0.1.0.4,
planb-token-introspection ==0.1.4.0,
plotlyhs ==0.2.1,
- pointed ==5.0.1,
+ pointed ==5.0.2,
pointedlist ==0.6.1,
pointless-fun ==1.1.0.6,
poll ==0.0.0.1,
@@ -1684,9 +1685,9 @@ constraints: abstract-deque ==0.3,
possibly ==1.0.0.0,
postgres-options ==0.2.0.0,
postgresql-binary ==0.12.2,
- postgresql-libpq ==0.9.4.2,
+ postgresql-libpq ==0.9.4.3,
postgresql-orm ==0.5.1,
- postgresql-simple ==0.6.2,
+ postgresql-simple ==0.6.4,
postgrest ==7.0.0,
post-mess-age ==0.2.1.0,
pptable ==0.3.0.0,
@@ -1749,18 +1750,18 @@ constraints: abstract-deque ==0.3,
pushbullet-types ==0.4.1.0,
pusher-http-haskell ==1.5.1.14,
pvar ==0.2.0.0,
- PyF ==0.9.0.1,
+ PyF ==0.9.0.2,
qchas ==1.1.0.1,
qm-interpolated-string ==0.3.0.0,
qrcode-core ==0.9.4,
- qrcode-juicypixels ==0.8.1,
+ qrcode-juicypixels ==0.8.2,
quadratic-irrational ==0.1.1,
QuasiText ==0.1.2.6,
QuickCheck ==2.13.2,
quickcheck-arbitrary-adt ==0.3.1.0,
quickcheck-assertions ==0.3.0,
quickcheck-classes ==0.6.4.0,
- quickcheck-classes-base ==0.6.0.0,
+ quickcheck-classes-base ==0.6.1.0,
quickcheck-instances ==0.3.23,
quickcheck-io ==0.2.0,
quickcheck-simple ==0.1.1.1,
@@ -1782,9 +1783,9 @@ constraints: abstract-deque ==0.3,
range ==0.3.0.2,
Ranged-sets ==0.4.0,
range-set-list ==0.1.3.1,
- rank1dynamic ==0.4.0,
+ rank1dynamic ==0.4.1,
rank2classes ==1.3.2.1,
- Rasterific ==0.7.5.2,
+ Rasterific ==0.7.5.3,
rasterific-svg ==0.3.3.2,
ratel ==1.0.12,
rate-limit ==1.4.2,
@@ -1802,7 +1803,7 @@ constraints: abstract-deque ==0.3,
reanimate ==0.3.3.0,
reanimate-svg ==0.9.8.0,
rebase ==1.6.1,
- record-dot-preprocessor ==0.2.5,
+ record-dot-preprocessor ==0.2.7,
record-hasfield ==1.0,
records-sop ==0.1.0.3,
recursion-schemes ==5.1.3,
@@ -1813,7 +1814,7 @@ constraints: abstract-deque ==0.3,
reform ==0.2.7.4,
reform-blaze ==0.2.4.3,
reform-hamlet ==0.0.5.3,
- reform-happstack ==0.2.5.3,
+ reform-happstack ==0.2.5.4,
RefSerialize ==0.4.0,
regex ==1.1.0.0,
regex-applicative ==0.3.3.1,
@@ -1822,11 +1823,11 @@ constraints: abstract-deque ==0.3,
regex-compat ==0.95.2.0,
regex-compat-tdfa ==0.95.1.4,
regex-pcre ==0.95.0.0,
- regex-pcre-builtin ==0.95.1.2.8.43,
+ regex-pcre-builtin ==0.95.1.3.8.43,
regex-posix ==0.96.0.0,
regex-tdfa ==1.3.1.0,
regex-with-pcre ==1.1.0.0,
- registry ==0.1.9.1,
+ registry ==0.1.9.3,
reinterpret-cast ==0.1.0,
relapse ==1.0.0.0,
relational-query ==0.12.2.3,
@@ -1835,8 +1836,8 @@ constraints: abstract-deque ==0.3,
relational-schemas ==0.1.8.0,
relude ==0.7.0.0,
renderable ==0.2.0.1,
- replace-attoparsec ==1.4.1.0,
- replace-megaparsec ==1.4.2.0,
+ replace-attoparsec ==1.4.4.0,
+ replace-megaparsec ==1.4.4.0,
repline ==0.2.2.0,
req ==3.2.0,
req-conduit ==1.0.0,
@@ -1853,7 +1854,7 @@ constraints: abstract-deque ==0.3,
rhine ==0.6.0,
rhine-gloss ==0.6.0.1,
rigel-viz ==0.2.0.0,
- rio ==0.1.18.0,
+ rio ==0.1.19.0,
rio-orphans ==0.1.1.0,
rio-prettyprint ==0.1.1.0,
roc-id ==0.1.0.0,
@@ -1867,18 +1868,18 @@ constraints: abstract-deque ==0.3,
RSA ==2.4.1,
runmemo ==1.0.0.1,
safe ==0.3.19,
- safecopy ==0.10.3,
+ safecopy ==0.10.3.1,
safe-decimal ==0.2.0.0,
- safe-exceptions ==0.1.7.0,
+ safe-exceptions ==0.1.7.1,
safe-exceptions-checked ==0.1.0,
safe-foldable ==0.1.0.0,
safeio ==0.0.5.0,
- safe-json ==1.1.0,
+ safe-json ==1.1.1.1,
safe-money ==0.9,
SafeSemaphore ==0.10.1,
salak ==0.3.6,
salak-yaml ==0.3.5.3,
- saltine ==0.1.1.0,
+ saltine ==0.1.1.1,
salve ==1.0.10,
sample-frame ==0.0.3,
sample-frame-np ==0.0.4.1,
@@ -1893,7 +1894,7 @@ constraints: abstract-deque ==0.3,
scientific ==0.3.6.2,
scotty ==0.11.6,
scrypt ==0.5.0,
- sdl2 ==2.5.2.0,
+ sdl2 ==2.5.3.0,
sdl2-gfx ==0.2,
sdl2-image ==2.0.0,
sdl2-mixer ==1.1.0,
@@ -1921,16 +1922,15 @@ constraints: abstract-deque ==0.3,
serialise ==0.2.3.0,
servant ==0.16.2,
servant-auth ==0.3.2.0,
- servant-auth-docs ==0.2.10.0,
servant-auth-server ==0.4.5.1,
servant-auth-swagger ==0.2.10.0,
- servant-blaze ==0.9,
+ servant-blaze ==0.9.1,
servant-cassava ==0.10,
servant-checked-exceptions ==2.2.0.0,
servant-checked-exceptions-core ==2.2.0.0,
servant-client ==0.16.0.1,
servant-client-core ==0.16,
- servant-conduit ==0.15,
+ servant-conduit ==0.15.1,
servant-docs ==0.11.4,
servant-docs-simple ==0.2.0.1,
servant-elm ==0.7.2,
@@ -1939,17 +1939,17 @@ constraints: abstract-deque ==0.3,
servant-js ==0.9.4.2,
servant-JuicyPixels ==0.3.0.5,
servant-lucid ==0.9,
- servant-machines ==0.15,
+ servant-machines ==0.15.1,
servant-mock ==0.8.5,
- servant-pipes ==0.15.1,
+ servant-pipes ==0.15.2,
servant-purescript ==0.10.0.0,
servant-rawm ==0.3.2.0,
servant-server ==0.16.2,
- servant-static-th ==0.2.3.0,
+ servant-static-th ==0.2.4.0,
servant-subscriber ==0.7.0.0,
servant-swagger ==1.1.7.1,
- servant-swagger-ui ==0.3.4.3.23.11,
- servant-swagger-ui-core ==0.3.3,
+ servant-swagger-ui ==0.3.4.3.37.2,
+ servant-swagger-ui-core ==0.3.4,
servant-swagger-ui-redoc ==0.3.3.1.22.3,
servant-websockets ==2.0.0,
servant-yaml ==0.1.0.1,
@@ -1962,9 +1962,9 @@ constraints: abstract-deque ==0.3,
setlocale ==1.0.0.9,
sexp-grammar ==2.1.0,
SHA ==1.6.4.4,
- shake ==0.19.1,
+ shake ==0.19.4,
shake-plus ==0.1.10.0,
- shakespeare ==2.0.24.1,
+ shakespeare ==2.0.25,
shared-memory ==0.2.0.0,
ShellCheck ==0.7.1,
shell-conduit ==4.7.0,
@@ -1979,8 +1979,8 @@ constraints: abstract-deque ==0.3,
signal ==0.1.0.4,
silently ==1.2.5.1,
simple-affine-space ==0.1.1,
- simple-cabal ==0.1.2,
- simple-cmd ==0.2.2,
+ simple-cabal ==0.1.3,
+ simple-cmd ==0.2.3,
simple-cmd-args ==0.1.6,
simple-log ==0.9.12,
simple-reflect ==0.3.3,
@@ -2008,17 +2008,17 @@ constraints: abstract-deque ==0.3,
smallcheck ==1.1.7,
smash ==0.1.1.0,
smash-aeson ==0.1.0.0,
- smash-lens ==0.1.0.0,
+ smash-lens ==0.1.0.1,
smash-microlens ==0.1.0.0,
smoothie ==0.4.2.11,
snap-blaze ==0.2.1.5,
snap-core ==1.0.4.2,
- snap-server ==1.1.1.2,
+ snap-server ==1.1.2.0,
snowflake ==0.1.1.1,
soap ==0.2.3.6,
soap-tls ==0.1.1.4,
socks ==0.6.1,
- some ==1.0.1,
+ some ==1.0.2,
sop-core ==0.5.0.1,
sort ==1.0.0.0,
sorted-list ==0.2.1.0,
@@ -2040,7 +2040,7 @@ constraints: abstract-deque ==0.3,
sqlcli ==0.2.2.0,
sqlcli-odbc ==0.2.0.1,
sql-words ==0.1.6.4,
- squeather ==0.4.0.0,
+ squeather ==0.4.2.0,
srcloc ==0.5.1.2,
stache ==2.1.1,
stack ==2.3.3,
@@ -2049,7 +2049,7 @@ constraints: abstract-deque ==0.3,
starter ==0.3.0,
stateref ==0.3,
statestack ==0.3,
- StateVar ==1.2,
+ StateVar ==1.2.1,
static-text ==0.2.0.6,
statistics ==0.15.2.0,
status-notifier-item ==0.3.0.5,
@@ -2060,6 +2060,7 @@ constraints: abstract-deque ==0.3,
stm-conduit ==4.0.1,
stm-delay ==0.1.1.1,
stm-extras ==0.1.0.3,
+ STMonadTrans ==0.4.5,
stm-split ==0.0.2.1,
stopwatch ==0.1.0.6,
storable-complex ==0.2.3.0,
@@ -2068,7 +2069,7 @@ constraints: abstract-deque ==0.3,
storablevector ==0.2.13.1,
stratosphere ==0.53.0,
streaming ==0.2.3.0,
- streaming-bytestring ==0.1.6,
+ streaming-bytestring ==0.1.7,
streaming-commons ==0.2.2.1,
streamly ==0.7.2,
streamly-bytestring ==0.1.2,
@@ -2077,7 +2078,7 @@ constraints: abstract-deque ==0.3,
strict-base-types ==0.6.1,
strict-concurrency ==0.2.4.3,
strict-list ==0.1.5,
- strict-tuple ==0.1.3,
+ strict-tuple ==0.1.4,
strict-tuple-lens ==0.1.0.1,
stringbuilder ==0.5.1,
string-class ==0.1.7.0,
@@ -2089,7 +2090,7 @@ constraints: abstract-deque ==0.3,
stringsearch ==0.3.6.6,
string-transform ==1.1.1,
stripe-concepts ==1.0.2.4,
- stripe-signature ==1.0.0.4,
+ stripe-signature ==1.0.0.6,
strive ==5.0.12,
structs ==0.1.3,
structured ==0.1,
@@ -2116,10 +2117,10 @@ constraints: abstract-deque ==0.3,
system-fileio ==0.3.16.4,
system-filepath ==0.4.14,
system-info ==0.5.1,
- tabular ==0.2.2.7,
+ tabular ==0.2.2.8,
taffybar ==3.2.2,
tagchup ==0.4.1.1,
- tagged ==0.8.6,
+ tagged ==0.8.6.1,
tagged-binary ==0.2.0.1,
tagged-identity ==0.1.3,
tagged-transformer ==0.8.1,
@@ -2131,30 +2132,30 @@ constraints: abstract-deque ==0.3,
tar-conduit ==0.3.2,
tardis ==0.4.1.0,
tasty ==1.2.3,
- tasty-ant-xml ==1.1.6,
- tasty-dejafu ==2.0.0.6,
- tasty-discover ==4.2.1,
+ tasty-ant-xml ==1.1.7,
+ tasty-dejafu ==2.0.0.7,
+ tasty-discover ==4.2.2,
tasty-expected-failure ==0.11.1.2,
tasty-golden ==2.3.3.2,
tasty-hedgehog ==1.0.0.2,
- tasty-hspec ==1.1.5.1,
- tasty-hunit ==0.10.0.2,
+ tasty-hspec ==1.1.6,
+ tasty-hunit ==0.10.0.3,
tasty-kat ==0.0.3,
tasty-leancheck ==0.0.1,
- tasty-lua ==0.2.2,
+ tasty-lua ==0.2.3.2,
tasty-program ==1.0.5,
- tasty-quickcheck ==0.10.1.1,
- tasty-rerun ==1.1.17,
+ tasty-quickcheck ==0.10.1.2,
+ tasty-rerun ==1.1.18,
tasty-silver ==3.1.15,
- tasty-smallcheck ==0.8.1,
+ tasty-smallcheck ==0.8.2,
tasty-th ==0.1.7,
- tasty-wai ==0.1.1.0,
+ tasty-wai ==0.1.1.1,
Taxonomy ==2.1.0,
TCache ==0.12.1,
tce-conf ==1.3,
- tdigest ==0.2.1,
+ tdigest ==0.2.1.1,
template-haskell installed,
- template-haskell-compat-v0208 ==0.1.2.1,
+ template-haskell-compat-v0208 ==0.1.5,
temporary ==1.3,
temporary-rc ==1.2.0.3,
temporary-resourcet ==0.1.0.1,
@@ -2171,11 +2172,11 @@ constraints: abstract-deque ==0.3,
test-framework-th ==0.2.4,
testing-feat ==1.1.0.0,
testing-type-modifiers ==0.1.0.1,
- texmath ==0.12.0.2,
+ texmath ==0.12.1,
text installed,
text-binary ==0.2.1.1,
text-builder ==0.6.6.1,
- text-conversions ==0.3.0,
+ text-conversions ==0.3.1,
text-icu ==0.7.0.1,
text-latin1 ==0.3.1,
text-ldap ==0.1.1.13,
@@ -2187,7 +2188,7 @@ constraints: abstract-deque ==0.3,
text-region ==0.3.1.0,
text-short ==0.1.3,
text-show ==3.8.5,
- text-show-instances ==3.8.3,
+ text-show-instances ==3.8.4,
text-zipper ==0.10.1,
tfp ==1.0.1.1,
tf-random ==0.5,
@@ -2198,12 +2199,12 @@ constraints: abstract-deque ==0.3,
th-desugar ==1.10,
th-env ==0.1.0.2,
these ==1.1.1.1,
- these-lens ==1.0.0.1,
- these-optics ==1,
+ these-lens ==1.0.1.1,
+ these-optics ==1.0.1.1,
th-expand-syns ==0.4.6.0,
th-extras ==0.0.0.4,
- th-lift ==0.8.1,
- th-lift-instances ==0.1.17,
+ th-lift ==0.8.2,
+ th-lift-instances ==0.1.18,
th-nowq ==0.1.0.5,
th-orphans ==0.13.10,
th-printf ==0.7,
@@ -2223,7 +2224,7 @@ constraints: abstract-deque ==0.3,
tidal ==1.5.2,
tile ==0.3.0.0,
time installed,
- time-compat ==1.9.3,
+ time-compat ==1.9.5,
timeit ==2.0,
timelens ==0.2.0.2,
time-lens ==0.4.0.2,
@@ -2231,7 +2232,7 @@ constraints: abstract-deque ==0.3,
time-locale-vietnamese ==1.0.0.0,
time-manager ==0.0.0,
time-parsers ==0.1.2.1,
- timerep ==2.0.0.2,
+ timerep ==2.0.1.0,
time-units ==1.0.0,
timezone-olson ==0.2.0,
timezone-series ==0.1.9,
@@ -2244,17 +2245,17 @@ constraints: abstract-deque ==0.3,
tmapchan ==0.0.3,
tmapmvar ==0.0.4,
tmp-postgres ==1.34.1.0,
- tomland ==1.3.0.0,
- tonalude ==0.1.1.0,
+ tomland ==1.3.1.0,
+ tonalude ==0.1.1.1,
topograph ==1.0.0.1,
torsor ==0.1,
tostring ==0.2.1.1,
- tracing ==0.0.5.1,
+ tracing ==0.0.5.2,
transaction ==0.1.1.3,
transformers installed,
transformers-base ==0.4.5.2,
transformers-bifunctors ==0.1,
- transformers-compat ==0.6.5,
+ transformers-compat ==0.6.6,
transformers-fix ==1.0,
traverse-with-class ==1.0.1.0,
tree-diff ==0.1,
@@ -2263,21 +2264,21 @@ constraints: abstract-deque ==0.3,
triplesec ==0.2.2.1,
trivial-constraint ==0.6.0.0,
tsv2csv ==0.1.0.2,
- ttc ==0.2.2.0,
+ ttc ==0.2.3.0,
ttl-hashtables ==1.4.1.0,
ttrie ==0.1.2.1,
tuple ==0.3.0.2,
tuples-homogenous-h98 ==0.1.1.0,
tuple-sop ==0.3.1.0,
tuple-th ==0.2.5,
- turtle ==1.5.19,
+ turtle ==1.5.20,
TypeCompose ==0.9.14,
typed-process ==0.2.6.0,
typed-uuid ==0.0.0.2,
type-equality ==1,
type-errors ==0.2.0.0,
type-errors-pretty ==0.0.1.1,
- type-fun ==0.1.1,
+ type-fun ==0.1.2,
type-hint ==0.1,
type-level-integers ==0.0.1,
type-level-kv-list ==1.1.0,
@@ -2285,7 +2286,7 @@ constraints: abstract-deque ==0.3,
type-map ==0.1.6.0,
type-natural ==0.8.3.1,
typenums ==0.1.2.1,
- type-of-html ==1.5.1.0,
+ type-of-html ==1.5.2.0,
type-of-html-static ==0.1.0.2,
type-operators ==0.2.0.0,
typerep-map ==0.3.3.0,
@@ -2295,7 +2296,7 @@ constraints: abstract-deque ==0.3,
uglymemo ==0.1.0.1,
ulid ==0.3.0.0,
unagi-chan ==0.4.1.3,
- unbounded-delays ==0.1.1.0,
+ unbounded-delays ==0.1.1.1,
unboxed-ref ==0.4.0.0,
unboxing-vector ==0.1.1.0,
uncertain ==0.3.1.0,
@@ -2304,13 +2305,13 @@ constraints: abstract-deque ==0.3,
unexceptionalio-trans ==0.5.1,
unicode ==0.0.1.1,
unicode-show ==0.1.0.4,
- unicode-transforms ==0.3.6,
+ unicode-transforms ==0.3.7.1,
unification-fd ==0.10.0.1,
union-find ==0.2,
- uniplate ==1.6.12,
+ uniplate ==1.6.13,
uniprot-kb ==0.1.2.0,
uniq-deep ==1.2.0,
- unique ==0,
+ unique ==0.0.1,
unique-logic ==0.4,
unique-logic-tf ==0.5.1,
unit-constraint ==0.0.0,
@@ -2326,7 +2327,7 @@ constraints: abstract-deque ==0.3,
unix-bytestring ==0.3.7.3,
unix-compat ==0.5.2,
unix-time ==0.4.7,
- unliftio ==0.2.13,
+ unliftio ==0.2.13.1,
unliftio-core ==0.1.2.0,
unliftio-pool ==0.2.1.1,
unlit ==0.4.0.0,
@@ -2334,9 +2335,9 @@ constraints: abstract-deque ==0.3,
unordered-intmap ==0.1.1,
unsafe ==0.0,
urbit-hob ==0.3.3,
- uri-bytestring ==0.3.2.2,
+ uri-bytestring ==0.3.3.0,
uri-bytestring-aeson ==0.1.0.8,
- uri-encode ==1.5.0.6,
+ uri-encode ==1.5.0.7,
url ==2.1.3,
users ==0.5.0.0,
utf8-conversions ==0.1.0.4,
@@ -2364,7 +2365,7 @@ constraints: abstract-deque ==0.3,
vault ==0.3.1.4,
vec ==0.3,
vector ==0.12.1.2,
- vector-algorithms ==0.8.0.3,
+ vector-algorithms ==0.8.0.4,
vector-binary-instances ==0.2.5.1,
vector-buffer ==0.4.1,
vector-builder ==0.3.8,
@@ -2372,7 +2373,7 @@ constraints: abstract-deque ==0.3,
vector-instances ==3.4,
vector-mmap ==0.0.3,
vector-rotcev ==0.1.0.0,
- vector-sized ==1.4.1.0,
+ vector-sized ==1.4.3.1,
vector-space ==0.16,
vector-split ==1.0.0.2,
vector-th-unbox ==0.2.1.7,
@@ -2385,12 +2386,12 @@ constraints: abstract-deque ==0.3,
void ==0.7.3,
vty ==5.28.2,
wai ==3.2.2.1,
- wai-app-static ==3.1.7.1,
+ wai-app-static ==3.1.7.2,
wai-conduit ==3.0.0.4,
wai-cors ==0.2.7,
wai-enforce-https ==0.0.2.1,
wai-eventsource ==3.0.0,
- wai-extra ==3.0.29.2,
+ wai-extra ==3.0.32,
wai-handler-launch ==3.0.3.1,
wai-logger ==2.3.6,
wai-middleware-caching ==0.1.0.2,
@@ -2409,13 +2410,13 @@ constraints: abstract-deque ==0.3,
webex-teams-conduit ==0.2.0.1,
webex-teams-pipes ==0.2.0.1,
webrtc-vad ==0.1.0.3,
- websockets ==0.12.7.1,
+ websockets ==0.12.7.2,
websockets-snap ==0.10.3.1,
weigh ==0.0.16,
- wide-word ==0.1.1.1,
+ wide-word ==0.1.1.2,
wikicfp-scraper ==0.1.0.11,
wild-bind ==0.1.2.6,
- wild-bind-x11 ==0.2.0.10,
+ wild-bind-x11 ==0.2.0.11,
Win32 ==2.6.1.0,
Win32-notify ==0.3.0.3,
windns ==0.1.0.1,
@@ -2440,7 +2441,7 @@ constraints: abstract-deque ==0.3,
writer-cps-transformers ==0.5.6.1,
wss-client ==0.3.0.0,
wuss ==1.1.17,
- X11 ==1.9.1,
+ X11 ==1.9.2,
X11-xft ==0.3.1,
x11-xim ==0.0.9.0,
x509 ==1.7.5,
@@ -2451,10 +2452,10 @@ constraints: abstract-deque ==0.3,
xdg-basedir ==0.2.2,
xdg-desktop-entry ==0.1.1.1,
xdg-userdirs ==0.1.0.2,
- xeno ==0.4.1,
+ xeno ==0.4.2,
xhtml installed,
xls ==0.1.3,
- xlsx ==0.8.1,
+ xlsx ==0.8.2,
xlsx-tabular ==0.2.2.1,
xml ==1.3.14,
xml-basic ==0.1.3.1,
@@ -2476,24 +2477,24 @@ constraints: abstract-deque ==0.3,
xss-sanitize ==0.3.6,
xturtle ==0.2.0.0,
xxhash-ffi ==0.2.0.0,
- yaml ==0.11.4.0,
- yamlparse-applicative ==0.1.0.1,
+ yaml ==0.11.5.0,
+ yamlparse-applicative ==0.1.0.2,
yesod ==1.6.1.0,
- yesod-auth ==1.6.10,
+ yesod-auth ==1.6.10.1,
yesod-auth-fb ==1.10.1,
- yesod-auth-hashdb ==1.7.1.2,
+ yesod-auth-hashdb ==1.7.1.5,
yesod-bin ==1.6.0.6,
- yesod-core ==1.6.18,
+ yesod-core ==1.6.18.8,
yesod-fb ==0.6.1,
yesod-form ==1.6.7,
yesod-form-bootstrap4 ==3.0.0,
yesod-gitrev ==0.2.1,
yesod-newsfeed ==1.7.0.0,
- yesod-persistent ==1.6.0.4,
- yesod-recaptcha2 ==1.0.0,
+ yesod-persistent ==1.6.0.5,
+ yesod-recaptcha2 ==1.0.1,
yesod-sitemap ==1.6.0,
yesod-static ==1.6.1.0,
- yesod-test ==1.6.10,
+ yesod-test ==1.6.12,
yesod-websockets ==0.3.0.2,
yes-precure5-command ==5.5.3,
yi-rope ==0.11,
@@ -2506,6 +2507,7 @@ constraints: abstract-deque ==0.3,
zeromq4-haskell ==0.8.0,
zeromq4-patterns ==0.3.1.0,
zim-parser ==0.2.1.0,
+ zio ==0.1.0.2,
zip ==1.5.0,
zip-archive ==0.4.1,
zippers ==0.3,
=====================================
packages.txt
=====================================
@@ -9,8 +9,8 @@ aeson-diff 1.1.0.9
aeson-extra 0.4.1.3
aeson-pretty 0.8.8
aeson-qq 0.8.3
-Agda 2.6.1 key
-alex 3.2.5 binary key
+Agda 2.6.2 key
+alex 3.2.6 binary key
Allure 0.9.5.0 binary=allure
alsa-core 0.5.0.1
alsa-mixer 0.3.0
@@ -24,23 +24,23 @@ arrows 0.4.4.2 key
asn1-encoding 0.9.6
asn1-parse 0.9.5
asn1-types 0.3.4
-assert-failure 0.1.2.3
+assert-failure 0.1.2.5
assoc 1.0.2
async 2.2.2
atomic-write 0.2.0.7
attoparsec 0.13.2.4
attoparsec-conduit 1.1.0 avoid
-attoparsec-iso8601 1.0.1.0
+attoparsec-iso8601 1.0.2.0
authenticate 1.3.5
authenticate-oauth 1.6.0.1
auto-update 0.1.6
aws 0.22 notest
base16-bytestring 0.1.1.7
base64-bytestring 1.0.0.3
-base-compat 0.11.1
-base-compat-batteries 0.11.1
+base-compat 0.11.2
+base-compat-batteries 0.11.2
basement 0.0.11
-base-orphans 0.8.2 notest # cyclic dependencies; base-orphans, hspec, hspec-core, primitive, tf-random
+base-orphans 0.8.4 notest # cyclic dependencies; base-orphans, hspec, hspec-core, primitive, tf-random
base-prelude 1.3
base-unicode-symbols 0.2.4.2
basic-prelude 0.7.0
@@ -66,7 +66,7 @@ blaze-textual 0.2.1.0 notest
BlogLiterately 0.8.7
bloomfilter 2.0.1.0
bmp 1.2.6.3
-BNFC 2.8.3 binary=bnfc
+BNFC 2.8.4 binary=bnfc
Boolean 0.2.4
bool-extras 0.4.0
boomerang 1.4.6
@@ -74,7 +74,7 @@ BoundedChan 1.0.3.0
boxes 0.1.5
brainfuck 0.1.0.3
brick 0.52.1
-brittany 0.12.1.1
+brittany 0.12.2.0
broadcast-chan 0.2.1.1
bsb-http-chunked 0.0.0.4
bustle 0.8.0 key binary
@@ -93,7 +93,7 @@ bytestring-progress 1.4
bytestring-to-vector 0.3.0.1
bz2 1.0.0.1
bzlib 0.5.1.0
-c2hs 0.28.6 binary notest
+c2hs 0.28.7 binary notest
cabal-debian 5.0.3 binary -f-local-debian key
cabal-doctest 1.0.8
cabal-install 3.0.1.0 binary -f-lukko key
@@ -103,7 +103,7 @@ casa-client 0.0.1
casa-types 0.0.1
case-insensitive 1.2.1.0
cassava 0.5.2.0 notest # cassava-0.5.1.0:test => QuickCheck==2.10.*
-cassava-megaparsec 2.0.1 notest # avoid dependency on hspec-megaparsec
+cassava-megaparsec 2.0.2 notest # avoid dependency on hspec-megaparsec
categories 1.0.7 key
cborg 0.2.4.0
cborg-json 0.2.2.0
@@ -129,14 +129,14 @@ classy-prelude-yesod 1.5.0
clientsession 0.9.1.2
clock 0.8 notest # hurd patches upstream
cmark 0.6
-cmark-gfm 0.2.1
+cmark-gfm 0.2.2
cmdargs 0.10.20
code-page 0.2
colour 2.3.5 notest
comonad 5.0.6
concurrent-output 1.10.12
cond 0.4.1.1
-conduit 1.3.2
+conduit 1.3.4
conduit-combinators 1.3.0 avoid # replaced by conduit
conduit-extra 1.3.5 notest # tests require older bytestring-builder
ConfigFile 1.1.4
@@ -147,8 +147,8 @@ config-value 0.7.0.1
connection 0.3.1
constraints 0.12
constraints-extras 0.3.0.2
-contravariant 1.5.2
-contravariant-extras 0.3.5.1
+contravariant 1.5.3
+contravariant-extras 0.3.5.2
control-monad-free 0.6.2
control-monad-loop 0.1
convertible 1.1.1.0
@@ -157,7 +157,7 @@ cpphs 1.20.9.1
cprng-aes 0.6.1
cpu 0.1.2
crackNum 2.3
-criterion 1.5.6.2
+criterion 1.5.7.0
criterion-measurement 0.1.2.0
crypto-api 0.13.3
crypto-api-tests 0.3 avoid
@@ -179,12 +179,12 @@ crypto-random 0.0.9
crypto-random-api 0.2.0
css-text 0.1.3.0
csv 0.1.2
-csv-conduit 0.7.1.0
+csv-conduit 0.7.2.0
curl 1.3.8
curry-base 1.1.1
curry-frontend 2.0.0
czipwith 1.0.1.3
-darcs 2.14.5 key binary=darcs -fpkgconfig -fcurl -f-http -fterminfo notest
+darcs 2.16.4 key binary=darcs -fpkgconfig -fcurl -f-http -fterminfo notest
darcs-monitor 0.4.2 binary=darcs-monitor key
data-accessor 0.2.3
data-accessor-mtl 0.2.0.4
@@ -203,7 +203,7 @@ data-memocombinators 0.5.1
data-ordlist 0.4.7.0
data-tree-print 0.1.0.2
DAV 1.3.4
-dbus 1.2.16 notest
+dbus 1.2.17 notest
dbus-hslogger 0.1.0.1
debian 4.0.2
debug-me 1.20200820 binary
@@ -232,7 +232,7 @@ digest 0.0.1.2
dimensional 1.3
directory-tree 0.12.1
disk-free-space 0.1.0.1
-distributive 0.6.2
+distributive 0.6.2.1
djinn 2014.9.7 binary key
djinn-ghc 0.0.2.3
djinn-lib 0.0.1.3
@@ -240,7 +240,7 @@ dlist 0.8.0.8
dlist-instances 0.1.1.1
dns 4.0.1
doclayout 0.3
-doctemplates 0.8.2
+doctemplates 0.8.3
doctest 0.16.3 notest
dotgen 0.4.3
double-conversion 2.0.2.0
@@ -267,17 +267,17 @@ enummapset 0.6.0.3
equivalence 0.3.5
erf 2.0.0.0
errors 2.3.0
-esqueleto 3.3.3.2 notest # testsuite requires persistent-mysql
+esqueleto 3.3.4.1 notest # testsuite requires persistent-mysql
exact-pi 0.5.0.1 notest # tests require older base
exceptions 0.10.4
exception-transformers 0.4.0.9
executable-path 0.0.3.1
expiring-cache-map 0.0.6.1
extensible-exceptions 0.1.1.4
-extra 1.7.4
+extra 1.7.9
fail 4.9.0.0 avoid # empty package
failure 0.2.0.3
-fast-logger 3.0.1
+fast-logger 3.0.2
fb 2.1.1 notest
fclabels 2.0.5
fdo-notify 0.3.1
@@ -297,7 +297,7 @@ first-class-families 0.8.0.0
fixed 0.3
flexible-defaults 0.0.3
FloatingHex 0.4
-fmlist 0.9.3
+fmlist 0.9.4
focuslist 0.1.0.2 notest # test deps not available in sid
fold-debounce 0.2.0.9
foldl 1.4.6
@@ -322,8 +322,8 @@ genvalidity-property 0.5.0.1
getopt-generics 0.13.0.4
ghc-events 0.13.0
ghc-exactprint 0.6.2
-ghc-lib-parser 8.10.2.20200808
-ghc-lib-parser-ex 8.10.0.16
+ghc-lib-parser 8.10.3.20201220
+ghc-lib-parser-ex 8.10.0.17
ghc-mtl 1.2.1.0
ghc-paths 0.1.0.12
gi-atk 2.0.22 ahead
@@ -344,7 +344,7 @@ gi-harfbuzz 0.0.3
gio 0.13.8.1
gi-pango 1.0.23 ahead
git-annex 8.20210903 binary key -f-ConcurrentOutput
-githash 0.1.4.0
+githash 0.1.5.0
github 0.23
github-backup 1.20200721 binary key
gitit 0.13.0.0 key
@@ -356,12 +356,12 @@ gi-xlib 2.0.9 ahead
glib 0.13.8.1
glirc 2.36 binary key
Glob 0.10.1
-gloss 1.13.1.2 key
+gloss 1.13.2.1 key
gloss-rendering 1.13.1.1
GLURaw 2.0.0.4
GLUT 2.7.0.15
GraphSCC 1.0.4
-graphviz 2999.20.0.4 behind
+graphviz 2999.20.1.0
groups 0.4.1.0
gsasl 0.3.7
gtk 0.15.5
@@ -385,7 +385,7 @@ hashable 1.3.0.0
hashable-extras 0.2.3 avoid
hashable-time 0.2.0.2
hashmap 1.3.3
-hashtables 1.2.3.4
+hashtables 1.2.4.1
HaskellForMaths 0.4.9
haskell-gi 0.24.4 ahead
haskell-gi-base 0.24.2 ahead
@@ -410,18 +410,18 @@ HDBC-sqlite3 2.3.3.1 key
hdevtools 0.1.8.0 binary ignore # https://bugs.debian.org/964824
heaps 0.3.6.1
hedgehog 1.0.3
-hedis 0.12.14 key notest
+hedis 0.12.15 key notest
heist 1.1.0.1 notest
here 1.2.13
heredoc 0.2.0.0
-heterocephalus 1.0.5.3
+heterocephalus 1.0.5.4
hex 0.1.2
hgettext 0.1.31.0
hierarchical-clustering 0.4.7
hi-file-parser 0.1.0.0
highlighting-kate 0.6.4 -fpcre-light ignore # https://bugs.debian.org/963737
hindent 5.3.1 ignore # https://bugs.debian.org/963687
-hinotify 0.4
+hinotify 0.4.1
hint 0.9.0.3 notest
hjsmin 0.2.0.4
hledger 1.19.1 key ahead
@@ -430,35 +430,35 @@ hledger-lib 1.19.1 ahead
hledger-ui 1.19.1 binary ahead
hledger-web 1.19.1 binary ahead
hlint 3.1.6
-hmatrix 0.20.0.0
+hmatrix 0.20.1
hmatrix-gsl 0.19.0.1
hoauth2 1.14.0
hoogle 5.0.18.1 notest
hookup 0.4
-hOpenPGP 2.9.5 key ahead
-hopenpgp-tools 0.23.6 binary ahead
+hOpenPGP 2.9.5 key
+hopenpgp-tools 0.23.6 binary
hosc 0.17
hostname 1.0
hothasktags 0.3.8 binary ignore # BROKEN: LTS 15.12: newer haskell-src-exts
hourglass 0.2.12
-hpack 0.34.2
+hpack 0.34.3
hs-bibutils 6.10.0.0
hscolour 1.24.4
-hsemail 2.2.0
+hsemail 2.2.1
HSH 2.1.3 key # dependency of twidge
hsini 0.5.1.2
hslogger 1.3.1.0
hslua 1.0.3.2
-hslua-module-system 0.2.1
+hslua-module-system 0.2.2.1
hslua-module-text 0.2.1
-HsOpenSSL 0.11.4.18 notest
-HsOpenSSL-x509-system 0.1.0.3
+HsOpenSSL 0.11.5.1 notest
+HsOpenSSL-x509-system 0.1.0.4
hsp 0.10.0
-hspec 2.7.1 notest
+hspec 2.7.6 notest
hspec-attoparsec 0.1.0.2
hspec-contrib 0.5.1
-hspec-core 2.7.1 notest
-hspec-discover 2.7.1 notest binary
+hspec-core 2.7.6 notest
+hspec-discover 2.7.6 notest binary
hspec-expectations 0.8.2 notest
hspec-meta 2.6.0 avoid
hspec-smallcheck 0.5.2
@@ -472,21 +472,21 @@ hsyslog 5.0.2
html 1.0.1.2
html-conduit 1.3.2.1
http2 2.0.5
-HTTP 4000.3.14 notest
+HTTP 4000.3.15 notest
http-api-data 0.4.1.1
http-client 0.6.4.1
http-client-restricted 0.0.3
http-client-tls 0.3.5.3 notest
http-common 0.8.2.1
-http-conduit 2.3.7.3
-http-date 0.0.8 notest
+http-conduit 2.3.7.4
+http-date 0.0.10 notest
http-download 0.2.0.0
http-link-header 1.0.3.1
http-media 0.8.0.0
http-reverse-proxy 0.6.0 notest
http-streams 0.8.7.2 notest # testsuite creates dependency loop with snap
http-types 0.12.3
-HUnit 1.6.0.0
+HUnit 1.6.1.0
hxt 9.3.1.18
hxt-charproperties 9.4.0.0
hxt-curl 9.1.1.1
@@ -504,18 +504,18 @@ incremental-parser 0.4.0.2 notest
indexed-profunctors 0.1
infer-license 0.2.0
ini 0.4.1
-inline-c 0.9.1.0
+inline-c 0.9.1.4
inspection-testing 0.4.2.4
-integer-logarithms 1.0.3
+integer-logarithms 1.0.3.1 notest
intern 0.9.4 ahead
interpolate 0.2.1
intervals 0.9.1
invariant 0.5.3
IOSpec 0.3.1.1
io-storage 0.3
-io-streams 1.5.1.0
+io-streams 1.5.2.0
io-streams-haproxy 1.0.1.0
-iproute 1.7.9
+iproute 1.7.10
ipynb 0.1.0.1
irc 0.6.1.0
ircbot 0.6.6 key
@@ -532,7 +532,7 @@ js-jquery 3.3.1
json 0.10
JuicyPixels 3.3.5
jwt 0.10.0
-kan-extensions 5.2
+kan-extensions 5.2.1
keys 3.12.3
keysafe 0.20200214 binary=keysafe-bin ignore # BROKEN: LTS 15.12: fast-logger
knob 0.1.1
@@ -558,27 +558,27 @@ lens-action 0.2.4
lens-aeson 1.1
lens-family-core 2.0.0
lhs2tex 1.24 binary key
-libmpd 0.9.1.0
+libmpd 0.9.3.0
libxml-sax 0.7.5
libyaml 0.1.2
lifted-async 0.10.1.2
lifted-base 0.2.3.12 notest
-linear 1.21.1
-ListLike 4.7.1
+linear 1.21.3
+ListLike 4.7.4
load-env 0.2.1.0
log-domain 0.13
logging-facade 0.3.0
-logict 0.7.0.2
+logict 0.7.0.3
lrucache 1.2.0.1
lucid 2.9.12
lucid-svg 0.7.1
lzma 0.0.0.3 notest # lzma-0.0.0.3:test => QuickCheck<2.11
magic 1.1
-managed 1.0.7
+managed 1.0.8
map-syntax 0.3
markdown 0.1.17.4
-markdown-unlit 0.5.0
-math-functions 0.3.4.0
+markdown-unlit 0.5.1
+math-functions 0.3.4.1
mbox 0.3.4
megaparsec 8.0.0
memoize 0.8.1
@@ -590,13 +590,13 @@ microlens-aeson 2.3.1
microlens-ghc 0.4.12
microlens-mtl 0.2.0.1
microlens-platform 0.4.1
-microlens-th 0.4.3.5
+microlens-th 0.4.3.6
microspec 0.2.1.3
-microstache 1.0.1.1
+microstache 1.0.1.2
mighttpd2 3.4.6 binary key
mime 0.4.0.2
mime-mail 0.5.0
-mime-mail-ses 0.4.1
+mime-mail-ses 0.4.3
mime-types 0.1.0.9
minimorph 0.2.2.0
miniutter 0.5.1.0
@@ -612,9 +612,9 @@ monadcryptorandom 0.7.2.1
monad-journal 0.8.1
monadLib 3.10
monadlist 0.0.2
-monad-logger 0.3.34
+monad-logger 0.3.36
monad-loops 0.4.3
-monad-memo 0.5.1
+monad-memo 0.5.3
monad-par 0.3.5
monad-par-extras 0.3.3
MonadPrompt 1.0.0.5
@@ -647,7 +647,7 @@ nettle 0.3.0
netwire 5.0.3 key
network 3.1.1.1
network-bsd 2.8.1.0
-network-byte-order 0.1.5
+network-byte-order 0.1.6
network-conduit 1.1.0 avoid
network-conduit-tls 1.3.2
network-info 0.2.0.10
@@ -675,14 +675,14 @@ open-browser 0.2.1.0
OpenGL 3.0.3.0
OpenGLRaw 3.3.4.0
openpgp-asciiarmor 0.1.2
-openssl-streams 1.2.2.0
+openssl-streams 1.2.3.0
operational 0.2.3.5
optional-args 1.0.2
options 1.2.1.1 notest
optparse-applicative 0.15.1.0
-optparse-simple 0.1.1.2
+optparse-simple 0.1.1.3
ordered-containers 0.2.2
-ormolu 0.1.2.0
+ormolu 0.1.4.1
pandoc 2.9.2.1 key -fhttp-conduit
pandoc-citeproc 0.17.0.1 -fbibutils -f-hexpat -funicode_collation
pandoc-citeproc-preamble 1.6 binary
@@ -699,7 +699,7 @@ parser-combinators 1.2.1
parsers 0.12.10
patat 0.8.6.1 binary
path 0.7.0
-path-io 1.6.0
+path-io 1.6.2
path-pieces 0.2.1
patience 0.3
pcap 0.4.5.2
@@ -707,7 +707,7 @@ pcre-light 0.4.1.0
pem 0.2.4
persistable-record 0.6.0.5
persistable-types-HDBC-pg 0.0.3.5
-persistent 2.10.5.2
+persistent 2.10.5.3
persistent-postgresql 2.10.1.2 notest # avoid dep on persistent-test
persistent-sqlite 2.10.6.2 notest # avoid dep on persistent-test
persistent-template 2.8.2.3
@@ -721,12 +721,12 @@ pipes-group 1.0.12
pipes-parse 3.0.8
pipes-safe 2.3.2
pipes-zlib 0.4.4.2 key
-pointed 5.0.1
+pointed 5.0.2
pointedlist 0.6.1
polyparse 1.13
posix-pty 0.2.2
-postgresql-libpq 0.9.4.2
-postgresql-simple 0.6.2
+postgresql-libpq 0.9.4.3
+postgresql-simple 0.6.4
pqueue 1.4.1.3
prelude-extras 0.4.0.3
presburger 1.3.1
@@ -779,7 +779,7 @@ reducers 3.12.3
refact 0.3.0.2
reflection 2.1.6
reform 0.2.7.4
-reform-happstack 0.2.5.3 key
+reform-happstack 0.2.5.4 key
reform-hsp 0.2.7.2 key
regex-applicative 0.3.3.1
regex-applicative-text 0.1.0.1
@@ -787,7 +787,7 @@ regex-base 0.94.0.0
regex-compat 0.95.2.0
regex-compat-tdfa 0.95.1.4
regex-pcre 0.95.0.0 key # dependency of ganeti, mediawiki2latex
-regex-pcre-builtin 0.95.1.2.8.43 avoid
+regex-pcre-builtin 0.95.1.3.8.43 avoid
regex-posix 0.96.0.0
regexpr 0.5.4
regex-tdfa 1.3.1.0
@@ -804,15 +804,15 @@ resolv 0.1.2.0 notest # BROKEN: LTS 13:
resource-pool 0.2.3.2
resourcet 1.2.4.2
retry 0.8.1.2
-rio 0.1.18.0
+rio 0.1.19.0
rio-orphans 0.1.1.0
rio-prettyprint 0.1.1.0
RSA 2.4.1
rss2irc 1.2 binary ignore # BROKEN: LTS 13: network
rvar 0.2.0.6
safe 0.3.19
-safecopy 0.10.3
-safe-exceptions 0.1.7.0
+safecopy 0.10.3.1
+safe-exceptions 0.1.7.1
SafeSemaphore 0.10.1
sandi 0.5
say 0.1.0.1
@@ -821,7 +821,7 @@ scanner 0.3.1
scientific 0.3.6.2 notest
scotty 0.11.6
SDL 0.6.7.0 key # dependency of raincat
-sdl2 2.5.2.0
+sdl2 2.5.3.0
sdl2-ttf 2.1.1
SDL-gfx 0.7.0.0 key # we have the rest, so why not this
SDL-image 0.6.2.0 key # dependency of raincat
@@ -843,8 +843,8 @@ setenv 0.1.1.3 notest
set-extra 1.4.1
setlocale 1.0.0.9
SHA 1.6.4.4
-shake 0.19.1
-shakespeare 2.0.24.1
+shake 0.19.4
+shakespeare 2.0.25
shakespeare-text 1.1.0 avoid
ShellCheck 0.7.2 binary=shellcheck key ahead
shell-conduit 4.7.0
@@ -869,13 +869,13 @@ smtLib 1.1
smtp-mail 0.3.0.0
snap 1.1.3.0
snap-core 1.0.4.2
-snap-server 1.1.1.2
+snap-server 1.1.2.0
snap-templates 1.0.0.2 binary
soap 0.2.3.6
soap-tls 0.1.1.4
sockaddr 0.0.0
socks 0.6.1
-some 1.0.1
+some 1.0.2
sop-core 0.5.0.1
split 0.2.3.4
splitmix 0.0.5 notest # cyclic dependencies; QuickCheck, base-compat-batteries, splitmix
@@ -884,13 +884,13 @@ sql-words 0.1.6.4
stack 2.3.3 binary=haskell-stack key
stateref 0.3
statestack 0.3
-StateVar 1.2
+StateVar 1.2.1
static-hash 0.0.1
statistics 0.15.2.0
status-notifier-item 0.3.0.5
stm-chans 3.0.0.4
stm-delay 0.1.1.1
-STMonadTrans 0.4.4
+STMonadTrans 0.4.5
storable-complex 0.2.3.0
storable-record 0.0.5
storable-tuple 0.0.3.3
@@ -913,9 +913,9 @@ syb-with-class 0.6.1.13
system-fileio 0.3.16.4 notest # BROKEN: newer chell
system-filepath 0.4.14 notest # BROKEN: newer chell
system-posix-redirect 1.1.0.1
-tabular 0.2.2.7
+tabular 0.2.2.8
taffybar 3.2.2 key
-tagged 0.8.6
+tagged 0.8.6.1
tagshare 0.0
tagsoup 0.14.8
tagstream-conduit 0.5.6
@@ -923,20 +923,20 @@ tar 0.5.1.1 notest # BROKEN: LTS 13:
tar-conduit 0.3.2
taskell 1.10.0
tasty 1.2.3
-tasty-discover 4.2.1
+tasty-discover 4.2.2
tasty-expected-failure 0.11.1.2
tasty-golden 2.3.3.2
tasty-hedgehog 1.0.0.2
-tasty-hspec 1.1.5.1
-tasty-hunit 0.10.0.2
+tasty-hspec 1.1.6
+tasty-hunit 0.10.0.3
tasty-kat 0.0.3
-tasty-lua 0.2.2
-tasty-quickcheck 0.10.1.1
-tasty-rerun 1.1.17
-tasty-smallcheck 0.8.1
+tasty-lua 0.2.3.2
+tasty-quickcheck 0.10.1.2
+tasty-rerun 1.1.18
+tasty-smallcheck 0.8.2
tasty-th 0.1.7
template 0.2.0.10
-template-haskell-compat-v0208 0.1.2.1
+template-haskell-compat-v0208 0.1.5
temporary 1.3
temporary-rc 1.2.0.3 avoid # should be patched to use temporary
terminal-progress-bar 0.4.1
@@ -947,9 +947,9 @@ test-framework-hunit 0.3.0.2
test-framework-quickcheck2 0.3.0.5
test-framework-th 0.2.4
test-framework-th-prime 0.0.10
-texmath 0.12.0.2
+texmath 0.12.1
text-binary 0.2.1.1
-text-conversions 0.3.0
+text-conversions 0.3.1
text-format 0.3.2
text-icu 0.7.0.1
text-manipulate 0.2.0.1
@@ -967,8 +967,8 @@ th-desugar 1.10
these 1.1.1.1
th-expand-syns 0.4.6.0
th-extras 0.0.0.4
-th-lift 0.8.1
-th-lift-instances 0.1.17
+th-lift 0.8.2
+th-lift-instances 0.1.18
th-orphans 0.13.10
threads 0.5.1.6 notest
threadscope 0.2.13 key binary
@@ -977,7 +977,7 @@ th-reify-many 0.1.9
th-utilities 0.2.4.0
thyme 0.3.5.5
tidal 1.5.2
-time-compat 1.9.3
+time-compat 1.9.5
timeit 2.0
time-locale-compat 0.1.1.5
time-manager 0.0.0
@@ -990,7 +990,7 @@ token-bucket 0.1.0.1
topograph 1.0.0.1
torrent 10000.1.1
transformers-base 0.4.5.2
-transformers-compat 0.6.5
+transformers-compat 0.6.6
tree-monad 0.3.1
trifecta 2.1
tuple 0.3.0.2
@@ -1004,23 +1004,23 @@ type-level-numbers 0.1.1.1
tz 0.1.3.4
tzdata 0.1.20190911.0
uglymemo 0.1.0.1
-unbounded-delays 0.1.1.0
+unbounded-delays 0.1.1.1
unexceptionalio 0.5.1
-unicode-transforms 0.3.6
-uniplate 1.6.12
+unicode-transforms 0.3.7.1
+uniplate 1.6.13
universe-base 1.1.1 key
unix-compat 0.5.2
unix-time 0.4.7
Unixutils 1.54.1
unlambda 0.1.4.2 key # we should keep this or lambdabot
-unliftio 0.2.13
+unliftio 0.2.13.1
unliftio-core 0.1.2.0
unordered-containers 0.2.10.0
unsafe 0.0
uri 0.1.6.4
-uri-bytestring 0.3.2.2
+uri-bytestring 0.3.3.0
uri-bytestring-aeson 0.1.0.8
-uri-encode 1.5.0.6
+uri-encode 1.5.0.7
url 2.1.3
userid 0.1.3.5
utf8-light 0.4.2
@@ -1035,7 +1035,7 @@ validity 0.11.0.0
validity-containers 0.5.0.4
vault 0.3.1.4
vector 0.12.1.2 notest # Testing disabled during transition to 7.10
-vector-algorithms 0.8.0.3
+vector-algorithms 0.8.0.4
vector-binary-instances 0.2.5.1
vector-builder 0.3.8 notest # missing deps
vector-instances 3.4
@@ -1045,10 +1045,10 @@ void 0.7.3
vty 5.28.2 notest
wai 3.2.2.1
wai-app-file-cgi 3.1.9
-wai-app-static 3.1.7.1
+wai-app-static 3.1.7.2
wai-conduit 3.0.0.4
wai-cors 0.2.7
-wai-extra 3.0.29.2
+wai-extra 3.0.32
wai-handler-launch 3.0.3.1
wai-http2-extra 0.1.3
wai-logger 2.3.6 notest
@@ -1062,7 +1062,7 @@ web-routes-boomerang 0.28.4.2
web-routes-happstack 0.23.12 key
web-routes-hsp 0.24.6.1 key
web-routes-th 0.22.6.6 key
-websockets 0.12.7.1
+websockets 0.12.7.2
weigh 0.0.16
werewolf 1.5.2.0 ignore # https://bugs.debian.org/975464
with-location 0.1.0
@@ -1073,7 +1073,7 @@ word8 0.1.3
word-trie 0.3.0
word-wrap 0.4.1
wreq 0.5.3.2
-X11 1.9.1
+X11 1.9.2
X11-xft 0.3.1
x509 1.7.5
x509-store 1.6.7
@@ -1099,20 +1099,20 @@ xmonad-contrib 0.16 key
xmonad-extras 0.15.2
xmonad-wallpaper 0.0.1.4
xss-sanitize 0.3.6
-yaml 0.11.4.0
+yaml 0.11.5.0
yesod 1.6.1.0
-yesod-auth 1.6.10
-yesod-auth-hashdb 1.7.1.2
+yesod-auth 1.6.10.1
+yesod-auth-hashdb 1.7.1.5
yesod-auth-oauth 1.6.0.1
yesod-auth-oauth2 0.6.1.2 ignore # BROKEN LTS 15 hoauth2>=1.3.0 && <1.9
yesod-bin 1.6.0.6 binary=yesod
-yesod-core 1.6.18
+yesod-core 1.6.18.8
yesod-default 1.2.0
yesod-form 1.6.7
yesod-newsfeed 1.7.0.0
-yesod-persistent 1.6.0.4 notest
+yesod-persistent 1.6.0.5 notest
yesod-static 1.6.1.0
-yesod-test 1.6.10
+yesod-test 1.6.12
yi 0.19.0 binary key -fvty -fpango
yi-core 0.19.2
yi-frontend-pango 0.19.1
=====================================
patches/io-streams/1.5.1.0/no-bytestring-builder → patches/io-streams/1.5.2.0/no-bytestring-builder
=====================================
@@ -1,20 +1,18 @@
-Index: b/io-streams.cabal
-===================================================================
--- a/io-streams.cabal
+++ b/io-streams.cabal
-@@ -122,7 +122,6 @@ Library
- Build-depends: base >= 4 && <4.15,
- attoparsec >= 0.10 && <0.14,
- bytestring >= 0.9 && <0.11,
-- bytestring-builder >= 0.10 && <0.11,
- network >= 2.3 && <3.2,
- primitive >= 0.2 && <0.8,
- process >= 1.1 && <1.7,
-@@ -205,7 +204,6 @@ Test-suite testsuite
- Build-depends: base,
- attoparsec,
- bytestring,
-- bytestring-builder,
- deepseq >= 1.2 && <1.5,
- directory >= 1.1 && <2,
- filepath >= 1.2 && <2,
+@@ -130,7 +130,6 @@ Library
+ Build-depends: base >= 4 && <5,
+ attoparsec >= 0.10 && <0.14,
+ bytestring >= 0.9 && <0.11,
+- bytestring-builder >= 0.10 && <0.11,
+ primitive >= 0.2 && <0.8,
+ process >= 1.1 && <1.7,
+ text >= 0.10 && <1.3,
+@@ -230,7 +229,6 @@ Test-suite testsuite
+ Build-depends: base,
+ attoparsec,
+ bytestring,
+- bytestring-builder,
+ deepseq >= 1.2 && <1.5,
+ directory >= 1.1 && <2,
+ filepath >= 1.2 && <2,
=====================================
patches/io-streams/1.5.1.0/series → patches/io-streams/1.5.2.0/series
=====================================
=====================================
patches/postgresql-simple/0.6.2/newer-deps deleted
=====================================
@@ -1,36 +0,0 @@
---- a/postgresql-simple.cabal
-+++ b/postgresql-simple.cabal
-@@ -75,12 +75,12 @@ Library
-
- -- GHC bundled libs
- Build-depends:
-- base >=4.6.0.0 && <4.13
-+ base >=4.6.0.0 && <4.15
- , bytestring >=0.10.0.0 && <0.11
- , containers >=0.5.0.0 && <0.7
-- , time >=1.4.0.1 && <1.9
-+ , time >=1.4.0.1 && <1.10
- , transformers >=0.3.0.0 && <0.6
-- , template-haskell >=2.8.0.0 && <2.15
-+ , template-haskell >=2.8.0.0 && <2.17
- , text >=1.2.3.0 && <1.3
-
- -- Other dependencies
-@@ -88,7 +88,7 @@ Library
- aeson >=1.4.1.0 && <1.5
- , attoparsec >=0.13.2.2 && <0.14
- , case-insensitive >=1.2.0.11 && <1.3
-- , hashable >=1.2.7.0 && <1.3
-+ , hashable >=1.2.7.0 && <1.4
- , Only >=0.1 && <0.1.1
- , postgresql-libpq >=0.9.4.2 && < 0.10
- , uuid-types >=1.0.3 && <1.1
-@@ -98,7 +98,7 @@ Library
- if !impl(ghc >= 8.0)
- Build-depends:
- fail >=4.9.0.0 && <4.10,
-- semigroups >=0.18.5 && <0.19
-+ semigroups >=0.18.5 && <0.20
-
- if !impl(ghc >= 7.6)
- Build-depends:
=====================================
patches/postgresql-simple/0.6.2/no-bytestring-builder deleted
=====================================
@@ -1,10 +0,0 @@
---- a/postgresql-simple.cabal
-+++ b/postgresql-simple.cabal
-@@ -87,7 +87,6 @@
- Build-depends:
- aeson >=1.4.1.0 && <1.5
- , attoparsec >=0.13.2.2 && <0.14
-- , bytestring-builder >=0.10.8.1.0 && <0.11
- , case-insensitive >=1.2.0.11 && <1.3
- , hashable >=1.2.7.0 && <1.3
- , Only >=0.1 && <0.1.1
=====================================
patches/postgresql-simple/0.6.4/no-bytestring-builder
=====================================
@@ -0,0 +1,10 @@
+--- a/postgresql-simple.cabal
++++ b/postgresql-simple.cabal
+@@ -89,7 +89,6 @@
+ build-depends:
+ aeson >=1.4.1.0 && <1.6
+ , attoparsec >=0.13.2.2 && <0.14
+- , bytestring-builder >=0.10.8.1.0 && <0.11
+ , case-insensitive >=1.2.0.11 && <1.3
+ , hashable >=1.2.7.0 && <1.4
+ , Only >=0.1 && <0.1.1
=====================================
patches/snap-server/1.1.1.2/series → patches/postgresql-simple/0.6.4/series
=====================================
=====================================
patches/snap-server/1.1.1.2/no-bytestring-builder → patches/snap-server/1.1.2.0/no-bytestring-builder
=====================================
@@ -1,44 +1,42 @@
-Index: b/snap-server.cabal
-===================================================================
--- a/snap-server.cabal
+++ b/snap-server.cabal
-@@ -101,7 +101,6 @@ Library
- base >= 4.6 && < 4.15,
- blaze-builder >= 0.4 && < 0.5,
- bytestring >= 0.9.1 && < 0.11,
-- bytestring-builder >= 0.10.4 && < 0.11,
- case-insensitive >= 1.1 && < 1.3,
- clock >= 0.7.1 && < 0.9,
- containers >= 0.3 && < 0.7,
+@@ -100,7 +100,6 @@ Library
+ base >= 4.6 && < 4.15,
+ blaze-builder >= 0.4 && < 0.5,
+ bytestring >= 0.9.1 && < 0.11,
+- bytestring-builder >= 0.10.4 && < 0.11,
+ case-insensitive >= 1.1 && < 1.3,
+ clock >= 0.7.1 && < 0.9,
+ containers >= 0.3 && < 0.7,
@@ -216,7 +215,6 @@ Test-suite testsuite
- base,
- base16-bytestring >= 0.1 && < 1.1,
- blaze-builder,
-- bytestring-builder,
- bytestring,
- case-insensitive,
- clock,
+ base,
+ base16-bytestring >= 0.1 && < 1.1,
+ blaze-builder,
+- bytestring-builder,
+ bytestring,
+ case-insensitive,
+ clock,
@@ -327,7 +325,6 @@ Benchmark benchmark
- base,
- blaze-builder,
- bytestring,
-- bytestring-builder,
- criterion >= 0.6 && < 1.6,
- io-streams,
- io-streams-haproxy,
-@@ -410,7 +407,6 @@ Executable snap-test-pong-server
- base,
- blaze-builder,
- bytestring,
-- bytestring-builder,
- case-insensitive,
- clock,
- containers,
-@@ -503,7 +499,6 @@ Executable snap-test-server
- base,
- blaze-builder,
- bytestring,
-- bytestring-builder,
- case-insensitive,
- clock,
- containers,
+ base,
+ blaze-builder,
+ bytestring,
+- bytestring-builder,
+ criterion >= 0.6 && < 1.6,
+ io-streams,
+ io-streams-haproxy,
+@@ -411,7 +408,6 @@ Executable snap-test-pong-server
+ base,
+ blaze-builder,
+ bytestring,
+- bytestring-builder,
+ case-insensitive,
+ clock,
+ containers,
+@@ -504,7 +500,6 @@ Executable snap-test-server
+ base,
+ blaze-builder,
+ bytestring,
+- bytestring-builder,
+ case-insensitive,
+ clock,
+ containers,
=====================================
patches/websockets/0.12.7.1/series → patches/snap-server/1.1.2.0/series
=====================================
=====================================
patches/websockets/0.12.7.1/no-bytestring-builder → patches/websockets/0.12.7.2/no-bytestring-builder
=====================================
@@ -1,44 +1,42 @@
-Index: b/websockets.cabal
-===================================================================
--- a/websockets.cabal
+++ b/websockets.cabal
-@@ -85,7 +85,6 @@ Library
- base64-bytestring >= 0.1 && < 1.2,
+@@ -86,7 +86,6 @@ Library
+ base64-bytestring >= 0.1 && < 1.3,
binary >= 0.8.1 && < 0.11,
- bytestring >= 0.9 && < 0.11,
+ bytestring >= 0.9 && < 0.12,
- bytestring-builder < 0.11,
case-insensitive >= 0.3 && < 1.3,
clock >= 0.8 && < 0.9,
containers >= 0.3 && < 0.7,
-@@ -144,7 +143,6 @@ Test-suite websockets-tests
- base64-bytestring >= 0.1 && < 1.2,
+@@ -146,7 +145,6 @@ Test-suite websockets-tests
+ base64-bytestring >= 0.1 && < 1.3,
binary >= 0.8.1 && < 0.11,
- bytestring >= 0.9 && < 0.11,
+ bytestring >= 0.9 && < 0.12,
- bytestring-builder < 0.11,
case-insensitive >= 0.3 && < 1.3,
clock >= 0.8 && < 0.9,
containers >= 0.3 && < 0.7,
-@@ -172,7 +170,6 @@ Executable websockets-example
- base64-bytestring >= 0.1 && < 1.2,
+@@ -175,7 +173,6 @@ Executable websockets-example
+ base64-bytestring >= 0.1 && < 1.3,
binary >= 0.8.1 && < 0.11,
- bytestring >= 0.9 && < 0.11,
+ bytestring >= 0.9 && < 0.12,
- bytestring-builder < 0.11,
case-insensitive >= 0.3 && < 1.3,
clock >= 0.8 && < 0.9,
containers >= 0.3 && < 0.7,
-@@ -202,7 +199,6 @@ Executable websockets-autobahn
- base64-bytestring >= 0.1 && < 1.2,
+@@ -206,7 +203,6 @@ Executable websockets-autobahn
+ base64-bytestring >= 0.1 && < 1.3,
binary >= 0.8.1 && < 0.11,
- bytestring >= 0.9 && < 0.11,
+ bytestring >= 0.9 && < 0.12,
+- bytestring-builder < 0.11,
+ case-insensitive >= 0.3 && < 1.3,
+ clock >= 0.8 && < 0.9,
+ containers >= 0.3 && < 0.7,
+@@ -235,7 +231,6 @@ Benchmark bench-mask
+ base64-bytestring >= 0.1 && < 1.3,
+ binary >= 0.8.1 && < 0.11,
+ bytestring >= 0.9 && < 0.12,
- bytestring-builder < 0.11,
case-insensitive >= 0.3 && < 1.3,
clock >= 0.8 && < 0.9,
containers >= 0.3 && < 0.7,
-@@ -230,7 +226,6 @@ Benchmark bench-mask
- base64-bytestring >= 0.1 && < 1.2,
- binary >= 0.8.1 && < 0.11,
- bytestring >= 0.9 && < 0.11,
-- bytestring-builder < 0.11,
- case-insensitive >= 0.3 && < 1.3,
- clock >= 0.8 && < 0.9,
- containers >= 0.3 && < 0.7,
=====================================
patches/postgresql-simple/0.6.2/series → patches/websockets/0.12.7.2/series
=====================================
@@ -1,2 +1 @@
no-bytestring-builder
-newer-deps
View it on GitLab: https://salsa.debian.org/haskell-team/package-plan/-/commit/71273db3af2813877ae0de2d9bea4fb34cc1bc5e
--
View it on GitLab: https://salsa.debian.org/haskell-team/package-plan/-/commit/71273db3af2813877ae0de2d9bea4fb34cc1bc5e
You're receiving this email because of your account on salsa.debian.org.
-------------- next part --------------
An HTML attachment was scrubbed...
URL: <http://alioth-lists.debian.net/pipermail/pkg-haskell-commits/attachments/20210921/48ac7089/attachment-0001.htm>
More information about the Pkg-haskell-commits
mailing list