styleproof 4.4.10 → 4.4.11

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 CHANGED
@@ -7,6 +7,15 @@ this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.htm
7
7
 
8
8
  ## [Unreleased]
9
9
 
10
+ ## [4.4.11] - 2026-07-13
11
+
12
+ ### Fixed
13
+
14
+ - **Map-store pushes now receive workflow authentication directly.** The final
15
+ `git push` uses the same explicit reset-and-token arguments as the isolated
16
+ clone, so temporary sparse-checkout config cannot drop the Actions token after
17
+ a successful cold-cache capture.
18
+
10
19
  ## [4.4.10] - 2026-07-13
11
20
 
12
21
  ### Fixed
package/dist/map-store.js CHANGED
@@ -495,6 +495,10 @@ export function publishMapBundle(options) {
495
495
  const sha = safeSegment(manifest.sha, 'sha');
496
496
  const compatibilityKey = safeSegment(manifest.compatibilityKey, 'compatibility key');
497
497
  const target = `${sha}/${compatibilityKey}`;
498
+ const pushAuthenticationArguments = effectiveGitHttpExtraHeaders(cwd).flatMap(({ key, value }) => [
499
+ '-c',
500
+ `${key}=${value}`,
501
+ ]);
498
502
  let ok = false;
499
503
  let lastError = '';
500
504
  for (let attempt = 1; attempt <= 5; attempt++) {
@@ -510,7 +514,7 @@ export function publishMapBundle(options) {
510
514
  }
511
515
  runGit(tmp, ['add', '-A', '--sparse', '--', 'README.md', target]);
512
516
  runGit(tmp, ['commit', '-q', '-m', `StyleProof map ${sha.slice(0, 12)} ${compatibilityKey}`], 1 << 20);
513
- const push = runGit(tmp, ['push', '-q', 'origin', `HEAD:${branch}`], 1 << 20);
517
+ const push = runGit(tmp, [...pushAuthenticationArguments, 'push', '-q', 'origin', `HEAD:${branch}`], 1 << 20);
514
518
  if (push.status === 0) {
515
519
  ok = true;
516
520
  break;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "styleproof",
3
- "version": "4.4.10",
3
+ "version": "4.4.11",
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",