Skip to content

Commit 5e0ce24

Browse files
chore: release 0.36.2 (#3157)
🤖 I have created a release *beep* *boop* --- ## [0.36.2](v0.36.1...v0.36.2) (2026-08-21) ### Bug Fixes * **copilot:** bind the minted token to the integration ID we forward ([#3164](#3164)) ([397803a](397803a)) * **kompress:** accept ccr_original on the remote compressor ([#3162](#3162)) ([45cb1b9](45cb1b9)) * **proxy:** count output tokens from the stream's text, not its wire size ([#3163](#3163)) ([4006964](4006964)) ### Dependencies * bump ai from 6.0.138 to 7.0.59 in /sdk/typescript ([#2281](#2281)) ([0891062](0891062)) * bump ai from 6.0.149 to 7.0.59 in /docs ([#2277](#2277)) ([f7e5d37](f7e5d37)) * bump md-5 from 0.10.6 to 0.11.0 ([#3146](#3146)) ([c6dd823](c6dd823)) * bump ruff from 0.16.2 to 0.16.3 in the pip-minor-patch group ([#3143](#3143)) ([c8db13d](c8db13d)) * bump the cargo-minor-patch group with 8 updates ([#3145](#3145)) ([9c14e3a](9c14e3a)) * bump tiktoken-rs from 0.11.0 to 0.12.0 ([#3147](#3147)) ([a307c11](a307c11)) * bump tokenizers from 0.22.2 to 0.23.1 ([#3149](#3149)) ([6e2e10f](6e2e10f)) * bump typescript from 5.9.3 to 7.0.2 in /plugins/openclaw ([#2279](#2279)) ([85774fc](85774fc)) * bump typescript from 5.9.3 to 7.0.2 in /plugins/opencode ([#2280](#2280)) ([a382137](a382137)) * update mcp requirement from &lt;2.0.0,&gt;=1.28.1 to &gt;=1.28.1,&lt;3.0.0 ([#3144](#3144)) ([6928d19](6928d19)) --- This PR was generated with [Release Please](https://github.com/googleapis/release-please). See [documentation](https://github.com/googleapis/release-please#release-please). --------- Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>
1 parent 4006964 commit 5e0ce24

12 files changed

Lines changed: 42 additions & 19 deletions

File tree

.claude-plugin/marketplace.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,14 +5,14 @@
55
},
66
"metadata": {
77
"description": "Headroom marketplace for Claude Code and GitHub Copilot CLI plugins.",
8-
"version": "0.36.1"
8+
"version": "0.36.2"
99
},
1010
"plugins": [
1111
{
1212
"name": "headroom",
1313
"source": "./plugins/headroom-agent-hooks",
1414
"description": "Headroom startup hooks for Claude Code and GitHub Copilot CLI.",
15-
"version": "0.36.1",
15+
"version": "0.36.2",
1616
"author": {
1717
"name": "Headroom Contributors",
1818
"url": "https://github.com/chopratejas/headroom"

.github/plugin/marketplace.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,14 +5,14 @@
55
},
66
"metadata": {
77
"description": "Headroom marketplace for Claude Code and GitHub Copilot CLI plugins.",
8-
"version": "0.36.1"
8+
"version": "0.36.2"
99
},
1010
"plugins": [
1111
{
1212
"name": "headroom",
1313
"source": "./plugins/headroom-agent-hooks",
1414
"description": "Headroom startup hooks for Claude Code and GitHub Copilot CLI.",
15-
"version": "0.36.1",
15+
"version": "0.36.2",
1616
"author": {
1717
"name": "Headroom Contributors",
1818
"url": "https://github.com/chopratejas/headroom"

.release-please-manifest.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
{
2-
".": "0.36.1"
2+
".": "0.36.2"
33
}

.releasemetadata

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,10 @@
11
{
2-
"version": "0.36.1",
2+
"version": "0.36.2",
33
"packages": {
4-
"pypi": "0.36.1",
5-
"npm-sdk": "0.36.1",
6-
"npm-openclaw": "0.36.1",
7-
"npm-opencode": "0.36.1",
8-
"agent-hooks-plugin": "0.36.1"
4+
"pypi": "0.36.2",
5+
"npm-sdk": "0.36.2",
6+
"npm-openclaw": "0.36.2",
7+
"npm-opencode": "0.36.2",
8+
"agent-hooks-plugin": "0.36.2"
99
}
1010
}

CHANGELOG.md

Lines changed: 23 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -284,6 +284,29 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
284284
- **code:** fix two `CodeAwareCompressor` AST-reassembly bugs: an exported JS/TS function or class (`export function foo() {`) produced a duplicated `export export` keyword and invalid syntax, because line-based node slicing (used to preserve indentation) pulled in the preceding `export` sibling's text on top of the `export_statement` handler's own prefix reconstruction. Separately, in every supported language, a doc comment immediately above a top-level function, class, or type was detached from its declaration during extraction and re-emitted in a cluster at the end of the compressed output instead of staying attached to what it documents.
285285
- * **proxy:** Buffered upstream responses containing a `server_tool_use` (or any other unrecognized Anthropic content block) no longer turn a fully-generated response into an HTTP 502. `StreamingMixin._response_to_sse` raised `ValueError` on unknown block types after the entire upstream generation had already been buffered, so a slow-but-successful response failed and the client retried the whole multi-minute request. Unknown blocks are now emitted verbatim in `content_block_start` (following the existing redacted_thinking` pattern), so `server_tool_use`, `server_tool_result`, `mcp_tool_use`, and future block types round-trip ([#1806](https://github.com/headroomlabs-ai/headroom/issues/1806)).
286286

287+
## [0.36.2](https://github.com/headroomlabs-ai/headroom/compare/v0.36.1...v0.36.2) (2026-08-21)
288+
289+
290+
### Bug Fixes
291+
292+
* **copilot:** bind the minted token to the integration ID we forward ([#3164](https://github.com/headroomlabs-ai/headroom/issues/3164)) ([397803a](https://github.com/headroomlabs-ai/headroom/commit/397803a9424cf184f597a2d18af82632e7b0ac70))
293+
* **kompress:** accept ccr_original on the remote compressor ([#3162](https://github.com/headroomlabs-ai/headroom/issues/3162)) ([45cb1b9](https://github.com/headroomlabs-ai/headroom/commit/45cb1b9c4824a3a609772d8828a119bdc1c31ad0))
294+
* **proxy:** count output tokens from the stream's text, not its wire size ([#3163](https://github.com/headroomlabs-ai/headroom/issues/3163)) ([4006964](https://github.com/headroomlabs-ai/headroom/commit/4006964a037817b22437abcaf2c55b13085b4021))
295+
296+
297+
### Dependencies
298+
299+
* bump ai from 6.0.138 to 7.0.59 in /sdk/typescript ([#2281](https://github.com/headroomlabs-ai/headroom/issues/2281)) ([0891062](https://github.com/headroomlabs-ai/headroom/commit/08910624fbe4877da0789038957308dbe9be9451))
300+
* bump ai from 6.0.149 to 7.0.59 in /docs ([#2277](https://github.com/headroomlabs-ai/headroom/issues/2277)) ([f7e5d37](https://github.com/headroomlabs-ai/headroom/commit/f7e5d37f526907b2b8a22d5e7332ed3fddfa071c))
301+
* bump md-5 from 0.10.6 to 0.11.0 ([#3146](https://github.com/headroomlabs-ai/headroom/issues/3146)) ([c6dd823](https://github.com/headroomlabs-ai/headroom/commit/c6dd82338434f964cd73ed2f742ad0c733bff79f))
302+
* bump ruff from 0.16.2 to 0.16.3 in the pip-minor-patch group ([#3143](https://github.com/headroomlabs-ai/headroom/issues/3143)) ([c8db13d](https://github.com/headroomlabs-ai/headroom/commit/c8db13d5ad78d9d1bcf5c43dcaeba69070f26e1f))
303+
* bump the cargo-minor-patch group with 8 updates ([#3145](https://github.com/headroomlabs-ai/headroom/issues/3145)) ([9c14e3a](https://github.com/headroomlabs-ai/headroom/commit/9c14e3aa9598a01c3cc208c8f483b5dd6398ea1f))
304+
* bump tiktoken-rs from 0.11.0 to 0.12.0 ([#3147](https://github.com/headroomlabs-ai/headroom/issues/3147)) ([a307c11](https://github.com/headroomlabs-ai/headroom/commit/a307c11109de21b0d5d9648be69b0f08a40d3a4d))
305+
* bump tokenizers from 0.22.2 to 0.23.1 ([#3149](https://github.com/headroomlabs-ai/headroom/issues/3149)) ([6e2e10f](https://github.com/headroomlabs-ai/headroom/commit/6e2e10f67a737d3b2d844975c1384e02637dbcc3))
306+
* bump typescript from 5.9.3 to 7.0.2 in /plugins/openclaw ([#2279](https://github.com/headroomlabs-ai/headroom/issues/2279)) ([85774fc](https://github.com/headroomlabs-ai/headroom/commit/85774fcb70b46ae44bcd3533a214d64189908622))
307+
* bump typescript from 5.9.3 to 7.0.2 in /plugins/opencode ([#2280](https://github.com/headroomlabs-ai/headroom/issues/2280)) ([a382137](https://github.com/headroomlabs-ai/headroom/commit/a382137844428820f49d9b43100fed8e492c2db2))
308+
* update mcp requirement from &lt;2.0.0,&gt;=1.28.1 to &gt;=1.28.1,&lt;3.0.0 ([#3144](https://github.com/headroomlabs-ai/headroom/issues/3144)) ([6928d19](https://github.com/headroomlabs-ai/headroom/commit/6928d1932c1136fd1c6bd724ee88d12815ecd2d6))
309+
287310
## [0.36.1](https://github.com/headroomlabs-ai/headroom/compare/v0.36.0...v0.36.1) (2026-08-20)
288311

289312

plugins/headroom-agent-hooks/.claude-plugin/plugin.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "headroom",
3-
"version": "0.36.1",
3+
"version": "0.36.2",
44
"description": "Headroom startup hooks for Claude Code and GitHub Copilot CLI.",
55
"author": {
66
"name": "Headroom Contributors",

plugins/headroom-agent-hooks/.github/plugin/plugin.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "headroom",
3-
"version": "0.36.1",
3+
"version": "0.36.2",
44
"description": "Headroom startup hooks for Claude Code and GitHub Copilot CLI.",
55
"author": {
66
"name": "Headroom Contributors",

plugins/openclaw/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "headroom-openclaw",
3-
"version": "0.36.1",
3+
"version": "0.36.2",
44
"description": "Headroom context compression plugin for OpenClaw — 70-90% token savings with zero LLM calls",
55
"type": "module",
66
"main": "./dist/index.js",

plugins/opencode/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "headroom-opencode",
3-
"version": "0.36.1",
3+
"version": "0.36.2",
44
"description": "Headroom proxy integration plugin for OpenCode - routes LLM traffic through the Headroom proxy for token compression",
55
"type": "module",
66
"main": "./dist/index.js",

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ build-backend = "maturin"
44

55
[project]
66
name = "headroom-ai"
7-
version = "0.36.1"
7+
version = "0.36.2"
88
description = "The Context Optimization Layer for LLM Applications - Cut costs by 50-90%"
99
readme = "README.md"
1010
license = "Apache-2.0"

0 commit comments

Comments
 (0)