gitdone-agent 0.8.10 → 0.8.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.
Files changed (2) hide show
  1. package/index.js +2 -2
  2. package/package.json +1 -1
package/index.js CHANGED
@@ -31,7 +31,7 @@ import { randomUUID, createHash } from 'node:crypto'
31
31
  // Reported to the server on every sync so the web UI can flag outdated agents.
32
32
  // Keep in lockstep with packages/agent/package.json. The server's offline
33
33
  // fallback is bumped only after this release has actually reached npm.
34
- const AGENT_VERSION = '0.8.10'
34
+ const AGENT_VERSION = '0.8.11'
35
35
 
36
36
  const AGENT_DIR = join(homedir(), '.gitdone-agent')
37
37
  const CONFIG_PATH = join(AGENT_DIR, 'config.json')
@@ -832,7 +832,7 @@ function authUrl(auth) {
832
832
  // A push rejected because the remote branch moved ahead of us (someone else
833
833
  // pushed in the meantime). Git prints "non-fast-forward" / "fetch first" /
834
834
  // "tip of your current branch is behind". We recover by pulling+rebasing.
835
- const NON_FAST_FORWARD = /non-fast-forward|fetch first|tip of your current branch is behind|failed to push some refs/i
835
+ const NON_FAST_FORWARD = /non-fast-forward|fetch first|tip of your current branch is behind|updates were rejected because the remote contains work|remote contains work that you do not have locally/i
836
836
 
837
837
  // Point the local remote-tracking ref (e.g. refs/remotes/origin/master) at the
838
838
  // commit we just synced. We push/pull through the ad-hoc token URL, and — unlike
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "gitdone-agent",
3
- "version": "0.8.10",
3
+ "version": "0.8.11",
4
4
  "description": "Local gitDone companion for repository and optional World of Warcraft progress sync",
5
5
  "type": "module",
6
6
  "files": [