pagerts 1.3.0 → 1.4.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.
Files changed (2) hide show
  1. package/README.md +13 -14
  2. package/package.json +3 -3
package/README.md CHANGED
@@ -2,7 +2,7 @@
2
2
 
3
3
  [![CI/CD Security Pipeline](https://github.com/akinevz2/pagerts/actions/workflows/ci.yml/badge.svg?branch=dev)](https://github.com/akinevz2/pagerts/actions/workflows/ci.yml)
4
4
  [![Security](https://img.shields.io/badge/security-maintained-green.svg)](./SECURITY.md)
5
- [![Node.js Version](https://img.shields.io/badge/node-%3E%3D18.0.0-brightgreen.svg)](https://nodejs.org)
5
+ [![Node.js Version](https://img.shields.io/badge/node-%3E%3D20.0.0-brightgreen.svg)](https://nodejs.org)
6
6
  [![License](https://img.shields.io/badge/license-MIT-blue.svg)](./LICENSE)
7
7
 
8
8
  PagerTS is a secure, modern command-line utility that transforms URLs into structured JSON objects, extracting all navigable items and resources from webpages.
@@ -11,7 +11,7 @@ PagerTS is a secure, modern command-line utility that transforms URLs into struc
11
11
 
12
12
  - 🔒 **Security-First**: Built-in URL validation, rate limiting, and XSS protection
13
13
  - 🚀 **Modern TypeScript**: Strict type checking and modern ES2022 syntax
14
- - ⚡ **Fast**: Efficient parsing with JSDOM and concurrent request handling
14
+ - ⚡ **Fast**: Efficient parsing with LinkeDOM and concurrent request handling
15
15
  - 🧪 **Well-Tested**: Comprehensive test coverage with Jest
16
16
  - 📦 **Easy to Use**: Simple CLI interface with sensible defaults
17
17
 
@@ -110,7 +110,7 @@ PagerTS takes security seriously. See [SECURITY.md](./SECURITY.md) for:
110
110
 
111
111
  ### Prerequisites
112
112
 
113
- - Node.js >= 18.0.0
113
+ - Node.js >= 20.0.0
114
114
  - npm >= 9.0.0
115
115
 
116
116
  ### Setup
@@ -226,17 +226,16 @@ This project is licensed under the MIT License - see the [LICENSE](./LICENSE) fi
226
226
 
227
227
  ## Changelog
228
228
 
229
- ### v0.3.0 (Latest)
230
-
231
- - Added comprehensive security features
232
- - ✨ Implemented URL validation and sanitization
233
- - Added rate limiting
234
- - Modernized codebase with TypeScript strict mode
235
- - Added ESLint with security plugin
236
- - Added comprehensive test suite
237
- - Added CI/CD with GitHub Actions
238
- - Improved error handling and retry logic
239
- - 📚 Added security documentation
229
+ ### v0.3.0 -> v1.4.1 summary
230
+
231
+ Key changes in this range:
232
+
233
+ - Security hardening and dependency-surface reduction (`863389a`).
234
+ - CI/security gate tightening and scan-noise cleanup (`da73bdb`, `46875e8`).
235
+ - Packaging/runtime interoperability fixes for CJS/ESM builds and publishes (`4054ab9`, `74d3f98`, `64b2a2f`, `e67acd6`).
236
+ - Regression fix for ignored script resources (`bc13b55`).
237
+ - Dependency tree refresh/stabilization (`1f8f86d`) and release bump to `v1.4.1` (`8846bec`).
238
+ - General code hardening and cleanup across extractors/fetching/printers, plus lockfile and build artifact maintenance in the same span.
240
239
 
241
240
  ### v0.2.0
242
241
 
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "pagerts",
3
3
  "description": "A tool for viewing external relations in a webpage",
4
- "version": "1.3.0",
4
+ "version": "1.4.2",
5
5
  "type": "module",
6
6
  "main": "main.js",
7
7
  "bin": {
@@ -11,7 +11,7 @@
11
11
  "bin"
12
12
  ],
13
13
  "engines": {
14
- "node": ">=18.0.0"
14
+ "node": ">=20.0.0"
15
15
  },
16
16
  "scripts": {
17
17
  "test": "jest --coverage",
@@ -44,7 +44,7 @@
44
44
  "homepage": "https://github.com/akinevz2/pagerts",
45
45
  "dependencies": {
46
46
  "@exodus/bytes": "^1.15.0",
47
- "commander": "^12.1.0",
47
+ "commander": "^14.0.3",
48
48
  "linkedom": "^0.18.9"
49
49
  },
50
50
  "devDependencies": {