webring 1.10.0-dev.9256 → 1.10.1-dev.9323

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 +8 -0
  2. package/package.json +1 -1
package/CHANGELOG.md CHANGED
@@ -5,6 +5,14 @@ All notable changes to this project will be documented in this file.
5
5
  The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.1.0/),
6
6
  and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
7
7
 
8
+ ## [1.10.1](https://github.com/shepherdjerred/monorepo/compare/webring-v1.10.0...webring-v1.10.1) (2026-08-13)
9
+
10
+ No library behavior changes. `src/`, the runtime dependencies, and the published `package.json` metadata are identical to `1.10.0`. The shipped `README.md` — the page you see on npm — did get a substantive documentation pass.
11
+
12
+ - `README.md` now documents every `Configuration` key in a table, and clarifies which fields are genuinely required: because the exported `Configuration` type is the Zod _output_ type, the schema's defaults for `number` and `truncate` are already applied in the type, so both must be passed explicitly alongside `sources`. Only `cache` and `shuffle` may be omitted. The Quick Start snippet was corrected to match ([9a546a4](https://github.com/shepherdjerred/monorepo/commit/9a546a4b05cccbc469ab8ce5ef5104ef7f40a34f))
13
+ - `README.md` logo images render again. They pointed at `cdn.rawgit.com` under the retired standalone `shepherdjerred/webring` repo, which now 404s, and are served from the monorepo instead. The generated API docs link moved from `shepherdjerred.github.io/webring` to [webring.sjer.red](https://webring.sjer.red) ([9a546a4](https://github.com/shepherdjerred/monorepo/commit/9a546a4b05cccbc469ab8ce5ef5104ef7f40a34f))
14
+ - The analytics snippet injected into the generated TypeDoc site was retuned — history-change pageviews, heatmaps, dead clicks, and web-vitals/network timing on; session recording re-enabled with all inputs masked; person profiles now persisted; DNT still respected ([f56bf21](https://github.com/shepherdjerred/monorepo/commit/f56bf21a9e4dbf0855fb1f95b7c41015069f299c)). Only `posthog.js` changed, and it is not part of the published npm tarball.
15
+
8
16
  ## [1.10.0](https://github.com/shepherdjerred/monorepo/compare/webring-v1.9.0...webring-v1.10.0) (2026-08-10)
9
17
 
10
18
  No library behavior changes. The shipped code is identical to `1.9.0`; this release exists only because of repo-level housekeeping that release-please picked up.
package/package.json CHANGED
@@ -17,7 +17,7 @@
17
17
  "url": "https://github.com/shepherdjerred/monorepo/issues"
18
18
  },
19
19
  "type": "module",
20
- "version": "1.10.0-dev.9256",
20
+ "version": "1.10.1-dev.9323",
21
21
  "scripts": {
22
22
  "lint": "eslint src --cache",
23
23
  "build": "PATH=node_modules/@typescript/native/bin:$PATH tsc",