Skip to content

Commit e20e8aa

Browse files
authored
Update dependencies (#438)
Updates to: - `cockroachdb/errors` - `go-car` - `go-libp2p` - stop using deprecated IPFS modules and use boxo replacements - swagger for doc and client generation - docker image (newer OS and go version) - `lassie` Notable update is to `lassie` as that had breaking API changes requiring code updates in `retriever/retriever.go`
1 parent 6fa0f67 commit e20e8aa

File tree

359 files changed

+2330
-1209
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

359 files changed

+2330
-1209
lines changed

.github/workflows/go-check.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,4 +15,4 @@ concurrency:
1515

1616
jobs:
1717
go-check:
18-
uses: ipdxco/unified-github-workflows/.github/workflows/go-check.yml@v0.0
18+
uses: ipdxco/unified-github-workflows/.github/workflows/go-check.yml@v1.0

.github/workflows/go-test.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,4 +15,4 @@ concurrency:
1515

1616
jobs:
1717
go-test:
18-
uses: ipdxco/unified-github-workflows/.github/workflows/[email protected].2
18+
uses: ipdxco/unified-github-workflows/.github/workflows/[email protected]

.github/workflows/releaser.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,4 +14,4 @@ concurrency:
1414

1515
jobs:
1616
releaser:
17-
uses: ipdxco/unified-github-workflows/.github/workflows/releaser.yml@v0.0
17+
uses: ipdxco/unified-github-workflows/.github/workflows/releaser.yml@v1.0

Dockerfile

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,12 @@
1-
FROM golang:1.20-bookworm as builder
1+
FROM golang:1.22-bullseye as builder
22
WORKDIR /app
33
COPY go.* ./
44
RUN go mod download
55
COPY . ./
66
RUN go build -o singularity .
7-
FROM debian:bookworm-slim
8-
RUN set -x && apt-get update && DEBIAN_FRONTEND=noninteractive apt-get install -y \
9-
ca-certificates curl && \
7+
FROM debian:bullseye-slim
8+
RUN apt-get update && \
9+
DEBIAN_FRONTEND=noninteractive apt-get install -y ca-certificates curl && \
1010
rm -rf /var/lib/apt/lists/*
1111

1212
COPY --from=builder /app/singularity /app/singularity

client/swagger/http/admin/admin_client.go

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

client/swagger/http/admin/set_identity_responses.go

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

client/swagger/http/deal/deal_client.go

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

client/swagger/http/deal/list_deals_responses.go

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

client/swagger/http/deal/send_manual_responses.go

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

client/swagger/http/deal_schedule/create_schedule_responses.go

Lines changed: 13 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)