@networkdiagnostics/sdk 0.1.0-pre.1 → 0.1.0-pre.4

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 +26 -0
  2. package/package.json +1 -1
package/CHANGELOG.md CHANGED
@@ -5,6 +5,32 @@ All notable changes to `@networkdiagnostics/sdk` are documented here.
5
5
  The format follows [Keep a Changelog](https://keepachangelog.com/en/1.1.0/);
6
6
  this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
7
7
 
8
+ ## [0.1.0-pre.4] — 2026-06-09
9
+
10
+ ### Fixed
11
+ - Pass `--tag next` for pre-release versions in release workflow.
12
+ npm >= 11 refuses to publish pre-release versions without an
13
+ explicit dist-tag so they don't pollute `latest`. Stable versions
14
+ (no hyphen) continue to publish to `latest`.
15
+
16
+ ## [0.1.0-pre.3] — 2026-06-09
17
+
18
+ ### Fixed
19
+ - Upgrade npm to latest in the release workflow. Trusted Publishing
20
+ requires npm ≥ 11.5.1; setup-node@v4 with Node 20 ships npm 10.x
21
+ which silently falls back to anonymous auth and returns 404 on PUT.
22
+
23
+ ## [0.1.0-pre.2] — 2026-06-09
24
+
25
+ ### Changed
26
+ - Switched release workflow from NPM_TOKEN to npm Trusted Publishing (OIDC).
27
+ Auth is now performed via the GitHub Actions OIDC token at publish time;
28
+ no long-lived token in CI secrets.
29
+
30
+ ## [0.1.0-pre.1] — 2026-06-09
31
+
32
+ First test publish to verify the end-to-end pipeline.
33
+
8
34
  ## [Unreleased]
9
35
 
10
36
  ### Added
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@networkdiagnostics/sdk",
3
- "version": "0.1.0-pre.1",
3
+ "version": "0.1.0-pre.4",
4
4
  "description": "Browser SDK for the networktests.com API — UDP throughput and DNS-leak probes.",
5
5
  "license": "MIT",
6
6
  "type": "module",