claude-nomad 0.58.0 → 0.58.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 +7 -0
- package/dist/nomad.mjs +7 -6
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,12 @@
|
|
|
1
1
|
# Changelog
|
|
2
2
|
|
|
3
|
+
## [0.58.1](https://github.com/funkadelic/claude-nomad/compare/v0.58.0...v0.58.1) (2026-07-11)
|
|
4
|
+
|
|
5
|
+
|
|
6
|
+
### Fixed
|
|
7
|
+
|
|
8
|
+
* **sync:** distinguish push/pull/sync summary headers ([#396](https://github.com/funkadelic/claude-nomad/issues/396)) ([e88a3d6](https://github.com/funkadelic/claude-nomad/commit/e88a3d61eaeedd5c6ab7c8d85c3c3e201226e430))
|
|
9
|
+
|
|
3
10
|
## [0.58.0](https://github.com/funkadelic/claude-nomad/compare/v0.57.1...v0.58.0) (2026-07-11)
|
|
4
11
|
|
|
5
12
|
|
package/dist/nomad.mjs
CHANGED
|
@@ -5592,7 +5592,7 @@ function syncedSections(st) {
|
|
|
5592
5592
|
];
|
|
5593
5593
|
}
|
|
5594
5594
|
function summarySection(st) {
|
|
5595
|
-
const s = section("
|
|
5595
|
+
const s = section("Push summary");
|
|
5596
5596
|
const unmapped = st.remap.unmapped + st.extras.unmapped;
|
|
5597
5597
|
addItem(s, summaryRow("push", unmapped, st.remap.collisions, st.extras.skipped));
|
|
5598
5598
|
return s;
|
|
@@ -6502,6 +6502,7 @@ function recoverForceRemote(mode, repo) {
|
|
|
6502
6502
|
init_utils();
|
|
6503
6503
|
init_utils_fs();
|
|
6504
6504
|
init_utils_json();
|
|
6505
|
+
var PULL_SUMMARY_HEADER = "Pull summary";
|
|
6505
6506
|
function captureHead(repo) {
|
|
6506
6507
|
try {
|
|
6507
6508
|
return gitCaptureRaw(["rev-parse", "HEAD"], repo).trim();
|
|
@@ -6523,7 +6524,7 @@ function buildWetPullSections(ts, map, prePostHeads) {
|
|
|
6523
6524
|
const remapResult = withSpinner("Syncing sessions", () => remapPull(ts));
|
|
6524
6525
|
const extrasResult = remapExtrasPull(ts, { prePostHeads });
|
|
6525
6526
|
const localOnly = scanLocalOnly();
|
|
6526
|
-
const summary = section(
|
|
6527
|
+
const summary = section(PULL_SUMMARY_HEADER);
|
|
6527
6528
|
addItem(
|
|
6528
6529
|
summary,
|
|
6529
6530
|
summaryRow(
|
|
@@ -7154,7 +7155,7 @@ init_utils_fs();
|
|
|
7154
7155
|
init_utils_json();
|
|
7155
7156
|
function pullHasNoSyncedItems(sections) {
|
|
7156
7157
|
return sections.every(
|
|
7157
|
-
(s) => s.header === "Settings" || s.header ===
|
|
7158
|
+
(s) => s.header === "Settings" || s.header === PULL_SUMMARY_HEADER || s.items.length === 0
|
|
7158
7159
|
);
|
|
7159
7160
|
}
|
|
7160
7161
|
function isNoopSync(pull, pushOutcome) {
|
|
@@ -7164,7 +7165,7 @@ function isNoopSync(pull, pushOutcome) {
|
|
|
7164
7165
|
return pullHasNoSyncedItems(pull.sections);
|
|
7165
7166
|
}
|
|
7166
7167
|
function pullPhrase(pull) {
|
|
7167
|
-
const summary = pull.sections.find((s) => s.header ===
|
|
7168
|
+
const summary = pull.sections.find((s) => s.header === PULL_SUMMARY_HEADER);
|
|
7168
7169
|
return summary?.items[0] ?? "applied";
|
|
7169
7170
|
}
|
|
7170
7171
|
function reconciledNotes(pull) {
|
|
@@ -7178,7 +7179,7 @@ function reconciledNotes(pull) {
|
|
|
7178
7179
|
return notes;
|
|
7179
7180
|
}
|
|
7180
7181
|
function buildSyncSummarySection(pull, pushOutcome) {
|
|
7181
|
-
const s = section("
|
|
7182
|
+
const s = section("Sync summary");
|
|
7182
7183
|
if (!pushOutcome.ok) {
|
|
7183
7184
|
addItem(s, `pull: applied, push: failed (${pushOutcome.message})`);
|
|
7184
7185
|
return s;
|
|
@@ -7868,7 +7869,7 @@ function parseSyncArgs(argv) {
|
|
|
7868
7869
|
// package.json
|
|
7869
7870
|
var package_default = {
|
|
7870
7871
|
name: "claude-nomad",
|
|
7871
|
-
version: "0.58.
|
|
7872
|
+
version: "0.58.1",
|
|
7872
7873
|
type: "module",
|
|
7873
7874
|
description: "Sync Claude Code config (~/.claude/) across machines via a private Git repo, with path remapping and per-host settings overrides.",
|
|
7874
7875
|
keywords: [
|
package/package.json
CHANGED