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
16 changes: 16 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,22 @@ 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).

## [0.3.2] - 2026-06-24

### Fixed

- **MatterAI inference routed to the wrong backend.** `AxonClient` was
building the OpenAI `baseURL` by running `API_GATEWAY_PATH`
(`https://api2.matterai.so/v1/web/`) through `getUrlFromToken`, which
rehosts *any* `api.matterai.so` target onto the control-plane host
resolved from the JWT — so every inference request silently hit
`https://api.matterai.so/v1/web/` instead of the gateway at
`https://api2.matterai.so/v1/web/`. The gateway URL is now used
directly, with the per-model `baseUrl` override still winning for
local dev. Profile, task title, balance, and web search/fetch still
go through the rehost helper (they intentionally target the control
plane).

## [0.3.1] - 2026-06-23

### Changed
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@matterailab/orbcode",
"version": "0.3.1",
"version": "0.3.2",
"description": "OrbCode CLI — agentic coding in your terminal, powered by Axon models by MatterAI",
"type": "module",
"bin": {
Expand Down
Loading
Loading