Skip to content

Conversation

soerenschneider
Copy link
Owner

This PR contains the following updates:

Package Update Change
ghcr.io/gothenburgbitfactory/taskchampion-sync-server minor 0.6.1 -> 0.7.0

Warning

Some dependencies could not be looked up. Check the Dependency Dashboard for more information.


Release Notes

GothenburgBitFactory/taskchampion-sync-server (ghcr.io/gothenburgbitfactory/taskchampion-sync-server)

v0.7.0

Compare Source

What's Changed

Breaking Changes

Running the Docker image for this server without specifying DATA_DIR
in releases before this one defaulted to storing the server data in
/var/lib/taskchampion-sync-server. However, the Dockerfile only
specifies that the subdirectory /var/lib/taskchampion-sync-server/data
is a VOLUME. This change fixes the default to match the VOLUME, putting
the server data on an ephemeral volume or, if a --volume $NAME:/var/lib/taskchampion-sync-server/data argument is provided to
docker run, in a named volume.

Before this release, with default settings the server data is stored in
the container's ephemeral writeable layer. When the container is killed,
the data is lost. This issue does not affect deployments with docker compose, as the compose configuration specifies a correct DATA_DIR.

You can determine if your deployment is affected as follows. First,
determine the ID of the running server container, $CONTAINER. Examine
the volumes for that container:

$ docker container inspect $CONTAINER | jq '.[0].Config.Volumes'
{
  "/var/lib/task-champion-sync-server/data": {}
}

Next, find the server data, in a .sqlite3 file:

$ docker exec $CONTAINER find /var/lib/taskchampion-sync-server
/var/lib/taskchampion-sync-server
/var/lib/taskchampion-sync-server/data
/var/lib/taskchampion-sync-server/taskchampion-sync-server.sqlite3

If the data is not in a directory mounted as a volume, then it is
ephemeral. To copy the data out of the container:

docker cp $CONTAINER:/var/lib/taskchampion-sync-server/taskchampion-sync-server.sqlite3 /tmp

You may then upgrade the image and use docker cp to copy the data back
to the correct location, /var/lib/taskchampion-sync-server/data.

Note that, as long as all replicas are fully synced, the TaskChampion
sync protocol is resilient to loss of server data, so even if the server
data has been lost, task sync may continue to work.

New Contributors

Full Changelog: GothenburgBitFactory/taskchampion-sync-server@v0.6.1...v0.7.0


Configuration

📅 Schedule: Branch creation - At any time (no schedule defined), Automerge - At any time (no schedule defined).

🚦 Automerge: Disabled by config. Please merge this manually once you are satisfied.

Rebasing: Whenever PR is behind base branch, or you tick the rebase/retry checkbox.

🔕 Ignore: Close this PR and you won't be reminded about this update again.


  • If you want to rebase/retry this PR, check this box

This PR has been generated by Renovate Bot.

@soerenschneider soerenschneider self-assigned this Jul 31, 2025
@soerenschneider soerenschneider force-pushed the renovate/ghcr.io-gothenburgbitfactory-taskchampion-sync-server-0.x branch 2 times, most recently from 898f418 to 78e2ae4 Compare August 6, 2025 08:18
@soerenschneider soerenschneider force-pushed the renovate/ghcr.io-gothenburgbitfactory-taskchampion-sync-server-0.x branch 3 times, most recently from 98fd714 to 505977b Compare August 14, 2025 08:23
@soerenschneider soerenschneider force-pushed the renovate/ghcr.io-gothenburgbitfactory-taskchampion-sync-server-0.x branch 6 times, most recently from 8c8ee2c to 972ec8c Compare August 22, 2025 08:26
@soerenschneider soerenschneider force-pushed the renovate/ghcr.io-gothenburgbitfactory-taskchampion-sync-server-0.x branch 2 times, most recently from cffc306 to 02d9f15 Compare August 26, 2025 08:20
@soerenschneider soerenschneider changed the title chore(deps): update ghcr.io/gothenburgbitfactory/taskchampion-sync-server docker tag to v0.7.0 Update ghcr.io/gothenburgbitfactory/taskchampion-sync-server Docker tag to v0.7.0 Aug 26, 2025
@soerenschneider soerenschneider force-pushed the renovate/ghcr.io-gothenburgbitfactory-taskchampion-sync-server-0.x branch from 02d9f15 to ed39165 Compare August 26, 2025 18:57
@soerenschneider soerenschneider changed the title Update ghcr.io/gothenburgbitfactory/taskchampion-sync-server Docker tag to v0.7.0 chore(deps): update ghcr.io/gothenburgbitfactory/taskchampion-sync-server docker tag to v0.7.0 Aug 26, 2025
@soerenschneider soerenschneider force-pushed the renovate/ghcr.io-gothenburgbitfactory-taskchampion-sync-server-0.x branch 5 times, most recently from 001c5e9 to 5c108a6 Compare September 3, 2025 04:54
@soerenschneider soerenschneider force-pushed the renovate/ghcr.io-gothenburgbitfactory-taskchampion-sync-server-0.x branch 3 times, most recently from f33b9a4 to 50d1a4b Compare September 8, 2025 08:21
@soerenschneider soerenschneider force-pushed the renovate/ghcr.io-gothenburgbitfactory-taskchampion-sync-server-0.x branch 5 times, most recently from e622594 to 72ac541 Compare September 16, 2025 08:22
@soerenschneider soerenschneider force-pushed the renovate/ghcr.io-gothenburgbitfactory-taskchampion-sync-server-0.x branch 5 times, most recently from cfb90f1 to 13f686e Compare September 19, 2025 04:23
@soerenschneider soerenschneider force-pushed the renovate/ghcr.io-gothenburgbitfactory-taskchampion-sync-server-0.x branch from 13f686e to 688059c Compare September 19, 2025 08:22
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

2 participants