styleproof 4.4.4 → 4.4.5
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 +2 -2
- package/dist/map-store.js +1 -1
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -11,8 +11,8 @@ this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.htm
|
|
|
11
11
|
|
|
12
12
|
- **Map-store uploads now reuse credentials from `actions/checkout@v7`.**
|
|
13
13
|
Checkout v7 keeps its HTTP header in an included temporary config rather than
|
|
14
|
-
directly in `.git/config`; StyleProof now
|
|
15
|
-
carrying that header into its isolated clone and push.
|
|
14
|
+
directly in `.git/config`; StyleProof now explicitly enables Git config includes
|
|
15
|
+
before carrying that header into its isolated clone and push.
|
|
16
16
|
- **Map-store uploads now reuse the HTTP authentication persisted by
|
|
17
17
|
`actions/checkout`.** The isolated `styleproof-maps` clone carries the
|
|
18
18
|
checkout's URL-scoped extra header through clone and push, so cache-miss
|
package/dist/map-store.js
CHANGED
|
@@ -53,7 +53,7 @@ function runGit(cwd, args, maxBuffer = 1 << 28) {
|
|
|
53
53
|
return spawnSync('git', args, { cwd, encoding: 'utf8', maxBuffer, env: gitProcessEnvironment() });
|
|
54
54
|
}
|
|
55
55
|
function effectiveGitHttpExtraHeaders(cwd) {
|
|
56
|
-
const configuredHeaders = runGit(cwd, ['config', '--get-regexp', '^http\\..*\\.extraheader$'], 1 << 20);
|
|
56
|
+
const configuredHeaders = runGit(cwd, ['config', '--includes', '--get-regexp', '^http\\..*\\.extraheader$'], 1 << 20);
|
|
57
57
|
if (configuredHeaders.status !== 0)
|
|
58
58
|
return [];
|
|
59
59
|
return configuredHeaders.stdout
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "styleproof",
|
|
3
|
-
"version": "4.4.
|
|
3
|
+
"version": "4.4.5",
|
|
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",
|