Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Stackage lts 7.19 #268

Merged
merged 2 commits into from
Feb 10, 2017
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
12 changes: 6 additions & 6 deletions opaleye-sqlite/opaleye-sqlite.cabal
Original file line number Diff line number Diff line change
Expand Up @@ -28,16 +28,16 @@ library
, base16-bytestring >= 0.1.1.6 && < 0.2
, case-insensitive >= 1.2 && < 1.3
, bytestring >= 0.10 && < 0.11
, contravariant >= 1.2 && < 1.4
, contravariant >= 1.2 && < 1.5
, direct-sqlite >= 2.3.13 && < 2.4
, pretty >= 1.1.1.0 && < 1.2
, product-profunctors >= 0.6.2 && < 0.7
, profunctors >= 4.0 && < 5.2
, semigroups >= 0.13 && < 0.17
, product-profunctors >= 0.6.2 && < 0.8
, profunctors >= 4.0 && < 5.3
, semigroups >= 0.13 && < 0.19
, sqlite-simple
, text >= 0.11 && < 1.3
, transformers >= 0.3 && < 0.5
, time >= 1.4 && < 1.6
, transformers >= 0.3 && < 0.6
, time >= 1.4 && < 1.7
, time-locale-compat >= 0.1 && < 0.2
, uuid >= 1.3 && < 1.4
, void >= 0.4 && < 0.8
Expand Down
2 changes: 1 addition & 1 deletion opaleye-sqlite/src/Opaleye/SQLite/Internal/PackMap.hs
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ import qualified Data.Functor.Identity as I
-- 'ProductProfunctor') in @s@ and @t@. It is unclear at this point
-- whether we want the same @Traversal@ laws to hold or not. Our use
-- cases may be much more general.
data PackMap a b s t = PackMap (Applicative f =>
data PackMap a b s t = PackMap (forall f. Applicative f =>
Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I'm not exactly sure which change in the compiler necessitated this change. However it appears to be backwards compatible, so I don't see a problem with it.

Copy link
Owner

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Yeah, that's something that had to change in Opaleye a while ago but I didn't fix the sqlite version at the same time.

Copy link
Owner

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

@WillSewell Are you actually using opaleye-sqlite? I'm not sure how widely used it is.

Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

No I'm not, but I thought I'd update the deps for it since I was updating the stack.yaml resolver version anyway.

(a -> f b) -> s -> f t)

-- | Replaces the targeted occurences of @a@ in @s@ with @b@ (changing
Expand Down
4 changes: 2 additions & 2 deletions opaleye.cabal
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ library
build-depends:
-- attoparsec can be removed once postgresql-simple patch in
-- Internal.RunQuery is merged upstream
aeson >= 0.6 && < 1.1
aeson >= 0.6 && < 1.2
, attoparsec >= 0.10.3 && < 0.14
, base >= 4.6 && < 5
, base16-bytestring >= 0.1.1.6 && < 0.2
Expand Down Expand Up @@ -100,7 +100,7 @@ test-suite test
other-modules: QuickCheck
hs-source-dirs: Test
build-depends:
aeson >= 0.6 && < 1.1,
aeson >= 0.6 && < 1.2,
base >= 4 && < 5,
containers,
contravariant,
Expand Down
3 changes: 2 additions & 1 deletion stack.yaml
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
resolver: lts-3.16
resolver: lts-7.19
packages:
- '.'
- opaleye-sqlite/
extra-deps:
- postgresql-simple-0.5.1.1
- aeson-1.1.0.0