webring 1.7.1 → 1.7.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.
- package/CHANGELOG.md +7 -0
- package/package.json +4 -4
package/CHANGELOG.md
CHANGED
|
@@ -5,6 +5,13 @@ 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.7.2](https://github.com/shepherdjerred/monorepo/compare/webring-v1.7.1...webring-v1.7.2) (2026-07-29)
|
|
9
|
+
|
|
10
|
+
No public API changes. Preview truncation is now self-contained and no longer depends on `truncate-html`'s legacy dependency chain.
|
|
11
|
+
|
|
12
|
+
- Preview HTML is truncated with an internal `htmlparser2` implementation that preserves balanced tags, escapes emitted text and attributes, and collapses whitespace ([4f08817](https://github.com/shepherdjerred/monorepo/commit/4f08817bebb8d0e0d12a428647e03cf58a77ea9e))
|
|
13
|
+
- Bump the new `htmlparser2` runtime dependency from `^10.0.0` to `^12.0.0` ([8202ff6](https://github.com/shepherdjerred/monorepo/commit/8202ff6ae5c70d94e9c600216477bfe8519baf05))
|
|
14
|
+
|
|
8
15
|
## [1.7.1](https://github.com/shepherdjerred/monorepo/compare/webring-v1.7.0...webring-v1.7.1) (2026-06-14)
|
|
9
16
|
|
|
10
17
|
No library behavior changes. The shipped code is identical to 1.7.0; this release exists only because of repo-level housekeeping that release-please picked up.
|
package/package.json
CHANGED
|
@@ -17,12 +17,12 @@
|
|
|
17
17
|
"url": "https://github.com/shepherdjerred/monorepo/issues"
|
|
18
18
|
},
|
|
19
19
|
"type": "module",
|
|
20
|
-
"version": "1.7.
|
|
20
|
+
"version": "1.7.2",
|
|
21
21
|
"scripts": {
|
|
22
22
|
"lint": "eslint src --cache",
|
|
23
23
|
"build": "tsc",
|
|
24
24
|
"watch": "tsc -w",
|
|
25
|
-
"test": "bun test src/",
|
|
25
|
+
"test": "bun run typedoc && bun test src/",
|
|
26
26
|
"test:update": "bun test src/ --update-snapshots",
|
|
27
27
|
"typedoc": "typedoc src/index.ts",
|
|
28
28
|
"typecheck": "tsc --noEmit",
|
|
@@ -38,7 +38,7 @@
|
|
|
38
38
|
}
|
|
39
39
|
},
|
|
40
40
|
"dependencies": {
|
|
41
|
-
"htmlparser2": "^
|
|
41
|
+
"htmlparser2": "^12.0.0",
|
|
42
42
|
"remeda": "^2.33.7",
|
|
43
43
|
"rss-parser": "^3.13.0",
|
|
44
44
|
"sanitize-html": "^2.17.4",
|
|
@@ -50,7 +50,7 @@
|
|
|
50
50
|
"@tsconfig/strictest": "^2.0.8",
|
|
51
51
|
"@types/bun": "^1.3.13",
|
|
52
52
|
"@types/express": "^5.0.6",
|
|
53
|
-
"@types/node": "^
|
|
53
|
+
"@types/node": "^26.1.1",
|
|
54
54
|
"@types/sanitize-html": "^2.16.1",
|
|
55
55
|
"eslint": "^10.3.0",
|
|
56
56
|
"express": "^5.2.1",
|