Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 4 additions & 4 deletions CONTRIBUTING.md
Original file line number Diff line number Diff line change
Expand Up @@ -71,8 +71,8 @@ goreleaser release --snapshot --clean

```sh
# Set variables (fish shell)
set VERSION v1.2.1
set ANYTYPE_UNIX_TIMESTAMP 1765360602
set VERSION v1.3.0
set ANYTYPE_UNIX_TIMESTAMP 1769866558
set ANYTYPE_FORMATTED (date -r $ANYTYPE_UNIX_TIMESTAMP +'%Y-%m-%d')
set FINAL_VERSION $VERSION-$ANYTYPE_FORMATTED

Expand All @@ -85,8 +85,8 @@ git push origin tag $FINAL_VERSION

`v[bundle-version]-[anytype-compatibility-date]`

- `v1.2.1` – Bundle's semantic version (SemVer)
- `2025-12-10` – Anytype any-sync compatibility version from [anytype.io](https://puppetdoc.anytype.io/api/v1/prod-any-sync-compatible-versions/)
- `v1.3.0` – Bundle's semantic version (SemVer)
- `2026-01-31` – Anytype any-sync compatibility version from [anytype.io](https://puppetdoc.anytype.io/api/v1/prod-any-sync-compatible-versions/)

---

Expand Down
12 changes: 6 additions & 6 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ docker run -d \
-p 33020:33020/udp \
-v $(pwd)/data:/data \
--restart unless-stopped \
ghcr.io/grishy/any-sync-bundle:1.2.1-2025-12-10
ghcr.io/grishy/any-sync-bundle:1.3.0-2026-01-31
```

After the first run, import `./data/client-config.yml` into Anytype apps.
Expand Down Expand Up @@ -69,12 +69,12 @@ After the first run, import `./data/client-config.yml` into Anytype apps.

### Version

Current version: **`v1.2.1-2025-12-10`**
Current version: **`v1.3.0-2026-01-31`**

Format: `v[bundle-version]-[anytype-compatibility-date]`

- `v1.2.1` – Bundle's semantic version (SemVer)
- `2025-12-10` – Anytype any-sync compatibility date from [anytype.io](https://puppetdoc.anytype.io/api/v1/prod-any-sync-compatible-versions/)
- `v1.3.0` – Bundle's semantic version (SemVer)
- `2026-01-31` – Anytype any-sync compatibility date from [anytype.io](https://puppetdoc.anytype.io/api/v1/prod-any-sync-compatible-versions/)

> Compatibility: From 1.x onward we follow SemVer; 1.x upgrades are non‑breaking.

Expand All @@ -84,8 +84,8 @@ Format: `v[bundle-version]-[anytype-compatibility-date]`

| Image Tag | Description |
| --------------------------------------------------------- | ----------------------------------- |
| `ghcr.io/grishy/any-sync-bundle:1.2.1-2025-12-10` | All-in-one (embedded MongoDB/Redis) |
| `ghcr.io/grishy/any-sync-bundle:1.2.1-2025-12-10-minimal` | Minimal (external MongoDB/Redis) |
| `ghcr.io/grishy/any-sync-bundle:1.3.0-2026-01-31` | All-in-one (embedded MongoDB/Redis) |
| `ghcr.io/grishy/any-sync-bundle:1.3.0-2026-01-31-minimal` | Minimal (external MongoDB/Redis) |

Latest tags (`:latest`, `:minimal`) are available, but explicit version tags are recommended.

Expand Down
2 changes: 1 addition & 1 deletion compose.aio.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@

services:
any-sync-bundle:
image: ghcr.io/grishy/any-sync-bundle:1.2.1-2025-12-10
image: ghcr.io/grishy/any-sync-bundle:1.3.0-2026-01-31
container_name: any-sync-bundle-aio
restart: unless-stopped
ports:
Expand Down
2 changes: 1 addition & 1 deletion compose.external.yml
Original file line number Diff line number Diff line change
Expand Up @@ -61,7 +61,7 @@ services:
start_period: 5s

any-sync-bundle:
image: ghcr.io/grishy/any-sync-bundle:1.2.1-2025-12-10-minimal
image: ghcr.io/grishy/any-sync-bundle:1.3.0-2026-01-31-minimal
container_name: any-sync-bundle
restart: unless-stopped
depends_on:
Expand Down
2 changes: 1 addition & 1 deletion compose.s3.yml
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@ services:
"

any-sync-bundle:
image: ghcr.io/grishy/any-sync-bundle:1.2.1-2025-12-10
image: ghcr.io/grishy/any-sync-bundle:1.3.0-2026-01-31
container_name: any-sync-bundle-aio
restart: unless-stopped
depends_on:
Expand Down
2 changes: 1 addition & 1 deletion compose.traefik.yml
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ services:
- /var/run/docker.sock:/var/run/docker.sock:ro

any-sync-bundle:
image: ghcr.io/grishy/any-sync-bundle:1.2.1-2025-12-10
image: ghcr.io/grishy/any-sync-bundle:1.3.0-2026-01-31
container_name: any-sync-bundle-aio
restart: unless-stopped
environment:
Expand Down
4 changes: 2 additions & 2 deletions flake.nix
Original file line number Diff line number Diff line change
Expand Up @@ -44,11 +44,11 @@
{
packages.default = (pkgs.buildGoModule.override { go = pkgs.go_1_25; }) rec {
pname = "any-sync-bundle";
version = "v1.2.1-2025-12-10";
version = "v1.3.0-2026-01-31";

src = ./.;

vendorHash = "sha256-vQqiObn/r3lY4VPTXI4cLCtTbYzGpXNaZrkkqhUglpo=";
vendorHash = "sha256-IUAticFP900vVNRlnU/fzScg1/AIXjux0XuXMYFq0gQ=";

env.CGO_ENABLED = 0;

Expand Down
48 changes: 24 additions & 24 deletions go.mod
Original file line number Diff line number Diff line change
Expand Up @@ -5,16 +5,16 @@ go 1.25
tool github.com/matryer/moq

// Source: https://puppetdoc.anytype.io/api/v1/prod-any-sync-compatible-versions/
// Current timestamp: "1765360602"
// Current timestamp: "1769866558"
require (
github.com/anyproto/any-sync-consensusnode v0.6.2
github.com/anyproto/any-sync-coordinator v0.8.1
github.com/anyproto/any-sync-filenode v0.10.1
github.com/anyproto/any-sync-node v0.10.1
github.com/anyproto/any-sync-coordinator v0.8.3
github.com/anyproto/any-sync-filenode v0.10.3
github.com/anyproto/any-sync-node v0.10.2
)

require (
github.com/anyproto/any-sync v0.11.4
github.com/anyproto/any-sync v0.11.11
github.com/dgraph-io/badger/v4 v4.9.0
github.com/ipfs/go-block-format v0.2.3
github.com/ipfs/go-cid v0.6.0
Expand All @@ -24,7 +24,7 @@ require (
github.com/testcontainers/testcontainers-go/modules/mongodb v0.40.0
github.com/testcontainers/testcontainers-go/modules/redis v0.40.0
github.com/urfave/cli/v2 v2.27.7
go.mongodb.org/mongo-driver v1.17.6
go.mongodb.org/mongo-driver v1.17.7
go.uber.org/zap v1.27.1
gopkg.in/mgo.v2 v2.0.0-20190816093944-a6b53ec6cb22
gopkg.in/yaml.v3 v3.0.1
Expand All @@ -37,9 +37,10 @@ require (
github.com/Microsoft/go-winio v0.6.2 // indirect
github.com/OneOfOne/xxhash v1.2.8 // indirect
github.com/akrylysov/pogreb v0.10.3-0.20240803013244-523613e335e9 // indirect
github.com/anyproto/any-store v0.4.3 // indirect
github.com/anyproto/any-store v0.4.6 // indirect
github.com/anyproto/go-bip39 v1.0.0 // indirect
github.com/anyproto/go-chash v0.1.0 // indirect
github.com/anyproto/go-slip10 v1.0.1-0.20250818123350-f910c27dd080 // indirect
github.com/anyproto/go-slip10 v1.0.1 // indirect
github.com/anyproto/go-slip21 v1.0.0 // indirect
github.com/anyproto/go-sqlite v1.4.2-any // indirect
github.com/anyproto/lexid v0.0.6 // indirect
Expand Down Expand Up @@ -76,9 +77,9 @@ require (
github.com/go-logr/logr v1.4.3 // indirect
github.com/go-logr/stdr v1.2.2 // indirect
github.com/go-ole/go-ole v1.2.6 // indirect
github.com/go-redsync/redsync/v4 v4.14.0 // indirect
github.com/go-redsync/redsync/v4 v4.15.0 // indirect
github.com/gobwas/glob v0.2.3 // indirect
github.com/goccy/go-graphviz v0.2.9 // indirect
github.com/goccy/go-graphviz v0.2.10 // indirect
github.com/gogo/protobuf v1.3.2 // indirect
github.com/golang/freetype v0.0.0-20170609003504-e2365dfdc4a0 // indirect
github.com/golang/snappy v1.0.0 // indirect
Expand All @@ -94,7 +95,7 @@ require (
github.com/klauspost/compress v1.18.0 // indirect
github.com/klauspost/cpuid/v2 v2.3.0 // indirect
github.com/libp2p/go-buffer-pool v0.1.0 // indirect
github.com/libp2p/go-libp2p v0.45.0 // indirect
github.com/libp2p/go-libp2p v0.47.0 // indirect
github.com/lufia/plan9stats v0.0.0-20211012122336-39d0f177ccd0 // indirect
github.com/magiconair/properties v1.8.10 // indirect
github.com/matryer/moq v0.6.0 // indirect
Expand Down Expand Up @@ -130,18 +131,17 @@ require (
github.com/prometheus/client_model v0.6.2 // indirect
github.com/prometheus/common v0.66.1 // indirect
github.com/prometheus/procfs v0.17.0 // indirect
github.com/quic-go/quic-go v0.56.0 // indirect
github.com/redis/go-redis/v9 v9.17.0 // indirect
github.com/quic-go/quic-go v0.59.0 // indirect
github.com/redis/go-redis/v9 v9.17.3 // indirect
github.com/remyoudompheng/bigfft v0.0.0-20230129092748-24d4a6f8daec // indirect
github.com/russross/blackfriday/v2 v2.1.0 // indirect
github.com/shirou/gopsutil/v4 v4.25.6 // indirect
github.com/sirupsen/logrus v1.9.3 // indirect
github.com/spaolacci/murmur3 v1.1.0 // indirect
github.com/tetratelabs/wazero v1.8.1 // indirect
github.com/tetratelabs/wazero v1.10.1 // indirect
github.com/tklauser/go-sysconf v0.3.12 // indirect
github.com/tklauser/numcpus v0.6.1 // indirect
github.com/tyler-smith/go-bip39 v1.1.0 // indirect
github.com/valyala/fastjson v1.6.4 // indirect
github.com/valyala/fastjson v1.6.7 // indirect
github.com/xdg-go/pbkdf2 v1.0.0 // indirect
github.com/xdg-go/scram v1.1.2 // indirect
github.com/xdg-go/stringprep v1.0.4 // indirect
Expand All @@ -158,17 +158,17 @@ require (
go.uber.org/atomic v1.11.0 // indirect
go.uber.org/multierr v1.11.0 // indirect
go.yaml.in/yaml/v2 v2.4.3 // indirect
golang.org/x/crypto v0.44.0 // indirect
golang.org/x/crypto v0.47.0 // indirect
golang.org/x/exp v0.0.0-20251023183803-a4bb9ffd2546 // indirect
golang.org/x/image v0.21.0 // indirect
golang.org/x/mod v0.30.0 // indirect
golang.org/x/net v0.47.0 // indirect
golang.org/x/sync v0.18.0 // indirect
golang.org/x/sys v0.38.0 // indirect
golang.org/x/text v0.31.0 // indirect
golang.org/x/mod v0.32.0 // indirect
golang.org/x/net v0.49.0 // indirect
golang.org/x/sync v0.19.0 // indirect
golang.org/x/sys v0.40.0 // indirect
golang.org/x/text v0.33.0 // indirect
golang.org/x/time v0.14.0 // indirect
golang.org/x/tools v0.39.0 // indirect
google.golang.org/protobuf v1.36.10 // indirect
golang.org/x/tools v0.41.0 // indirect
google.golang.org/protobuf v1.36.11 // indirect
lukechampine.com/blake3 v1.4.1 // indirect
modernc.org/libc v1.66.8 // indirect
modernc.org/mathutil v1.7.1 // indirect
Expand Down
Loading
Loading