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
4 changes: 2 additions & 2 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,13 +1,13 @@
# Changelog

## 0.7.4 - Unreleased
## 0.7.4 - 2026-07-04

### Fixes

- Fixed multi-workspace desktop/API sync scoping, fail-closed workspace authentication, workspace-qualified purges, and explicit watch workspace selection. Thanks @zm2231.
- Prevented unchanged desktop refreshes from duplicating message events and added preview-first retained-history compaction with `purge --keep-message-events`. Thanks @barbieri.
- Normalized relative runtime paths to absolute paths so commands can open databases created with `init --db <relative-path>`.
- Treat nullable optional message metadata as empty when reading historical archives.
- Treated nullable optional message metadata as empty when reading historical archives.

### Maintenance

Expand Down
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -87,20 +87,20 @@ brew install slacrawl
<summary>Linux packages from GitHub Releases</summary>

Download the package that matches your platform from the [latest release](https://github.com/openclaw/slacrawl/releases/latest).
Set `version` to the release you want to install (shown for `0.7.3`).
Set `version` to the release you want to install (shown for `0.7.4`).

Debian/Ubuntu:

```bash
version=0.7.3
version=0.7.4
curl -LO "https://github.com/openclaw/slacrawl/releases/download/v${version}/slacrawl_${version}_amd64.deb"
sudo dpkg -i "slacrawl_${version}_amd64.deb"
```

RHEL/Fedora:

```bash
version=0.7.3
version=0.7.4
curl -LO "https://github.com/openclaw/slacrawl/releases/download/v${version}/slacrawl-${version}-1.x86_64.rpm"
sudo rpm -i "slacrawl-${version}-1.x86_64.rpm"
```
Expand Down