Skip to content

ZamSync v1.1.1

Choose a tag to compare

@github-actions github-actions released this 15 Jun 08:18
· 64 commits to main since this release

ZamSync v1.1.1

Offline-first synchronization engine for intermittent-connectivity deployments.

Install

# Linux x86_64
curl -fsSL -o zamsync https://github.com/Etoile-Bleu/ZamSync/releases/download/v1.1.1/zamsync-linux-x86_64
chmod +x zamsync && sudo mv zamsync /usr/local/bin/

# Linux ARM64 (Raspberry Pi 4, AWS Graviton)
curl -fsSL -o zamsync https://github.com/Etoile-Bleu/ZamSync/releases/download/v1.1.1/zamsync-linux-aarch64
chmod +x zamsync && sudo mv zamsync /usr/local/bin/

# Linux ARMv7 (Raspberry Pi 2 / 3)
curl -fsSL -o zamsync https://github.com/Etoile-Bleu/ZamSync/releases/download/v1.1.1/zamsync-linux-armv7
chmod +x zamsync && sudo mv zamsync /usr/local/bin/

# Windows (PowerShell)
Invoke-WebRequest -Uri "https://github.com/Etoile-Bleu/ZamSync/releases/download/v1.1.1/zamsync-windows-x86_64.exe" -OutFile zamsync.exe

Docker

docker pull ghcr.io/$(echo 'Etoile-Bleu/ZamSync' | tr '[:upper:]' '[:lower:]'):v1.1.1
# or latest
docker pull ghcr.io/$(echo 'Etoile-Bleu/ZamSync' | tr '[:upper:]' '[:lower:]'):latest

Verify checksums

sha256sum -c SHA256SUMS.txt

What's Changed

  • feat(simulation): Vagrant + Ansible hospital network benchmark by @Etoile-Bleu in #35
  • feat(Phase 14): concurrent hub -- thread-per-peer with --max-peers cap by @Etoile-Bleu in #36
  • feat(Phase 13+14): Docker simulation + concurrent hub by @Etoile-Bleu in #37
  • feat(tests): Phase 10 -- complete test coverage gaps by @Etoile-Bleu in #39
  • feat(sim): fix Phase 14 A/B benchmark -- hub volume, serving_mode, event count by @Etoile-Bleu in #40
  • Add MIT LICENSE by @tyleruploads in #41

New Contributors

Full Changelog: v1.1.0...v1.1.1