diff --git a/AGENTS.md b/AGENTS.md index a89ba76..05f5b14 100644 --- a/AGENTS.md +++ b/AGENTS.md @@ -1,3 +1,3 @@ - please check first if dev is running in watch mode, if yes do not start another process, also remember when you test something with "yarn dev" that this command runs in background and stays alive -- For all browser testing, use the `mcp__playwright__*` tools directly. Do not use the in-app Browser plugin or a shell/CLI Playwright process unless the user explicitly asks for a different browser surface. +- For all browser testing, use the `mcp__playwright__*` tools directly. Do not use the in-app Browser plugin or a shell/CLI Playwright process unless the user explicitly asks for a different browser surface - If the Playwright MCP tools are not initially visible, discover the deferred `mcp__playwright__*` tools before concluding that browser testing is unavailable. diff --git a/CHANGELOG.md b/CHANGELOG.md index 6a41feb..facd28a 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -18,6 +18,62 @@ The project uses Semantic Versioning. Each release contains the same three chang - None. +## [0.1.25] - 2026-08-27 + +### New Features + +- None. + +### Bug Fixes + +- None. + +### Improvements + +- Added a link to the official Cortex Docs website in the README. + +## [0.1.24] - 2026-08-27 + +### New Features + +- Added consent-aware Google Analytics 4 integration, configurable via a new `analytics` site config option (`google_analytics_id`, `enabled_hosts`, `privacy_url`), including a cookie consent banner with a link to your privacy policy and no advertising signals collected. + +### Bug Fixes + +- None. + +### Improvements + +- Documentation updated to explain how to configure Google Analytics through the new `analytics` config instead of manually embedding tracking scripts via `custom_head_html`. + +## [0.1.23] - 2026-08-27 + +### New Features + +- The "Built with Cortex" badge now records each unique website hostname that loads it, so you can see which sites are displaying your badge. + +### Bug Fixes + +- None. + +### Improvements + +- None. + +## [0.1.22] - 2026-08-27 + +### New Features + +- None. + +### Bug Fixes + +- None. + +### Improvements + +- None. + ## [0.1.21] - 2026-08-27 ### New Features diff --git a/package-lock.json b/package-lock.json index 42d1d50..87924e0 100644 --- a/package-lock.json +++ b/package-lock.json @@ -19807,7 +19807,7 @@ }, "packages/cli": { "name": "@cortex-docs/cli", - "version": "0.1.21", + "version": "0.1.25", "bundleDependencies": [ "@cortex-docs/core", "@cortex-docs/codegen", @@ -19896,9 +19896,9 @@ }, "packages/docs-site": { "name": "@cortex-docs/docs-site", - "version": "0.1.21", + "version": "0.1.25", "dependencies": { - "@cortex-docs/cli": "0.1.21" + "@cortex-docs/cli": "0.1.25" } }, "packages/docs-ui": { diff --git a/packages/cli/package.json b/packages/cli/package.json index a7c1970..bf1a8c0 100644 --- a/packages/cli/package.json +++ b/packages/cli/package.json @@ -1,6 +1,6 @@ { "name": "@cortex-docs/cli", - "version": "0.1.21", + "version": "0.1.25", "description": "Cortex Docs CLI for SDKs, API documentation, and MCP servers", "license": "MIT", "repository": { diff --git a/packages/docs-site/package.json b/packages/docs-site/package.json index 6423925..832f8d3 100644 --- a/packages/docs-site/package.json +++ b/packages/docs-site/package.json @@ -1,6 +1,6 @@ { "name": "@cortex-docs/docs-site", - "version": "0.1.21", + "version": "0.1.25", "private": true, "description": "Product documentation for Cortex Docs", "scripts": { @@ -9,6 +9,6 @@ "clean": "rm -rf .cortex" }, "dependencies": { - "@cortex-docs/cli": "0.1.21" + "@cortex-docs/cli": "0.1.25" } }