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

## 0.7.0 (2026-06-02)

### Added
- `cli/aegis.mjs` and the `aegis` package binary, including quick-start connection handling and executor override support for terminal demos. (aegis-oss#55)
- `/chat/ws`, `ChatSession`, and `ChatSessionAuth` primitives for websocket-backed chat sessions, plus schema/configuration docs and tests. (aegis-oss#55)
- Standalone chat shell UI support and a disambiguation firewall for safer routing and demo-path trust hardening.

### Changed
- Migrated the remaining in-repo LLM inference paths through `@stackbilt/llm-providers`: Claude executor, dynamic tools, Groq helpers, Workers AI helper fallbacks, composite execution, and the last raw Groq logprobs path. (aegis-oss#24)
- Hardened digest delivery, grounding dispatch, and grounding-gap persistence so failed or missing evidence is recorded more consistently.

### Fixed
- Restored the release workflow's npm publish auth fallback while preserving trusted publishing support. (aegis-oss#51)

## 0.6.5 (2026-06-02)

### Fixed
Expand Down
4 changes: 2 additions & 2 deletions docs/publishing.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,8 +7,8 @@
Push a semver tag from `main`:

```bash
git tag v0.6.6
git push origin v0.6.6
git tag v0.7.0
git push origin v0.7.0
```

The workflow installs dependencies, runs typecheck/tests, then publishes `web/package.json` to npm.
Expand Down
4 changes: 2 additions & 2 deletions web/package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion web/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@stackbilt/aegis-core",
"version": "0.6.5",
"version": "0.7.0",
"description": "Persistent AI agent framework for Cloudflare Workers. Multi-tier memory, autonomous goals, dreaming cycles, MCP native.",
"license": "Apache-2.0",
"publishConfig": {
Expand Down
6 changes: 3 additions & 3 deletions web/src/version.ts
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
// Semantic version bump on each deploy
// Used in /health endpoint and changelog tracking
export const VERSION = '0.1.0';
// Semantic version - bump on each deploy
// Used in /health endpoint and changelog tracking
export const VERSION = '0.7.0';