Skip to content

Commit d7a3c33

Browse files
authored
chore: update lotus version to v1.34.3 (#1369)
* chore: update lotus version to v1.34.3 * chore: fix typo * chore: update golang v1.24.7 * chore: change bookworm to trixie
1 parent 66354af commit d7a3c33

9 files changed

Lines changed: 289 additions & 299 deletions

File tree

.circleci/config.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -6,12 +6,12 @@ orbs:
66
executors:
77
dockerizer:
88
docker:
9-
- image: cimg/go:1.23.10
9+
- image: cimg/go:1.24.7
1010
environment:
1111
IMAGE_NAME: filecoin/lily
1212
golang:
1313
docker:
14-
- image: cimg/go:1.23.10
14+
- image: cimg/go:1.24.7
1515

1616
commands:
1717
install-deps:
@@ -148,7 +148,7 @@ jobs:
148148
test:
149149
resource_class: xlarge
150150
docker:
151-
- image: cimg/go:1.23.10
151+
- image: cimg/go:1.24.7
152152
- image: timescale/timescaledb:2.5.0-pg13
153153
environment:
154154
POSTGRES_PASSWORD: password
@@ -183,7 +183,7 @@ jobs:
183183
integration-test:
184184
resource_class: large
185185
docker:
186-
- image: cimg/go:1.23.10
186+
- image: cimg/go:1.24.7
187187
- image: timescale/timescaledb:2.5.0-pg13
188188
environment:
189189
POSTGRES_PASSWORD: password

Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@ RUN cp ./lily /usr/bin/
3939
# partial for producing a minimal image by extracting the binary
4040
# from a prior build step (builder.tpl)
4141

42-
FROM buildpack-deps:bookworm-curl
42+
FROM buildpack-deps:trixie-curl
4343
COPY --from=builder /go/src/github.com/filecoin-project/lily/lily /usr/bin/
4444
COPY --from=builder /usr/lib/x86_64-linux-gnu/libOpenCL.so* /lib/
4545
COPY --from=builder /usr/lib/x86_64-linux-gnu/libhwloc.so* /lib/

Makefile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
SHELL=/usr/bin/env bash
22

3-
GO_BUILD_IMAGE?=golang:1.23.10
3+
GO_BUILD_IMAGE?=golang:1.24.7
44
PG_IMAGE?=postgres:10
55
REDIS_IMAGE?=redis:6
66
LILY_IMAGE_NAME?=filecoin/lily

build/docker/prod_entrypoint.tpl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
# partial for producing a minimal image by extracting the binary
33
# from a prior build step (builder.tpl)
44

5-
FROM buildpack-deps:bookworm-curl
5+
FROM buildpack-deps:trixie-curl
66
COPY --from=builder /go/src/github.com/filecoin-project/lily/lily /usr/bin/
77
COPY --from=builder /usr/lib/x86_64-linux-gnu/libOpenCL.so* /lib/
88
COPY --from=builder /usr/lib/x86_64-linux-gnu/libhwloc.so* /lib/

go.mod

Lines changed: 81 additions & 86 deletions
Large diffs are not rendered by default.

go.sum

Lines changed: 199 additions & 200 deletions
Large diffs are not rendered by default.

lens/util/store.go

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -67,10 +67,6 @@ func (cs *CachingBlockstore) AllKeysChan(ctx context.Context) (<-chan cid.Cid, e
6767
return cs.blocks.AllKeysChan(ctx)
6868
}
6969

70-
func (cs *CachingBlockstore) HashOnRead(enabled bool) {
71-
cs.blocks.HashOnRead(enabled)
72-
}
73-
7470
func (cs *CachingBlockstore) Flush(ctx context.Context) error {
7571
return cs.blocks.Flush(ctx)
7672
}

tasks/fevm/transaction/tasks.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -127,7 +127,7 @@ func (p *Task) ProcessTipSets(ctx context.Context, current *types.TipSet, execut
127127
txnObj.TransactionIndex = uint64(*txn.TransactionIndex)
128128
}
129129

130-
// Sometime the the "To" field could be nil
130+
// Sometime the "To" field could be nil
131131
if txn.To != nil {
132132
txnObj.To = txn.To.String()
133133

0 commit comments

Comments
 (0)