@networkdiagnostics/sdk 0.1.0-pre.1 → 0.1.0

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 +32 -0
  2. package/package.json +1 -1
package/CHANGELOG.md CHANGED
@@ -5,6 +5,38 @@ 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] — 2026-06-09
9
+
10
+ First stable release. Functionally identical to 0.1.0-pre.4; this tag
11
+ just moves the package out of pre-release status and onto the `latest`
12
+ dist-tag.
13
+
14
+ ## [0.1.0-pre.4] — 2026-06-09
15
+
16
+ ### Fixed
17
+ - Pass `--tag next` for pre-release versions in release workflow.
18
+ npm >= 11 refuses to publish pre-release versions without an
19
+ explicit dist-tag so they don't pollute `latest`. Stable versions
20
+ (no hyphen) continue to publish to `latest`.
21
+
22
+ ## [0.1.0-pre.3] — 2026-06-09
23
+
24
+ ### Fixed
25
+ - Upgrade npm to latest in the release workflow. Trusted Publishing
26
+ requires npm ≥ 11.5.1; setup-node@v4 with Node 20 ships npm 10.x
27
+ which silently falls back to anonymous auth and returns 404 on PUT.
28
+
29
+ ## [0.1.0-pre.2] — 2026-06-09
30
+
31
+ ### Changed
32
+ - Switched release workflow from NPM_TOKEN to npm Trusted Publishing (OIDC).
33
+ Auth is now performed via the GitHub Actions OIDC token at publish time;
34
+ no long-lived token in CI secrets.
35
+
36
+ ## [0.1.0-pre.1] — 2026-06-09
37
+
38
+ First test publish to verify the end-to-end pipeline.
39
+
8
40
  ## [Unreleased]
9
41
 
10
42
  ### 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",
4
4
  "description": "Browser SDK for the networktests.com API — UDP throughput and DNS-leak probes.",
5
5
  "license": "MIT",
6
6
  "type": "module",