Skip to content

Commit e4b9785

Browse files
authored
chore(release): v0.5.1 (#65)
Bumps workspace + 5 path-dep pins from 0.5.1-dev to 0.5.1, regenerates Cargo.lock + openapi.json, updates README docker-pull examples to 0.5.1. Promotes #62 (companion_insights_snapshot), #63 (filter_triggers config-as-declared), #64 (NFT-ownership stack teardown, BREAKING — migration 0023).
1 parent d6d736c commit e4b9785

38 files changed

Lines changed: 1149 additions & 2461 deletions

Cargo.lock

Lines changed: 16 additions & 25 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Cargo.toml

Lines changed: 1 addition & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ resolver = "2"
33
members = ["crates/*"]
44

55
[workspace.package]
6-
version = "0.5.0"
6+
version = "0.5.1"
77
edition = "2021"
88
license = "AGPL-3.0-only"
99
repository = "https://github.com/etherfunlab/eros-engine"
@@ -31,11 +31,6 @@ utoipa-scalar = { version = "0.3", features = ["axum"] }
3131
jsonwebtoken = "9"
3232
tower = "0.5"
3333
tower-http = { version = "0.6", features = ["trace", "cors"] }
34-
bs58 = "0.5"
35-
hmac = "0.12"
36-
sha2 = "0.10"
37-
subtle = "2.5"
38-
hex = "0.4"
3934
eventsource-stream = "0.2"
4035
futures-util = "0.3"
4136
tokio-stream = "0.1"

README.md

Lines changed: 13 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -133,7 +133,7 @@ eros-engine-llm = "0.4" # only if you want the OpenRouter + Voyage clients
133133
`linux/amd64` images for `eros-engine-server` are published to GitHub Container Registry on every `v*` tag (need arm64? build it yourself from `docker/Dockerfile`):
134134

135135
```bash
136-
docker pull ghcr.io/etherfunlab/eros-engine:0.5.0
136+
docker pull ghcr.io/etherfunlab/eros-engine:0.5.1
137137
# or track the latest tagged release
138138
docker pull ghcr.io/etherfunlab/eros-engine:latest
139139
```
@@ -142,7 +142,7 @@ Minimal run (you bring Postgres + your own `.env`):
142142

143143
```bash
144144
docker run --rm -p 8080:8080 --env-file .env \
145-
ghcr.io/etherfunlab/eros-engine:0.5.0 serve
145+
ghcr.io/etherfunlab/eros-engine:0.5.1 serve
146146
```
147147

148148
The `docker/Dockerfile` is the same artifact used to build this image. Deploy it on any container host.
@@ -238,16 +238,22 @@ for frame layout and error semantics.
238238
| `OPENROUTER_APP_TITLE` | no | When set, sent as `X-Title`. Display name in OpenRouter app analytics. Pairs with `OPENROUTER_APP_REFERER`; both optional. |
239239
| `OPENROUTER_USAGE_HIDDEN_KEYS` | no | Comma-separated list of top-level keys to strip from the `usage` object on the SSE streaming `done` frame. Useful for hiding wholesale `cost` / `cost_details` from downstream customers. The full usage is still persisted and traced server-side. |
240240
| `VOYAGE_API_KEY` | yes | Embeddings. Empty keys fail server boot. |
241-
| `SUPABASE_URL` | no | Supabase project URL. Kept in `.env.example` for client/deploy conventions; the server does not read it today. |
242-
| `SUPABASE_JWT_SECRET` | yes | JWT signing secret for default auth. |
241+
| `SUPABASE_URL` | no | Supabase project URL. When set, the server derives the JWKS endpoint (`<url>/auth/v1/.well-known/jwks.json`) for asymmetric (RS256/ES256) JWT validation — the post-2025 Supabase default. |
242+
| `SUPABASE_JWKS_URL` | no | Explicit JWKS endpoint; takes precedence over deriving it from `SUPABASE_URL`. |
243+
| `SUPABASE_JWT_SECRET` | no | Legacy HS256 shared secret. At least one auth source — `SUPABASE_URL` / `SUPABASE_JWKS_URL` (JWKS) or `SUPABASE_JWT_SECRET` (HS256) — must be set, or the server refuses to boot (fail-closed). |
243244
| `BIND_ADDR` | no | Defaults to `0.0.0.0:8080`. |
244245
| `EXPOSE_AFFINITY_DEBUG` | no | Set `true` to enable `/comp/affinity/{session_id}`. |
245246
| `EMA_INERTIA` | no | EMA smoothing for affinity updates, in `[0, 1]`; defaults to `0.8`. Each turn applies `1 − inertia` of the evaluated delta, so a higher value moves the affinity vector less per turn (slower to build or lose) — a relationship-difficulty dial; `0` applies every delta in full. |
247+
| `DEMO_EMA_INERTIA` | no | EMA inertia applied only to sessions opened with `is_demo: true`; defaults to `0.3` so meters move visibly across a short demo. Falls back to `EMA_INERTIA` semantics otherwise. |
248+
| `DREAMING_DISABLED` | no | Set `1` to skip spawning the dreaming-lite sweeper (session-end memory extraction). |
249+
| `DREAMING_TICK_SECS` | no | How often the dreaming-lite sweeper wakes; defaults to `300`. |
250+
| `DREAMING_IDLE_SECS` | no | Minimum idle time before a session is eligible for classification; defaults to `1800`. |
251+
| `DREAMING_CLAIM_STALE_SECS` | no | How long a classification claim stays fresh before a crashed worker's row is re-claimed; defaults to `600`. |
252+
| `SNAPSHOT_DISABLED` | no | Set `1` to skip spawning the `companion_insights_snapshot` sweeper. |
253+
| `SNAPSHOT_CRON` | no | 6-field cron (`sec min hr dom mon dow`) for the snapshot sweeper; defaults to `0 0 23 * * *` (daily 23:00). |
254+
| `SNAPSHOT_TZ` | no | IANA timezone the snapshot cron is evaluated in; defaults to `Asia/Singapore`. |
246255
| `MODEL_CONFIG_PATH` | no | Defaults to `examples/model_config.toml`. |
247256
| `RUST_LOG` | no | Defaults to `info`. |
248-
| `MARKETPLACE_SVC_URL` | no | Base URL of eros-marketplace-svc. When set, the engine pulls /since cursors every 5 min as a self-heal recovery path. Requires `MARKETPLACE_SVC_S2S_SECRET`. |
249-
| `MARKETPLACE_SVC_S2S_SECRET` | no | HMAC secret shared with eros-marketplace-svc. Gates the `/s2s/*` routes the svc pushes into. Without it, `/s2s/*` always 401s. |
250-
| `MARKETPLACE_SVC_S2S_SECRET_PREVIOUS` | no | Verify-only secret used during rolling rotation. Engine accepts requests signed with either current or previous secret; outbound calls always sign with current. |
251257

252258
## What is deliberately out of scope
253259

crates/eros-engine-llm/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ keywords = ["companion", "openrouter", "voyage", "embeddings", "llm"]
1212
categories = ["api-bindings"]
1313

1414
[dependencies]
15-
eros-engine-core = { path = "../eros-engine-core", version = "0.5.0" }
15+
eros-engine-core = { path = "../eros-engine-core", version = "0.5.1" }
1616
serde = { workspace = true }
1717
serde_json = { workspace = true }
1818
reqwest = { workspace = true }

0 commit comments

Comments
 (0)