File tree Expand file tree Collapse file tree 5 files changed +16
-12
lines changed Expand file tree Collapse file tree 5 files changed +16
-12
lines changed Original file line number Diff line number Diff line change @@ -14,17 +14,17 @@ jobs:
14
14
steps :
15
15
- name : Extract the tested GHC versions
16
16
id : set-matrix
17
- uses : kleidukos/get-tested@0 .1.6.0
17
+ uses : kleidukos/get-tested@v0 .1.6.0
18
18
with :
19
- cabal-file : get-tested .cabal
19
+ cabal-file : pg-entity .cabal
20
20
ubuntu : true
21
21
version : 0.1.6.0
22
22
tests :
23
23
name : ${{ matrix.ghc }} on ${{ matrix.os }}
24
- needs : generateMatrix
24
+ needs : generate-matrix
25
25
runs-on : ${{ matrix.os }}
26
26
strategy :
27
- matrix : ${{ fromJSON(needs.generateMatrix .outputs.matrix) }}
27
+ matrix : ${{ fromJSON(needs.generate-matrix .outputs.matrix) }}
28
28
# Service containers to run with `container-job`
29
29
services :
30
30
# Label used to access the service container
Original file line number Diff line number Diff line change 1
1
# Revision history for Entity
2
2
3
- ## 0.0.4.4 -- 2024-12-23
3
+ ## 0.0.5.0 -- 2024-01-19
4
+
5
+ * Update version of ` bytestring ` to 0.12, ` text ` to 2.1 and ` postgresql-simple ` to 0.7 ([ #72 ] ( https://github.com/tchoutri/pg-entity/pull/72 ) )
6
+
7
+ ## 0.0.4.4 -- 2023-12-23
4
8
* Remove extraneous quoting of table name in _ selectWithFields
5
9
6
10
## 0.0.4.3 -- 2023-06-26
Original file line number Diff line number Diff line change @@ -28,7 +28,7 @@ import Database.PostgreSQL.Simple.ToField
28
28
import Database.PostgreSQL.Transact (DBT )
29
29
import GHC.Generics
30
30
31
- import Control.Monad.Error
31
+ import Control.Monad.IO.Class ( MonadIO ( .. ))
32
32
import qualified Data.Time as Time
33
33
import qualified Data.UUID.V4 as UUID
34
34
import Database.PostgreSQL.Entity
Original file line number Diff line number Diff line change @@ -5,7 +5,7 @@ description:
5
5
A PostgreSQL layer to safely expand your SQL queries with a lightweight eDSL.
6
6
Read the tutorial at https://hackage.haskell.org/package/pg-entity/src/docs/book/index.html
7
7
8
- version : 0.0.4.4
8
+ version : 0.0.5.0
9
9
homepage :
10
10
https://hackage.haskell.org/package/pg-entity/src/docs/book/index.html
11
11
@@ -16,7 +16,7 @@ category: Database
16
16
license : MIT
17
17
build-type : Simple
18
18
tested-with :
19
- GHC == 8.8.4 || == 8.10.7 || == 9.0.2 || == 9.2.8 || == 9.4.8
19
+ GHC == 8.8.4 || == 8.10.7 || == 9.0.2 || == 9.2.8 || == 9.4.8 || == 9.6.4
20
20
21
21
extra-source-files :
22
22
CHANGELOG.md
@@ -105,18 +105,17 @@ library
105
105
hs-source-dirs : src
106
106
build-depends :
107
107
, base >= 4.12 && < 5.0
108
- , bytestring ^>= 0.11
108
+ , bytestring ^>= 0.12
109
109
, colourista ^>= 0.1
110
110
, parsec ^>= 3.1
111
111
, pg-transact ^>= 0.3
112
- , postgresql-simple ^>= 0.6
112
+ , postgresql-simple ^>= 0.7
113
113
, resource-pool ^>= 0.4
114
114
, template-haskell >= 2.15.0.0 && < 2.22.0.0.0
115
- , text ^>= 2.0
115
+ , text ^>= 2.1
116
116
, text-display ^>= 0.0
117
117
, text-manipulate ^>= 0.3
118
118
, time ^>= 1.12
119
- , uuid ^>= 1.3
120
119
, vector ^>= 0.13
121
120
122
121
if flag(prod)
Original file line number Diff line number Diff line change 4
4
module Utils where
5
5
6
6
import Control.Exception.Safe
7
+ import Control.Monad (void )
7
8
import Control.Monad.IO.Class
8
9
import Control.Monad.Reader
9
10
import Data.ByteString (ByteString )
You can’t perform that action at this time.
0 commit comments