Skip to content

Commit

Permalink
Update dependencies (#438)
Browse files Browse the repository at this point in the history
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`
  • Loading branch information
gammazero authored Jul 3, 2024
1 parent 6c1e080 commit 1404e35
Show file tree
Hide file tree
Showing 359 changed files with 2,330 additions and 1,209 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/go-check.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,4 +15,4 @@ concurrency:

jobs:
go-check:
uses: ipdxco/unified-github-workflows/.github/workflows/go-check.yml@v0.0
uses: ipdxco/unified-github-workflows/.github/workflows/go-check.yml@v1.0
2 changes: 1 addition & 1 deletion .github/workflows/go-test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,4 +15,4 @@ concurrency:

jobs:
go-test:
uses: ipdxco/unified-github-workflows/.github/workflows/go-test.yml@v1.0.2
uses: ipdxco/unified-github-workflows/.github/workflows/go-test.yml@v1.0
2 changes: 1 addition & 1 deletion .github/workflows/releaser.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,4 +14,4 @@ concurrency:

jobs:
releaser:
uses: ipdxco/unified-github-workflows/.github/workflows/releaser.yml@v0.0
uses: ipdxco/unified-github-workflows/.github/workflows/releaser.yml@v1.0
8 changes: 4 additions & 4 deletions Dockerfile
Original file line number Diff line number Diff line change
@@ -1,12 +1,12 @@
FROM golang:1.20-bookworm as builder
FROM golang:1.22-bullseye as builder
WORKDIR /app
COPY go.* ./
RUN go mod download
COPY . ./
RUN go build -o singularity .
FROM debian:bookworm-slim
RUN set -x && apt-get update && DEBIAN_FRONTEND=noninteractive apt-get install -y \
ca-certificates curl && \
FROM debian:bullseye-slim
RUN apt-get update && \
DEBIAN_FRONTEND=noninteractive apt-get install -y ca-certificates curl && \
rm -rf /var/lib/apt/lists/*

COPY --from=builder /app/singularity /app/singularity
Expand Down
28 changes: 27 additions & 1 deletion client/swagger/http/admin/admin_client.go

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

17 changes: 11 additions & 6 deletions client/swagger/http/admin/set_identity_responses.go

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

28 changes: 27 additions & 1 deletion client/swagger/http/deal/deal_client.go

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

19 changes: 13 additions & 6 deletions client/swagger/http/deal/list_deals_responses.go

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

19 changes: 13 additions & 6 deletions client/swagger/http/deal/send_manual_responses.go

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

19 changes: 13 additions & 6 deletions client/swagger/http/deal_schedule/create_schedule_responses.go

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Loading

0 comments on commit 1404e35

Please sign in to comment.