styleproof 4.4.9 → 4.4.10
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 +10 -0
- package/dist/map-store.js +4 -0
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -7,6 +7,16 @@ this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.htm
|
|
|
7
7
|
|
|
8
8
|
## [Unreleased]
|
|
9
9
|
|
|
10
|
+
## [4.4.10] - 2026-07-13
|
|
11
|
+
|
|
12
|
+
### Fixed
|
|
13
|
+
|
|
14
|
+
- **Explicit workflow authentication no longer duplicates the checkout header.**
|
|
15
|
+
StyleProof clears any inherited GitHub HTTP authorization value before adding
|
|
16
|
+
`STYLEPROOF_MAP_STORE_TOKEN`, preventing GitHub from rejecting cold-cache
|
|
17
|
+
clones with `Duplicate header: "Authorization"` while retaining explicit-token
|
|
18
|
+
precedence over stale checkout credentials.
|
|
19
|
+
|
|
10
20
|
## [4.4.8] - 2026-07-13
|
|
11
21
|
|
|
12
22
|
### Fixed
|
package/dist/map-store.js
CHANGED
|
@@ -67,6 +67,10 @@ function effectiveGitHttpExtraHeaders(cwd) {
|
|
|
67
67
|
const mapStoreToken = process.env.STYLEPROOF_MAP_STORE_TOKEN;
|
|
68
68
|
if (mapStoreToken) {
|
|
69
69
|
return [
|
|
70
|
+
{
|
|
71
|
+
key: ['http.https:', '', 'github.com', '.extraheader'].join('/'),
|
|
72
|
+
value: '',
|
|
73
|
+
},
|
|
70
74
|
{
|
|
71
75
|
key: ['http.https:', '', 'github.com', '.extraheader'].join('/'),
|
|
72
76
|
value: `AUTHORIZATION: basic ${Buffer.from(`x-access-token:${mapStoreToken}`).toString('base64')}`,
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "styleproof",
|
|
3
|
-
"version": "4.4.
|
|
3
|
+
"version": "4.4.10",
|
|
4
4
|
"description": "Catch every CSS change before it ships — review PRs and certify refactors by the browser's computed styles, not pixels. Works with any styling system.",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"playwright",
|