From 290b76107c261915083b7d8994170cb52e22033d Mon Sep 17 00:00:00 2001 From: Mat Kelly Date: Thu, 14 Nov 2024 13:42:26 -0500 Subject: [PATCH 1/2] Update kubo to 0.32 for testing Closes #850 --- .github/workflows/test.yml | 2 +- Dockerfile | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index e656cce7..780d8586 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -21,10 +21,10 @@ jobs: - "3.12" - "3.13" ipfs: - - "0.28" - "0.29" - "0.30" - "0.31" + - "0.32" runs-on: ${{ matrix.os }} name: ${{ matrix.os }} Py-${{ matrix.python }} IPFS-${{ matrix.ipfs }} steps: diff --git a/Dockerfile b/Dockerfile index 3117525d..345c0a1a 100644 --- a/Dockerfile +++ b/Dockerfile @@ -21,7 +21,7 @@ RUN mkdir -p /data/{warc,cdxj,ipfs} # Download and install IPFS ENV IPFS_PATH=/data/ipfs -ARG IPFS_VERSION=v0.31.0 +ARG IPFS_VERSION=v0.32.0 ARG BUILDARCH RUN cd /tmp \ && wget -q https://dist.ipfs.tech/kubo/${IPFS_VERSION}/kubo_${IPFS_VERSION}_linux-$BUILDARCH.tar.gz \ From d4282d14099dc3dd4964ce77d82634b564a2deec Mon Sep 17 00:00:00 2001 From: Mat Kelly Date: Thu, 21 Nov 2024 17:01:47 -0500 Subject: [PATCH 2/2] Update to kubo 0.32.1 for testing --- .github/workflows/test.yml | 2 +- Dockerfile | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index 780d8586..0537d834 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -24,7 +24,7 @@ jobs: - "0.29" - "0.30" - "0.31" - - "0.32" + - "0.32.1" runs-on: ${{ matrix.os }} name: ${{ matrix.os }} Py-${{ matrix.python }} IPFS-${{ matrix.ipfs }} steps: diff --git a/Dockerfile b/Dockerfile index 345c0a1a..00ab4fd1 100644 --- a/Dockerfile +++ b/Dockerfile @@ -21,7 +21,7 @@ RUN mkdir -p /data/{warc,cdxj,ipfs} # Download and install IPFS ENV IPFS_PATH=/data/ipfs -ARG IPFS_VERSION=v0.32.0 +ARG IPFS_VERSION=v0.32.1 ARG BUILDARCH RUN cd /tmp \ && wget -q https://dist.ipfs.tech/kubo/${IPFS_VERSION}/kubo_${IPFS_VERSION}_linux-$BUILDARCH.tar.gz \