Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 0 additions & 7 deletions .changeset/fix-webui-pin-detection.md

This file was deleted.

7 changes: 0 additions & 7 deletions .changeset/upgrade-kubo-0-41-0.md

This file was deleted.

14 changes: 14 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,19 @@
# @1001/ipfs-server

## 1.5.0

### Minor Changes

- [`45e930f`](https://github.com/1001-digital/ipfs.server/commit/45e930f3198ed408ea542a5c548bbccb9cadbf84) Thanks [@jwahdatehagh](https://github.com/jwahdatehagh)! - Upgrade Kubo to v0.41.0

Bumps the base image from `ipfs/kubo:v0.40.0` to `v0.41.0`. Notable upstream changes: the provider keystore moves to a dedicated datastore under `$IPFS_PATH/provider-keystore/` (migrated automatically on first startup), a fixed DHT data race that previously caused random daemon crashes, faster imports for selective `Provide.Strategy` users, and WebUI v4.12.0. No changes to our config or init scripts are required.

### Patch Changes

- [`7ea621c`](https://github.com/1001-digital/ipfs.server/commit/7ea621ca22ca0f61f3b64466b7b7543f55a6b9fd) Thanks [@jwahdatehagh](https://github.com/jwahdatehagh)! - Fix WebUI pinning broken by the Kubo 0.41 upgrade

Since Kubo 0.41, `/webui` no longer redirects straight to `/ipfs/<cid>` but to `/webui/`, which returns a 503 when the WebUI content is not local (we run with `Gateway.NoFetch=true`). The init script's wget-based redirect parsing therefore found no CID and the WebUI was never pinned, leaving `admin.ipfs.1001.digital/webui` broken after deploys. The script now issues a raw request via `nc`, extracting the CID from the redirect headers or the 503 error body, whichever is present.

## 1.4.1

### Patch Changes
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@1001/ipfs-server",
"version": "1.4.1",
"version": "1.5.0",
"private": true,
"type": "module",
"scripts": {
Expand Down