Skip to content

Commit ac61fd5

Browse files
authored
Merge pull request #5401 from commercialhaskell/missing-blobs
Handle missing blobs in Pantry cache
2 parents 4674ee8 + 458b4dc commit ac61fd5

File tree

7 files changed

+11
-9
lines changed

7 files changed

+11
-9
lines changed

ChangeLog.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -33,6 +33,7 @@ Bug fixes:
3333
* Fix `stack test --coverage` when using Cabal 3
3434
* `stack new` now generates PascalCase'd module name correctly.
3535
[#5376](https://github.com/commercialhaskell/stack/issues/5376)
36+
* Connection issues to Casa server no longer cause builds to failure. Casa acts only as an optimizing cache layer, not a critical piece of infrastructure.
3637

3738
## v2.3.3
3839

package.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -92,7 +92,7 @@ dependencies:
9292
- network-uri
9393
- open-browser
9494
- optparse-applicative
95-
- pantry
95+
- pantry >= 0.5.1.3
9696
- casa-client
9797
- casa-types
9898
- path

stack-ghc-810.yaml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -22,6 +22,7 @@ ghc-options:
2222
extra-deps:
2323
- rio-0.1.19.0@rev:0
2424
- rio-prettyprint-0.1.1.0@rev:0
25+
- pantry-0.5.1.3@rev:0
2526

2627
drop-packages:
2728
# See https://github.com/commercialhaskell/stack/pull/4712

stack-ghc-84.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,7 @@ extra-deps:
4444
- rio-prettyprint-0.1.1.0@rev:0
4545
- hi-file-parser-0.1.0.0@rev:0
4646
- http-download-0.2.0.0@rev:0
47-
- pantry-0.5.1.1@rev:0
47+
- pantry-0.5.1.3@rev:0
4848
- casa-client-0.0.1@rev:0
4949
- casa-types-0.0.1@rev:0
5050
- filelock-0.1.1.5@rev:0

stack-ghc-88.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ extra-deps:
2626
- hpack-0.33.0@rev:0
2727
- http-download-0.2.0.0@rev:0
2828
- filelock-0.1.1.5@rev:0
29-
- pantry-0.5.1.1@rev:0
29+
- pantry-0.5.1.3@rev:0
3030
- casa-client-0.0.1@rev:0
3131
- casa-types-0.0.1@rev:0
3232
- rio-0.1.19.0@rev:0

stack.cabal

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ cabal-version: 2.0
44
--
55
-- see: https://github.com/sol/hpack
66
--
7-
-- hash: 2991e5ffcda3a90f2be71a0df883bf7706afef078dd3cc0abfc98868a3e8028f
7+
-- hash: 88433abe924041186adc81b3f69022819047d5eb44eb272937327254a4787516
88

99
name: stack
1010
version: 2.4.0
@@ -272,7 +272,7 @@ library
272272
, network-uri
273273
, open-browser
274274
, optparse-applicative
275-
, pantry
275+
, pantry >=0.5.1.3
276276
, path
277277
, path-io
278278
, persistent
@@ -396,7 +396,7 @@ executable stack
396396
, network-uri
397397
, open-browser
398398
, optparse-applicative
399-
, pantry
399+
, pantry >=0.5.1.3
400400
, path
401401
, path-io
402402
, persistent
@@ -519,7 +519,7 @@ executable stack-integration-test
519519
, open-browser
520520
, optparse-applicative
521521
, optparse-generic
522-
, pantry
522+
, pantry >=0.5.1.3
523523
, path
524524
, path-io
525525
, persistent
@@ -647,7 +647,7 @@ test-suite stack-test
647647
, network-uri
648648
, open-browser
649649
, optparse-applicative
650-
, pantry
650+
, pantry >=0.5.1.3
651651
, path
652652
, path-io
653653
, persistent

stack.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,11 +28,11 @@ extra-deps:
2828
- hpack-0.33.0@rev:0
2929
- http-download-0.2.0.0@rev:0
3030
- filelock-0.1.1.5@rev:0
31-
- pantry-0.5.1.1@rev:0
3231
- rio-0.1.19.0@rev:0
3332
- rio-prettyprint-0.1.1.0@rev:0
3433
- casa-client-0.0.1@rev:0
3534
- casa-types-0.0.1@rev:0
35+
- pantry-0.5.1.3@rev:0
3636

3737
drop-packages:
3838
# See https://github.com/commercialhaskell/stack/pull/4712

0 commit comments

Comments
 (0)