Skip to content
Open
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
17 changes: 17 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,23 @@
# Changelog

All notable changes to this project will be documented in this file.
## [0.6.0](https://github.com/arcboxlabs/aigateway/compare/v0.5.0...v0.6.0) - 2026-07-09

### Added
- *(aigateway)* structured logging (tracing)- *(aigateway)* echo the requested Anthropic model in responses- *(aigateway)* expose upstream Quirks in config- *(aigateway)* keepalive ping during streaming- *(aigateway)* add /v1/models and /v1/messages/count_tokens- *(aigateway)* openai-responses wire, richer stream usage, upstream proxy- *(aigateway)* loopback Anthropic → OpenAI-compatible gateway server- *(aigw-anthropic)* add inbound native bridge

### Fixed
- *(aigateway)* raise inbound body limit to 64 MiB- *(aigateway)* always terminate the Anthropic stream- *(aigw-anthropic)* clean placeholder for image tool results

### Documentation
- document the gateway sidecar spawn contract and config

### Miscellaneous
- build darwin-x64 on macos-14 (cross-compile)- build + publish per-platform binaries on release tags- add devenv development environment

### Build
- switch reqwest from native-tls to rustls (webpki-roots)

## [0.5.0](https://github.com/arcboxlabs/aigateway/compare/v0.4.0...v0.5.0) - 2026-05-14

### Added
Expand Down
14 changes: 7 additions & 7 deletions Cargo.lock

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

14 changes: 7 additions & 7 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -10,18 +10,18 @@ members = [
resolver = "3"

[workspace.package]
version = "0.5.0"
version = "0.6.0"
edition = "2024"
license = "MIT"
repository = "https://github.com/arcboxlabs/aigateway"

[workspace.dependencies]
aigw = { version = "0.5.0", path = "providers/aigw" }
aigw-core = { version = "0.5.0", path = "providers/aigw-core" }
aigw-openai = { version = "0.5.0", path = "providers/aigw-openai" }
aigw-openai-compat = { version = "0.5.0", path = "providers/aigw-openai-compat" }
aigw-anthropic = { version = "0.5.0", path = "providers/aigw-anthropic" }
aigw-gemini = { version = "0.5.0", path = "providers/aigw-gemini" }
aigw = { version = "0.6.0", path = "providers/aigw" }
aigw-core = { version = "0.6.0", path = "providers/aigw-core" }
aigw-openai = { version = "0.6.0", path = "providers/aigw-openai" }
aigw-openai-compat = { version = "0.6.0", path = "providers/aigw-openai-compat" }
aigw-anthropic = { version = "0.6.0", path = "providers/aigw-anthropic" }
aigw-gemini = { version = "0.6.0", path = "providers/aigw-gemini" }
Comment on lines +20 to +24

Copy link
Copy Markdown

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

P2 Release metadata mismatch
aigw-core, aigw-openai, aigw-openai-compat, and aigw-gemini are bumped to 0.6.0 here, but their crate changelogs do not get corresponding 0.6.0 entries in this PR. For example, providers/aigw-openai/CHANGELOG.md still starts at 0.5.0, so published release metadata does not describe the version being released.


[package]
name = "aigateway"
Expand Down
11 changes: 11 additions & 0 deletions providers/aigw-anthropic/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,17 @@

All notable changes to this project will be documented in this file.

## [0.6.0](https://github.com/arcboxlabs/aigateway/compare/aigw-anthropic-v0.5.0...aigw-anthropic-v0.6.0) - 2026-07-09

### Added
- *(aigateway)* echo the requested Anthropic model in responses- *(aigateway)* openai-responses wire, richer stream usage, upstream proxy- *(aigw-anthropic)* add inbound native bridge

### Fixed
- *(aigw-anthropic)* clean placeholder for image tool results

### Build
- switch reqwest from native-tls to rustls (webpki-roots)

## [0.5.0](https://github.com/arcboxlabs/aigateway/compare/aigw-anthropic-v0.4.0...aigw-anthropic-v0.5.0) - 2026-05-14

### Added
Expand Down
5 changes: 5 additions & 0 deletions providers/aigw-gemini/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,11 @@

All notable changes to this project will be documented in this file.

## [0.6.0](https://github.com/arcboxlabs/aigateway/compare/aigw-gemini-v0.5.0...aigw-gemini-v0.6.0) - 2026-07-09

### Build
- switch reqwest from native-tls to rustls (webpki-roots)

## [0.5.0](https://github.com/arcboxlabs/aigateway/compare/aigw-gemini-v0.4.0...aigw-gemini-v0.5.0) - 2026-05-14

### Added
Expand Down
5 changes: 5 additions & 0 deletions providers/aigw-openai/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,11 @@
# Changelog

All notable changes to this project will be documented in this file.
## [0.6.0](https://github.com/arcboxlabs/aigateway/compare/aigw-openai-v0.5.0...aigw-openai-v0.6.0) - 2026-07-09

### Build
- switch reqwest from native-tls to rustls (webpki-roots)

## [0.5.0](https://github.com/arcboxlabs/aigateway/compare/aigw-openai-v0.4.0...aigw-openai-v0.5.0) - 2026-05-14

### Added
Expand Down
11 changes: 11 additions & 0 deletions providers/aigw/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,17 @@
# Changelog

All notable changes to this project will be documented in this file.
## [0.6.0](https://github.com/arcboxlabs/aigateway/compare/aigw-v0.5.0...aigw-v0.6.0) - 2026-07-09

### Added
- *(aigateway)* echo the requested Anthropic model in responses- *(aigateway)* openai-responses wire, richer stream usage, upstream proxy- *(aigw-anthropic)* add inbound native bridge

### Fixed
- *(aigw-anthropic)* clean placeholder for image tool results

### Build
- switch reqwest from native-tls to rustls (webpki-roots)

## [0.5.0](https://github.com/arcboxlabs/aigateway/compare/aigw-v0.4.0...aigw-v0.5.0) - 2026-05-14

### Added
Expand Down
Loading