agent-harness 0.35.4 → 0.35.5

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: 67605a7b67faac8c1dcecf2ee149b382cb20d45299cfccf803f0663cdce5d4b7
4
- data.tar.gz: ddc290cf548ac0542b6e5ad8c89c40d76105dd12f4f175273aea5033ee9e0b05
3
+ metadata.gz: 1b9b2f849efa7f0095e8824d9419b227b832496a428c3160f88bc184247996a3
4
+ data.tar.gz: 414258ac4e15b93b0e0b9614f491c4d51ffadc6c09800f0426fffee7629f5be8
5
5
  SHA512:
6
- metadata.gz: d5c291525ea43e3b62d846414f0d314f86836c26f528631125f30179121c1ffcada8796d25e024b1c768dfeedb7c168169e131b3740257538f370b7669586295
7
- data.tar.gz: 3f96d056ee243adb7355ae6117dd78a616679141bb7f4827933493db7018d368fb0dddff4026524236aae79fb0a0390f7e3075e5fbfa2fc8ef544657837aa321
6
+ metadata.gz: fddb7c9b19195de230b25a30cafef036a91237e451fdf21e183685491da771566e41c995f39843c70f0ebdb993689501dc2b26abf28572fe82560b59154bbfb9
7
+ data.tar.gz: 754927cd6cc5a6d653fae00d7d39f0509b240673bb38af94051b886e44bf9a9dac9cd2ece13ce8e675c67aa34776ec558f19057ffee990a7d2e4598a91858cdf
@@ -1,3 +1,3 @@
1
1
  {
2
- ".": "0.35.4"
2
+ ".": "0.35.5"
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.35.5](https://github.com/viamin/agent-harness/compare/agent-harness/v0.35.4...agent-harness/v0.35.5) (2026-08-19)
9
+
10
+
11
+ ### Bug Fixes
12
+
13
+ * **deps-dev:** bump @anthropic-ai/claude-code from 2.1.92 to 2.1.233 in /vendor/pins/claude ([#342](https://github.com/viamin/agent-harness/issues/342)) ([ce0129a](https://github.com/viamin/agent-harness/commit/ce0129a5b4c1f61b853f7203fdd56665e232a5cf))
14
+
8
15
  ## [0.35.4](https://github.com/viamin/agent-harness/compare/agent-harness/v0.35.3...agent-harness/v0.35.4) (2026-08-19)
9
16
 
10
17
 
data/README.md CHANGED
@@ -179,13 +179,13 @@ end
179
179
  # Ask the harness which Claude CLI install contract it supports
180
180
  contract = AgentHarness.install_contract(:claude)
181
181
  puts contract[:install][:command]
182
- # => "tmp_script=$(mktemp) && ... && bash \"$tmp_script\" 2.1.92"
182
+ # => "tmp_script=$(mktemp) && ... && bash \"$tmp_script\" 2.1.233"
183
183
  puts contract[:install][:post_install_binary_path]
184
184
  # => "$HOME/.local/bin/claude"
185
185
  puts contract[:supported_versions][:default]
186
- # => "2.1.92"
186
+ # => "2.1.233"
187
187
  puts contract[:supported_versions][:requirement]
188
- # => ">= 2.1.92, < 2.2.0"
188
+ # => ">= 2.1.233, < 2.2.0"
189
189
 
190
190
  # List all registered providers
191
191
  AgentHarness::Providers::Registry.instance.all
@@ -27,7 +27,7 @@ module AgentHarness
27
27
 
28
28
  # Model name pattern for Anthropic Claude models
29
29
  MODEL_PATTERN = /^claude-[\d.-]+-(?:opus|sonnet|haiku)(?:-\d{8})?$/i
30
- SUPPORTED_CLI_VERSION = "2.1.92"
30
+ SUPPORTED_CLI_VERSION = "2.1.233"
31
31
  SUPPORTED_CLI_REQUIREMENT = Gem::Requirement.new(">= #{SUPPORTED_CLI_VERSION}", "< 2.2.0").freeze
32
32
 
33
33
  # Matches semver (e.g. "2.1.92"), optional pre-release (e.g. "2.1.92-beta.1"),
@@ -1,5 +1,5 @@
1
1
  # frozen_string_literal: true
2
2
 
3
3
  module AgentHarness
4
- VERSION = "0.35.4"
4
+ VERSION = "0.35.5"
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.35.4
4
+ version: 0.35.5
5
5
  platform: ruby
6
6
  authors:
7
7
  - Bart Agapinan