Skip to content

Commit 8752bd2

Browse files
committed
release: v0.3.0
1 parent 6fe1ce5 commit 8752bd2

4 files changed

Lines changed: 15 additions & 3 deletions

File tree

CHANGELOG.md

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,10 +4,22 @@ All notable changes to `discrawl` will be documented in this file.
44

55
## Unreleased
66

7+
- Nothing yet.
8+
9+
## 0.3.0 - 2026-04-21
10+
711
- `sync --all` now bypasses `default_guild_id` so one run can fan out across every discovered guild without clearing the single-guild default first
812
- `sync --full` no longer aborts when forum thread discovery hits Discord `403 Missing Access`; inaccessible channels are skipped and marked unavailable while accessible channels continue syncing
913
- startup now validates and stamps SQLite schema version via `PRAGMA user_version`, and fails fast if the local DB schema is newer than the running binary
1014
- `init --from-openclaw` now supports `--account`, and OpenClaw token fields can use `${ENV_VAR}` placeholders
15+
- git-backed archive sharing can now export/import compressed JSONL snapshots with manifests, subscribe to a Git repo as the data source, and run in git-only mode without Discord credentials
16+
- `messages`, `search`, and reports can automatically refresh stale git-backed data, preferring the Git snapshot before falling back to live Discord when both sources are configured
17+
- the Discord backup publisher workflow now syncs latest messages, publishes the archive to a private GitHub repo, serializes concurrent runs, validates required secrets, and skips the member crawl for faster updates
18+
- the backup report workflow now updates README activity stats, supports OpenClaw-generated field notes, runs the field-note logic from the backup action, and keeps those queries bounded with process timeouts
19+
- `sync --latest-only` adds a lightweight refresh path for checking recent Discord messages without doing a full historical crawl
20+
- repository imports now skip expensive rebuilds when the snapshot manifest is already current, and GitHub Actions persist the warmed SQLite database across runs
21+
- the Docker git-source smoke test now verifies that a fresh install can subscribe to a repository-only archive and query messages, SQL, and reports
22+
- CI now uses Go 1.26.2, `actions/setup-go` 6.4.0, cache actions 5.0.5, Node 24 for report generation, and refreshed SQLite dependencies
1123

1224
## 0.2.0 - 2026-03-26
1325

internal/cli/cli_test.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ func TestHelpAndVersion(t *testing.T) {
2929

3030
out.Reset()
3131
require.NoError(t, Run(context.Background(), []string{"--version"}, &out, &bytes.Buffer{}))
32-
require.Contains(t, out.String(), "0.2.0")
32+
require.Contains(t, out.String(), "0.3.0")
3333

3434
err := Run(context.Background(), []string{"bogus"}, &out, &bytes.Buffer{})
3535
require.Equal(t, 2, ExitCode(err))

internal/cli/version.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
package cli
22

3-
var version = "0.2.0"
3+
var version = "0.3.0"

scripts/docker-git-source-smoke.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -61,7 +61,7 @@ docker run --rm \
6161
cd /src
6262
go install ./cmd/discrawl
6363
discrawl=/work/bin/discrawl
64-
"$discrawl" --version | grep -q "0.2.0"
64+
"$discrawl" --version | grep -q "0.3.0"
6565
"$discrawl" --config /work/config.toml subscribe --repo /work/share file:///backup > /work/subscribe.out
6666
"$discrawl" --config /work/config.toml search "docker smoke archive" | tee /work/search.out
6767
grep -q "docker smoke archive is queryable" /work/search.out

0 commit comments

Comments
 (0)