agent-harness 0.33.1 → 0.34.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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 52048b2b46179a0dae7cebefbf5555001538cf01c93681bb9b1cb370e1583c25
4
- data.tar.gz: f770c48865824ea85e6751edbe7512bb41e51cb335f10a000a28850e2366b40f
3
+ metadata.gz: bf702a2effbef31b27dd505a6e1e1a27328f1f35ae6cf5f53abf8cfca01cadde
4
+ data.tar.gz: b974b4fa2ea57bd47c5711c84670b36caf5fe49726c3c30c78335a3d9008c07b
5
5
  SHA512:
6
- metadata.gz: 87a0d7b06d8145f39549515047963c6548b1f40f2fad23ef5423d0f378d3b5ade1ba2f44157342669905fa167879ef69b8b7a54a8205346c1145f9d2d3bcf430
7
- data.tar.gz: 1da0996f1cd0caab0d34c6784576337c87bee26d738e3d180838eae6cdb4884e3492caca88c02857227f2dc7af584c08d864fab4e7db02d3bfe16f5491b0a6b6
6
+ metadata.gz: 53fdd1210b508d6dbd23e99c160b936496c2c2d3774722ccf1e410c5dae3cc9cae9b15294a1de20f01bdfabb66508afeb2dd80cc5381a1b72181b81677e28425
7
+ data.tar.gz: 41b876c6db60df0bf5d6c1ea3435ddb64916adb2ccc413e9ff38bdee6df888f28ddc86b97a4f0a69b80355369dbcb39a886e48ff58c33461bcb3252cf571f7b2
@@ -1,3 +1,3 @@
1
1
  {
2
- ".": "0.33.1"
2
+ ".": "0.34.0"
3
3
  }
data/CHANGELOG.md CHANGED
@@ -5,6 +5,13 @@
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.34.0](https://github.com/viamin/agent-harness/compare/agent-harness/v0.33.1...agent-harness/v0.34.0) (2026-08-14)
9
+
10
+
11
+ ### Features
12
+
13
+ * reject gpt-5.6 codex subscription models ([#331](https://github.com/viamin/agent-harness/issues/331)) ([4c1e6f9](https://github.com/viamin/agent-harness/commit/4c1e6f94cfb919bf166a7b4842669b817b863b97))
14
+
8
15
  ## [0.33.1](https://github.com/viamin/agent-harness/compare/agent-harness/v0.33.0...agent-harness/v0.33.1) (2026-08-14)
9
16
 
10
17
 
@@ -1,5 +1,5 @@
1
1
  # frozen_string_literal: true
2
2
 
3
3
  module AgentHarness
4
- VERSION = "0.33.1"
4
+ VERSION = "0.34.0"
5
5
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: agent-harness
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.33.1
4
+ version: 0.34.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Bart Agapinan