pmtiles-swarm 0.4.2 → 0.4.3

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 +15 -0
  2. package/package.json +2 -2
package/CHANGELOG.md CHANGED
@@ -7,6 +7,21 @@
7
7
  ### 🐞 Bug fixes
8
8
  - _...Add new stuff here..._
9
9
 
10
+ ## 0.4.3
11
+ ### 🐞 Bug fixes
12
+ - **The lock file keeps the optional native builds `ws` asks for.** `bufferutil` and
13
+ `utf-8-validate` have now been stripped from it twice by a local `npm install` on a machine
14
+ that had already decided not to build them, and both times the release failed on `npm ci` —
15
+ which reproduces a lock exactly and will not improvise. Nothing local ever notices, because
16
+ they are optional and their absence costs only speed; the only thing that notices is a clean
17
+ install, which is what every release is. There is a test for it now, and it fails against the
18
+ lock that broke this release.
19
+ - **Requires the `pmtiles-torrent` that the resume fix actually needs.** The dependency said
20
+ `^0.3.0`, which an existing install already satisfies — so updating pmtiles-swarm left the
21
+ sidecar where it was, and half of a fix that lives in both halves does nothing. npm was right
22
+ and the declaration was wrong: 0.4.2's resume save reaches a sidecar that only writes resume
23
+ data from 0.3.2 onwards, so that is what it now asks for.
24
+
10
25
  ## 0.4.2
11
26
  ### 🐞 Bug fixes
12
27
  - **Resume data is saved on a node running more than one engine.** The periodic save is only
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "pmtiles-swarm",
3
- "version": "0.4.2",
3
+ "version": "0.4.3",
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.0",
42
+ "pmtiles-torrent": "^0.3.2",
43
43
  "webtorrent": "^3.0.21"
44
44
  },
45
45
  "engines": {