securl 1.11.0 → 1.11.1
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 +5 -0
- package/RELEASING.md +7 -2
- package/package.json +2 -2
package/CHANGELOG.md
CHANGED
|
@@ -6,6 +6,11 @@ The format is based on Keep a Changelog and this package follows Semantic Versio
|
|
|
6
6
|
|
|
7
7
|
## [Unreleased]
|
|
8
8
|
|
|
9
|
+
## [1.11.1] - 2026-06-24
|
|
10
|
+
|
|
11
|
+
### Changed
|
|
12
|
+
- Updated `node-html-parser` to 8.0.3, replacing the retired entity decoder while preserving the existing parsing API and Node 22 runtime floor.
|
|
13
|
+
|
|
9
14
|
## [1.11.0] - 2026-06-20
|
|
10
15
|
|
|
11
16
|
### Added
|
package/RELEASING.md
CHANGED
|
@@ -21,14 +21,19 @@ git diff --name-status securl-v$(node -p "require('./packages/core/package.json'
|
|
|
21
21
|
3. Run:
|
|
22
22
|
- `npm run release:core:check`
|
|
23
23
|
4. Review the dry-run tarball contents.
|
|
24
|
-
5. Confirm
|
|
24
|
+
5. Confirm npm Trusted Publishing is configured for this package:
|
|
25
|
+
- provider: GitHub Actions
|
|
26
|
+
- organization: `this-is-securl`
|
|
27
|
+
- repository: `securl`
|
|
28
|
+
- workflow filename: `publish-core-package.yml`
|
|
29
|
+
- allowed action: `npm publish`
|
|
25
30
|
|
|
26
31
|
## Release steps
|
|
27
32
|
|
|
28
33
|
1. Commit the version/changelog update.
|
|
29
34
|
2. Tag the release using `securl-v<version>`, for example `securl-v1.4.1`.
|
|
30
35
|
3. Push the tag.
|
|
31
|
-
4. Let `.github/workflows/publish-core-package.yml` publish the package.
|
|
36
|
+
4. Let `.github/workflows/publish-core-package.yml` publish the package through short-lived npm OIDC credentials.
|
|
32
37
|
|
|
33
38
|
## Post-release
|
|
34
39
|
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "securl",
|
|
3
|
-
"version": "1.11.
|
|
3
|
+
"version": "1.11.1",
|
|
4
4
|
"type": "module",
|
|
5
5
|
"description": "Passive external security posture scanner for public URLs and web services.",
|
|
6
6
|
"author": {
|
|
@@ -129,6 +129,6 @@
|
|
|
129
129
|
],
|
|
130
130
|
"license": "MIT",
|
|
131
131
|
"dependencies": {
|
|
132
|
-
"node-html-parser": "^
|
|
132
|
+
"node-html-parser": "^8.0.3"
|
|
133
133
|
}
|
|
134
134
|
}
|