File tree Expand file tree Collapse file tree 4 files changed +10
-9
lines changed Expand file tree Collapse file tree 4 files changed +10
-9
lines changed Original file line number Diff line number Diff line change 33
33
matrix :
34
34
include :
35
35
# Added manually - no 9.4 in haskell-ci yet
36
- - compiler : ghc-9.4.2
36
+ - compiler : ghc-9.4.3
37
37
compilerKind : ghc
38
- compilerVersion : 9.4.2
38
+ compilerVersion : 9.4.3
39
39
setup-method : ghcup
40
40
allow-failure : true
41
41
- compiler : ghc-9.2.2
@@ -243,8 +243,8 @@ jobs:
243
243
rm -f cabal.project.local
244
244
- name : constraint set servant-0.19
245
245
run : |
246
- if [ $((HCNUMVER >= 80800)) -ne 0 ] ; then $CABAL v2-build $ARG_COMPILER --disable-tests --disable-benchmarks --constraint='servant ==0.19' --dependencies-only -j2 all ; fi
247
- if [ $((HCNUMVER >= 80800)) -ne 0 ] ; then $CABAL v2-build $ARG_COMPILER --disable-tests --disable-benchmarks --constraint='servant ==0.19' all ; fi
246
+ if [ $((HCNUMVER >= 80800 && HCNUMVER < 90400 )) -ne 0 ] ; then $CABAL v2-build $ARG_COMPILER --disable-tests --disable-benchmarks --constraint='servant ==0.19' --dependencies-only -j2 all ; fi
247
+ if [ $((HCNUMVER >= 80800 && HCNUMVER < 90400 )) -ne 0 ] ; then $CABAL v2-build $ARG_COMPILER --disable-tests --disable-benchmarks --constraint='servant ==0.19' all ; fi
248
248
- name : constraint set servant-0.18.2
249
249
run : |
250
250
if [ $((HCNUMVER >= 80800 && HCNUMVER < 90000)) -ne 0 ] ; then $CABAL v2-build $ARG_COMPILER --disable-tests --disable-benchmarks --constraint='servant ==0.18.2' --dependencies-only -j2 all ; fi
Original file line number Diff line number Diff line change @@ -19,7 +19,7 @@ tested-with:
19
19
|| == 8.10.7
20
20
|| == 9.0.2
21
21
|| == 9.2.2
22
- || == 9.4.2
22
+ || == 9.4.3
23
23
24
24
library
25
25
ghc-options : -Wall
Original file line number Diff line number Diff line change @@ -34,7 +34,7 @@ tested-with:
34
34
|| == 8.10.7
35
35
|| == 9.0.2
36
36
|| == 9.2.2
37
- || == 9.4.2
37
+ || == 9.4.3
38
38
39
39
extra-source-files :
40
40
README.md
@@ -56,7 +56,7 @@ source-repository head
56
56
custom-setup
57
57
setup-depends :
58
58
base >= 4.9 && < 4.18 ,
59
- Cabal >= 1.24 && < 3.7 ,
59
+ Cabal >= 1.24 ,
60
60
cabal-doctest >= 1.0.6 && < 1.1
61
61
62
62
library
@@ -85,7 +85,7 @@ library
85
85
, lens >= 4.17 && < 5.3
86
86
, servant >= 0.17 && < 0.20
87
87
, singleton-bool >= 0.1.4 && < 0.2
88
- , openapi3 >= 3.0.0 && < 3.3
88
+ , openapi3 >= 3.2.3 && < 3.3
89
89
, text >= 1.2.3.0 && < 3
90
90
, unordered-containers >= 0.2.9.0 && < 0.3
91
91
Original file line number Diff line number Diff line change @@ -229,7 +229,8 @@ instance
229
229
230
230
combineSwagger :: OpenApi -> OpenApi -> OpenApi
231
231
combineSwagger s t = OpenApi
232
- { _openApiInfo = _openApiInfo s <> _openApiInfo t
232
+ { _openApiOpenapi = _openApiOpenapi s <> _openApiOpenapi t
233
+ , _openApiInfo = _openApiInfo s <> _openApiInfo t
233
234
, _openApiServers = _openApiServers s <> _openApiServers t
234
235
, _openApiPaths = InsOrdHashMap. unionWith combinePathItem (_openApiPaths s) (_openApiPaths t)
235
236
, _openApiComponents = _openApiComponents s <> _openApiComponents t
You can’t perform that action at this time.
0 commit comments