Skip to content

Commit f62cc1e

Browse files
authored
Merge pull request #5242 from IntersectMBO/erikd/dep-upper-bounds
Bump dependency upper bounds
2 parents 0c381f3 + 593505f commit f62cc1e

File tree

18 files changed

+214
-62
lines changed

18 files changed

+214
-62
lines changed

acts-generic/acts-generic.cabal

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ library
3333
-- other-extensions:
3434
build-depends:
3535
acts,
36-
base >=4.14 && <4.22,
36+
base >=4.14 && <4.23,
3737

3838
hs-source-dirs: src
3939
default-language: Haskell2010
Lines changed: 19 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,19 @@
1+
<!--
2+
A new scriv changelog fragment.
3+
4+
Uncomment the section that is right (remove the HTML comment wrapper).
5+
For top level release notes, leave all the headers commented out.
6+
-->
7+
8+
<!--
9+
### Breaking
10+
11+
- A bullet item for the Breaking category.
12+
13+
-->
14+
15+
### Non-Breaking
16+
17+
- Update dependencies.
18+
19+

cabal.project

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -15,10 +15,10 @@ repository cardano-haskell-packages
1515
-- repeat the index-state for hackage to work around haskell.nix parsing limitation
1616
index-state:
1717
-- Bump this if you need newer packages from Hackage
18-
, hackage.haskell.org 2025-08-05T15:28:56Z
18+
, hackage.haskell.org 2025-11-10T01:36:00Z
1919

2020
-- Bump this if you need newer packages from CHaP
21-
, cardano-haskell-packages 2025-03-18T17:41:11Z
21+
, cardano-haskell-packages 2025-11-07T15:42:47Z
2222

2323
packages: ./cardano-ping
2424
./monoidal-synchronisation

cardano-diffusion/cardano-diffusion.cabal

Lines changed: 13 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -67,7 +67,7 @@ library api
6767

6868
build-depends:
6969
aeson,
70-
base >=4.14 && <4.22,
70+
base >=4.14 && <4.23,
7171
cborg >=0.2.1 && <0.3,
7272
deepseq,
7373
nothunks,
@@ -86,7 +86,7 @@ test-suite api-tests
8686

8787
build-depends:
8888
QuickCheck,
89-
base >=4.14 && <4.22,
89+
base >=4.14 && <4.23,
9090
cardano-diffusion:api,
9191
ouroboros-network:api,
9292
tasty,
@@ -149,7 +149,7 @@ library
149149

150150
build-depends:
151151
aeson,
152-
base >=4.14 && <4.22,
152+
base >=4.14 && <4.23,
153153
bytestring,
154154
cardano-diffusion:{api, protocols},
155155
containers,
@@ -201,7 +201,7 @@ library orphan-instances
201201

202202
build-depends:
203203
aeson,
204-
base >=4.14 && <4.22,
204+
base >=4.14 && <4.23,
205205
cardano-diffusion:{cardano-diffusion, api},
206206
containers,
207207
ouroboros-network:{ouroboros-network, api, orphan-instances},
@@ -212,7 +212,7 @@ executable demo-chain-sync
212212
main-is: chain-sync.hs
213213
build-depends:
214214
async,
215-
base >=4.14 && <4.22,
215+
base >=4.14 && <4.23,
216216
bytestring,
217217
cardano-diffusion,
218218
containers,
@@ -279,7 +279,7 @@ library protocols
279279
Ouroboros.Network.Protocol.TxSubmission2.Type as Cardano.Network.Protocol.TxSubmission2.Type,
280280

281281
build-depends:
282-
base >=4.12 && <4.22,
282+
base >=4.12 && <4.23,
283283
bytestring >=0.10 && <0.13,
284284
cardano-diffusion:api,
285285
cborg >=0.2.1 && <0.3,
@@ -331,7 +331,7 @@ library protocols-tests-lib
331331

332332
build-depends:
333333
QuickCheck,
334-
base >=4.14 && <4.22,
334+
base >=4.14 && <4.23,
335335
bytestring,
336336
cardano-diffusion:api,
337337
cborg,
@@ -351,7 +351,7 @@ test-suite protocols-tests
351351
hs-source-dirs: protocols/tests
352352
main-is: Main.hs
353353
build-depends:
354-
base >=4.14 && <4.22,
354+
base >=4.14 && <4.23,
355355
cardano-diffusion:protocols-tests-lib,
356356
tasty,
357357

@@ -374,7 +374,7 @@ test-suite protocols-cddl
374374

375375
build-depends:
376376
QuickCheck,
377-
base >=4.14 && <4.22,
377+
base >=4.14 && <4.23,
378378
bytestring,
379379
cardano-diffusion:{api, protocols, protocols-tests-lib},
380380
cborg,
@@ -407,7 +407,7 @@ test-suite protocols-bench
407407
hs-source-dirs: protocols/bench
408408
main-is: Main.hs
409409
build-depends:
410-
base >=4.14 && <4.22,
410+
base >=4.14 && <4.23,
411411
bytestring,
412412
cardano-diffusion:{api, protocols, protocols-tests-lib},
413413
cborg,
@@ -435,7 +435,7 @@ library cardano-diffusion-tests-lib
435435
build-depends:
436436
QuickCheck >=2.16,
437437
aeson,
438-
base >=4.14 && <4.22,
438+
base >=4.14 && <4.23,
439439
bytestring,
440440
cardano-diffusion:{cardano-diffusion, api, orphan-instances, protocols-tests-lib},
441441
cardano-slotting,
@@ -483,7 +483,7 @@ test-suite cardano-diffusion-sim-tests
483483
hs-source-dirs: tests/sim
484484
main-is: Main.hs
485485
build-depends:
486-
base >=4.14 && <4.22,
486+
base >=4.14 && <4.23,
487487
cardano-diffusion:cardano-diffusion-tests-lib,
488488
tasty,
489489
with-utf8,
@@ -504,7 +504,7 @@ library subscription
504504
default-language: Haskell2010
505505
default-extensions: ImportQualifiedPost
506506
build-depends:
507-
base >=4.14 && <4.22,
507+
base >=4.14 && <4.23,
508508
bytestring >=0.10 && <0.13,
509509
cardano-diffusion ^>=0.1,
510510
cborg >=0.2.8 && <0.3,
Lines changed: 19 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,19 @@
1+
<!--
2+
A new scriv changelog fragment.
3+
4+
Uncomment the section that is right (remove the HTML comment wrapper).
5+
For top level release notes, leave all the headers commented out.
6+
-->
7+
8+
<!--
9+
### Breaking
10+
11+
- A bullet item for the Breaking category.
12+
13+
-->
14+
15+
### Non-Breaking
16+
17+
- Update dependencies.
18+
19+

cardano-ping/cardano-ping.cabal

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ library
2727
exposed-modules: Cardano.Network.Ping
2828
build-depends:
2929
aeson >=2.1.1.0 && <3,
30-
base >=4.14 && <4.22,
30+
base >=4.14 && <4.23,
3131
bytestring >=0.10 && <0.13,
3232
cborg >=0.2.8 && <0.3,
3333
contra-tracer >=0.1 && <0.3,
@@ -37,7 +37,7 @@ library
3737
network-mux ^>=0.9,
3838
tdigest ^>=0.3,
3939
text >=1.2.4 && <2.2,
40-
time >=1.9.1 && <1.14,
40+
time >=1.9.1 && <1.16,
4141
transformers >=0.5 && <0.7,
4242

4343
if flag(asserts)
Lines changed: 19 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,19 @@
1+
<!--
2+
A new scriv changelog fragment.
3+
4+
Uncomment the section that is right (remove the HTML comment wrapper).
5+
For top level release notes, leave all the headers commented out.
6+
-->
7+
8+
<!--
9+
### Breaking
10+
11+
- A bullet item for the Breaking category.
12+
13+
-->
14+
15+
### Non-Breaking
16+
17+
- Update dependencies.
18+
19+
Lines changed: 19 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,19 @@
1+
<!--
2+
A new scriv changelog fragment.
3+
4+
Uncomment the section that is right (remove the HTML comment wrapper).
5+
For top level release notes, leave all the headers commented out.
6+
-->
7+
8+
<!--
9+
### Breaking
10+
11+
- A bullet item for the Breaking category.
12+
13+
-->
14+
15+
### Non-Breaking
16+
17+
- Update dependencies.
18+
19+

dmq-node/dmq-node.cabal

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -88,13 +88,13 @@ library
8888
acts-generic,
8989
aeson >=2.1.1.0 && <3,
9090
aeson-pretty,
91-
base >=4.14 && <4.22,
91+
base >=4.14 && <4.23,
9292
base16-bytestring,
9393
bytestring >=0.10 && <0.13,
9494
cardano-binary,
9595
cardano-crypto-class,
9696
cborg >=0.2.1 && <0.3,
97-
containers >=0.5 && <0.8,
97+
containers >=0.5 && <0.9,
9898
contra-tracer >=0.1 && <0.3,
9999
deepseq >=1.0 && <1.6,
100100
directory,
@@ -107,12 +107,12 @@ library
107107
kes-agent-crypto ^>=0.1,
108108
network ^>=3.2.7,
109109
network-mux ^>=0.9.1,
110-
optparse-applicative ^>=0.18,
110+
optparse-applicative >=0.18 && <0.20,
111111
ouroboros-network:{ouroboros-network, api, framework, orphan-instances, protocols} ^>=0.23,
112112
random ^>=1.2,
113113
singletons,
114114
text >=1.2.4 && <2.2,
115-
time ^>=1.12,
115+
time >=1.12 && <1.16,
116116
typed-protocols:{typed-protocols, cborg} ^>=1.1,
117117

118118
hs-source-dirs: src
@@ -165,7 +165,7 @@ test-suite dmq-tests
165165
main-is: Main.hs
166166
build-depends:
167167
QuickCheck,
168-
base >=4.14 && <4.22,
168+
base >=4.14 && <4.23,
169169
bytestring,
170170
cardano-crypto-class,
171171
cardano-crypto-tests,
@@ -210,7 +210,7 @@ test-suite dmq-cddl
210210

211211
default-language: Haskell2010
212212
build-depends:
213-
base >=4.14 && <4.22,
213+
base >=4.14 && <4.23,
214214
base16-bytestring,
215215
bytestring,
216216
cborg,

flake.lock

Lines changed: 6 additions & 6 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)