agent-harness 0.30.0 → 0.31.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/.release-please-manifest.json +1 -1
- data/CHANGELOG.md +14 -0
- data/lib/agent_harness/version.rb +1 -1
- metadata +1 -1
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 1e4fa0ebff9c67559f7294ebe65550e75629b9c21d95f2e04155f944f9d4e5de
|
|
4
|
+
data.tar.gz: bed581986f9471514de4488702b8c120c830887835c393cb0c6ad2f5d42b974b
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 480a0bffe3625ea4c7e43bdcb1cfb8857798156be26a69f23d88e38443e8b75682aa0125b5ca2af6e94e967839129482c1607779a01e7bf76d5bb673bebb8888
|
|
7
|
+
data.tar.gz: dc36eb56d5b62dd7956cf311cd0d9635dbab456f02550ea3cc14fdb304488e38aeda33a5a36234aae7fd31b3e47783fcf69698850131cb6e08ced1326e0b2d2f
|
data/CHANGELOG.md
CHANGED
|
@@ -5,6 +5,20 @@
|
|
|
5
5
|
* add runner model compatibility contract (`AgentHarness.model_compatibility`) with structured `ModelCompatibility::Result` outcomes. Codex exposes static facts for CLI-gated models (e.g. `gpt-5.5` requires Codex CLI `>= 0.116.0`), a baseline supported-model list, supported auth modes, and a `DEFAULT_COMPATIBLE_MODEL_ID` fallback so downstream orchestrators can validate tier/model assignments before scheduling agent runs ([#259](https://github.com/viamin/agent-harness/issues/259)).
|
|
6
6
|
* **auth:** add provider-owned PKCE code-exchange API for Claude OAuth (`AgentHarness::Authentication.exchange_code`). Takes an authorization code plus PKCE verifier (and `redirect_uri`/`client_id`), posts an `authorization_code` grant to the Claude token endpoint, and persists the resulting access/refresh tokens in the native `claudeAiOauth` shape. Adds `exchange_code_supported?` and a `code_exchange` key to `auth_capabilities` ([#266](https://github.com/viamin/agent-harness/issues/266)).
|
|
7
7
|
|
|
8
|
+
## [0.31.0](https://github.com/viamin/agent-harness/compare/agent-harness/v0.30.0...agent-harness/v0.31.0) (2026-07-16)
|
|
9
|
+
|
|
10
|
+
|
|
11
|
+
### Features
|
|
12
|
+
|
|
13
|
+
* release agent-harness 0.31.0 with omp support ([#302](https://github.com/viamin/agent-harness/issues/302)) ([7a82fbc](https://github.com/viamin/agent-harness/commit/7a82fbc5cc627eaa10c678e3e2b998fc0ce100f2))
|
|
14
|
+
|
|
15
|
+
## [0.31.0](https://github.com/viamin/agent-harness/compare/agent-harness/v0.30.0...agent-harness/v0.31.0) (2026-07-16)
|
|
16
|
+
|
|
17
|
+
|
|
18
|
+
### Features
|
|
19
|
+
|
|
20
|
+
* release a single `agent-harness` gem version that consolidates the full `:omp` provider contract for downstream consumers: distinct `:omp` provider metadata separate from `:pi`, the install/runtime contract for `@oh-my-pi/pi-coding-agent` `17.0.1`, the Bun runtime floor `>= 1.3.14` (pinned install target `1.3.14`), the smoke-test contract, and regression coverage for the public `AgentHarness` APIs ([#297](https://github.com/viamin/agent-harness/issues/297))
|
|
21
|
+
|
|
8
22
|
|
|
9
23
|
## [0.30.0](https://github.com/viamin/agent-harness/compare/agent-harness/v0.29.0...agent-harness/v0.30.0) (2026-07-16)
|
|
10
24
|
|