@stackline/redeyed 1.0.1 → 1.0.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 +13 -1
- package/NOTICE +4 -2
- package/README.md +7 -1
- package/SECURITY.md +7 -0
- package/THIRD_PARTY_LICENSES.md +1 -1
- package/dist/redeyed.browser.cjs +9 -9
- package/dist/redeyed.browser.mjs +9 -9
- package/dist/redeyed.global.js +9 -9
- package/package.json +4 -3
package/CHANGELOG.md
CHANGED
|
@@ -7,6 +7,17 @@ Versioning.
|
|
|
7
7
|
|
|
8
8
|
## [Unreleased]
|
|
9
9
|
|
|
10
|
+
## [1.0.2] - 2026-08-30
|
|
11
|
+
|
|
12
|
+
### Changed
|
|
13
|
+
|
|
14
|
+
- Preserve the historical `esprima` dependency key while resolving it exactly
|
|
15
|
+
to maintained `@stackline/esprima@1.0.0`.
|
|
16
|
+
- Require warning-free packed installs, valid dependency trees, and zero
|
|
17
|
+
production and full-lockfile audit findings.
|
|
18
|
+
- Correct the npm publication workflow to address the local tarball path
|
|
19
|
+
explicitly.
|
|
20
|
+
|
|
10
21
|
## [1.0.1] - 2026-08-26
|
|
11
22
|
|
|
12
23
|
### Added
|
|
@@ -45,6 +56,7 @@ Versioning.
|
|
|
45
56
|
shape, comments, splits, and source retention.
|
|
46
57
|
- Original MIT copyright and permission notice.
|
|
47
58
|
|
|
48
|
-
[Unreleased]: https://github.com/alexandroit/stackline-redeyed/compare/stackline-v1.0.
|
|
59
|
+
[Unreleased]: https://github.com/alexandroit/stackline-redeyed/compare/stackline-v1.0.2...HEAD
|
|
60
|
+
[1.0.2]: https://github.com/alexandroit/stackline-redeyed/compare/stackline-v1.0.1...stackline-v1.0.2
|
|
49
61
|
[1.0.1]: https://github.com/alexandroit/stackline-redeyed/compare/stackline-v1.0.0...stackline-v1.0.1
|
|
50
62
|
[1.0.0]: https://github.com/alexandroit/stackline-redeyed/tree/stackline-v1.0.0
|
package/NOTICE
CHANGED
|
@@ -5,5 +5,7 @@ copyright and MIT license terms are preserved in LICENSE.
|
|
|
5
5
|
|
|
6
6
|
Original project: https://github.com/thlorenz/redeyed
|
|
7
7
|
|
|
8
|
-
|
|
9
|
-
|
|
8
|
+
The historical dependency key `esprima` resolves to maintained
|
|
9
|
+
`@stackline/esprima@1.0.0`. Browser bundles include its Esprima 4.0.1-compatible
|
|
10
|
+
runtime. The BSD-2-Clause redistribution terms are preserved in
|
|
11
|
+
THIRD_PARTY_LICENSES.md.
|
package/README.md
CHANGED
|
@@ -15,7 +15,7 @@
|
|
|
15
15
|
**[Security](SECURITY.md)** |
|
|
16
16
|
**[Changelog](CHANGELOG.md)**
|
|
17
17
|
|
|
18
|
-
**Current package version:** `1.0.
|
|
18
|
+
**Current package version:** `1.0.2`
|
|
19
19
|
|
|
20
20
|
This package is an independent, maintained continuation of
|
|
21
21
|
[`redeyed`](https://github.com/thlorenz/redeyed). It preserves the established
|
|
@@ -168,6 +168,12 @@ differential executions, immutable and hostile-key configs, modern parser
|
|
|
168
168
|
adapters, hashbang edges, browser/modules/types, package audits, and a direct
|
|
169
169
|
`cardinal` adoption check.
|
|
170
170
|
|
|
171
|
+
The historical dependency key `esprima` resolves exactly to the maintained
|
|
172
|
+
`@stackline/esprima@1.0.0` compatibility package. It preserves the Esprima
|
|
173
|
+
4.0.1 API while keeping the complete production chain under Stackline release,
|
|
174
|
+
CI, audit, and provenance controls. A clean install reports no warnings and
|
|
175
|
+
zero audit findings.
|
|
176
|
+
|
|
171
177
|
## Security
|
|
172
178
|
|
|
173
179
|
Report vulnerabilities privately as described in [SECURITY.md](SECURITY.md).
|
package/SECURITY.md
CHANGED
|
@@ -24,3 +24,10 @@ Upstream issue #22 concerns an old jQuery URL in an example shipped with
|
|
|
24
24
|
`redeyed@2.1.1`. The example is not executed by the library. Stackline excludes
|
|
25
25
|
that example from npm artifacts, but does not misrepresent the scanner finding
|
|
26
26
|
as a CVE in redeyed's runtime.
|
|
27
|
+
|
|
28
|
+
## Dependency Chain
|
|
29
|
+
|
|
30
|
+
Version 1.0.2 preserves the dependency key `esprima` through the exact npm
|
|
31
|
+
alias `npm:@stackline/esprima@1.0.0`. That maintained parser has no production,
|
|
32
|
+
optional, or peer dependencies. Release gates require a warning-free packed
|
|
33
|
+
install, a valid npm tree, and zero production and full-lockfile audit findings.
|