pmtiles-swarm 0.5.1 → 0.5.2

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (2) hide show
  1. package/CHANGELOG.md +9 -0
  2. package/package.json +2 -2
package/CHANGELOG.md CHANGED
@@ -7,6 +7,15 @@
7
7
  ### 🐞 Bug fixes
8
8
  - _...Add new stuff here..._
9
9
 
10
+ ## 0.5.2
11
+ ### 🐞 Bug fixes
12
+ - **Asks for the `pmtiles-torrent` that 0.5.1 actually needs.** It shipped declaring `^0.3.2`,
13
+ and a caret on a `0.x` version allows patch updates only — so that range can never install
14
+ 0.4.0, which is where the op behind writing a `.torrent` for a magnet-joined archive lives.
15
+ As published, 0.5.1 could not get the sidecar its own new code depends on. It fails safely
16
+ either way, since an older sidecar answers "unknown op" and the call is caught, but it fails
17
+ silently: the feed keeps serving enclosure URLs that 404 and nothing says why.
18
+
10
19
  ## 0.5.1
11
20
  ### ✨ Features and improvements
12
21
  - **An archive joined by magnet writes its own `.torrent` on a libtorrent node.** The machinery
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "pmtiles-swarm",
3
- "version": "0.5.1",
3
+ "version": "0.5.2",
4
4
  "description": "BitTorrent distribution for PMTiles map archives: create torrents, watch folders, publish and subscribe to RSS feeds, and seed through qBittorrent or an embedded client",
5
5
  "type": "module",
6
6
  "main": "src/index.js",
@@ -39,7 +39,7 @@
39
39
  "maplibre-gl": "^6.2.0",
40
40
  "parse-torrent": "^11.0.24",
41
41
  "pmtiles": "^4.4.1",
42
- "pmtiles-torrent": "^0.3.2",
42
+ "pmtiles-torrent": "^0.4.0",
43
43
  "webtorrent": "^3.0.21"
44
44
  },
45
45
  "engines": {