diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 0f1805ba..9b3f32cc 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -321,6 +321,8 @@ jobs: timeout-minutes: 10 needs: [changes] if: ${{ needs.changes.outputs.release == 'true' || needs.changes.outputs.workflow == 'true' || needs.changes.outputs.docs == 'true' }} + env: + NPM_CONFIG_CACHE: ${{ github.workspace }}/.npm-cache steps: - uses: actions/checkout@34e114876b0b11c390a56381ad16ebd13914f8d5 # v4 - uses: actions/setup-node@49933ea5288caeca8642d1e84afbd3f7d6820020 # v4 diff --git a/.release-please-manifest.json b/.release-please-manifest.json index bf2e8da6..6060e604 100644 --- a/.release-please-manifest.json +++ b/.release-please-manifest.json @@ -1,3 +1,3 @@ { - ".": "3.13.2" + ".": "3.14.0" } diff --git a/CHANGELOG.md b/CHANGELOG.md index c3739e0b..ea4415b6 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -5,6 +5,25 @@ All notable changes to this project will be documented in this file. The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.1.0/), and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html). +## [3.14.0](https://github.com/dinglebear-ai/cortex/compare/v3.13.2...v3.14.0) (2026-08-20) + + +### Added + +* add W16 artifact evidence foundation ([#198](https://github.com/dinglebear-ai/cortex/issues/198)) ([d232d82](https://github.com/dinglebear-ai/cortex/commit/d232d82bdafc1978fd389cf1f134f29631febc4c)) +* **agent-observatory:** ingest OTLP traces and normalize metrics ([#200](https://github.com/dinglebear-ai/cortex/issues/200)) ([154474a](https://github.com/dinglebear-ai/cortex/commit/154474a17531f3281a18589ebc9bfeeddb7a8686)) +* **agent-observatory:** make projector cursors transactional ([#195](https://github.com/dinglebear-ai/cortex/issues/195)) ([74eaa15](https://github.com/dinglebear-ai/cortex/commit/74eaa151dc5b1282def8c3a6a43db6e46b50c929)) + + +### Fixed + +* harden actionable error-signature reads ([#199](https://github.com/dinglebear-ai/cortex/issues/199)) ([64098b3](https://github.com/dinglebear-ai/cortex/commit/64098b3fa4471837aec82a6063cc625f02a61f78)) + + +### Changed + +* harden Cortex hot paths and eliminate audit debt ([#196](https://github.com/dinglebear-ai/cortex/issues/196)) ([ecbd33b](https://github.com/dinglebear-ai/cortex/commit/ecbd33b8383313c84c5e71a97c06f3a4175e0c6c)) + ## [3.13.2](https://github.com/dinglebear-ai/cortex/compare/v3.13.1...v3.13.2) (2026-08-10) diff --git a/Cargo.lock b/Cargo.lock index 5ad55faa..6e341402 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -511,7 +511,7 @@ checksum = "773648b94d0e5d620f64f280777445740e61fe701025087ec8b57f45c791888b" [[package]] name = "cortex" -version = "3.13.2" +version = "3.14.0" dependencies = [ "anyhow", "axum", @@ -4499,7 +4499,7 @@ checksum = "1ffae5123b2d3fc086436f8834ae3ab053a283cfac8fe0a0b8eaae044768a4c4" [[package]] name = "xtask" -version = "3.13.2" +version = "3.14.0" dependencies = [ "anyhow", "clap", diff --git a/Cargo.toml b/Cargo.toml index 3ef18eed..fd178187 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -41,7 +41,7 @@ missing_safety_doc = "deny" [package] name = "cortex" -version = "3.13.2" +version = "3.14.0" edition.workspace = true rust-version.workspace = true authors.workspace = true diff --git a/docker-compose.prod.yml b/docker-compose.prod.yml index 705bd61d..837e130a 100644 --- a/docker-compose.prod.yml +++ b/docker-compose.prod.yml @@ -23,7 +23,7 @@ services: # Default tag is kept in sync by `cargo xtask bump-version` (version canon); # previously this was frozen at 1.0.0 while migrations moved forward — # a stale binary against a newer schema (full-review OH1). - image: ghcr.io/dinglebear-ai/cortex:${CORTEX_VERSION:-3.13.2} + image: ghcr.io/dinglebear-ai/cortex:${CORTEX_VERSION:-3.14.0} container_name: cortex user: "${CORTEX_UID:-1000}:${CORTEX_GID:-1000}" group_add: diff --git a/mcpb/manifest.json b/mcpb/manifest.json index d5ec4fd7..428c0f5c 100644 --- a/mcpb/manifest.json +++ b/mcpb/manifest.json @@ -3,7 +3,7 @@ "manifest_version": "0.4", "name": "cortex", "display_name": "Cortex", - "version": "3.13.2", + "version": "3.14.0", "description": "Self-hosted log aggregation and investigation for homelabs: syslog, Docker, OTLP, and AI transcripts in SQLite/FTS, exposed over MCP, CLI, and REST.", "long_description": "cortex packages the existing cortex stdio entrypoint as a local MCP Bundle. It is query-only: it reads the configured SQLite database and does not start syslog listeners, HTTP servers, Docker Compose, REST, or deploy flows.", "author": { diff --git a/packages/cortex-rmcp/package.json b/packages/cortex-rmcp/package.json index 5ec675d1..f6b42fc0 100644 --- a/packages/cortex-rmcp/package.json +++ b/packages/cortex-rmcp/package.json @@ -1,6 +1,6 @@ { "name": "@dinglebear/cortex", - "version": "3.13.2", + "version": "3.14.0", "license": "AGPL-3.0-only", "description": "Self-hosted log aggregation and investigation for homelabs: syslog, Docker, OTLP, and AI transcripts in SQLite/FTS, exposed over MCP, CLI, and REST.", "homepage": "https://github.com/dinglebear-ai/cortex#readme", @@ -55,7 +55,7 @@ "llm" ], "mcpName": "ai.dinglebear/cortex", - "binaryVersion": "3.13.2", + "binaryVersion": "3.14.0", "author": { "name": "dinglebear.ai", "url": "https://dinglebear.ai" diff --git a/server.json b/server.json index f1012cbe..c17f0562 100644 --- a/server.json +++ b/server.json @@ -3,7 +3,7 @@ "name": "ai.dinglebear/cortex", "title": "Cortex RMCP", "description": "Self-hosted homelab log intelligence over MCP, CLI, and REST with SQLite/FTS.", - "version": "3.13.2", + "version": "3.14.0", "websiteUrl": "https://github.com/dinglebear-ai/cortex", "repository": { "url": "https://github.com/dinglebear-ai/cortex", @@ -25,7 +25,7 @@ "registryType": "npm", "registryBaseUrl": "https://registry.npmjs.org", "identifier": "@dinglebear/cortex", - "version": "3.13.2", + "version": "3.14.0", "runtimeHint": "npx", "packageArguments": [ { @@ -67,7 +67,7 @@ "format": "string", "isRequired": false, "isSecret": false, - "placeholder": "v3.13.2" + "placeholder": "v3.14.0" }, { "name": "CORTEX_RMCP_REPO", @@ -105,12 +105,12 @@ "namespace": "ai.dinglebear", "dnsDomain": "dinglebear.ai", "distribution": { - "npm": "@dinglebear/cortex@3.13.2", + "npm": "@dinglebear/cortex@3.14.0", "nodePackage": "@dinglebear/cortex", - "ociImage": "ghcr.io/dinglebear-ai/cortex:v3.13.2" + "ociImage": "ghcr.io/dinglebear-ai/cortex:v3.14.0" }, "buildInfo": { - "version": "3.13.2", + "version": "3.14.0", "repository": "https://github.com/dinglebear-ai/cortex" } } diff --git a/xtask/Cargo.toml b/xtask/Cargo.toml index 59e3cf4b..53e9733e 100644 --- a/xtask/Cargo.toml +++ b/xtask/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "xtask" -version = "3.13.2" +version = "3.14.0" edition.workspace = true rust-version.workspace = true authors.workspace = true