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
6 changes: 6 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,12 @@ All notable changes to `@tangle-network/agent-eval` and its sibling `agent-eval-

---

## [0.142.2] - 2026-08-02 - current shared type cohort

### Changed

- Align the exact `@tangle-network/agent-core` and `@tangle-network/agent-interface` dependencies with `0.4.33` and `0.43.0`, so Eval, Runtime, Knowledge, and Sandbox share the current canonical profile contract.

## [0.142.1] - 2026-08-02 - current shared type patch

### Changed
Expand Down
2 changes: 1 addition & 1 deletion clients/python/pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ build-backend = "hatchling.build"

[project]
name = "agent-eval-rpc"
version = "0.142.1"
version = "0.142.2"
description = "Python RPC client, official optimizer bridge, and DSPy metric adapter for @tangle-network/agent-eval."
readme = "README.md"
requires-python = ">=3.10"
Expand Down
2 changes: 1 addition & 1 deletion clients/python/src/agent_eval_rpc/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,7 @@
try:
__version__ = version("agent-eval-rpc")
except PackageNotFoundError:
__version__ = "0.142.1"
__version__ = "0.142.2"

__all__ = [
"Client",
Expand Down
2 changes: 1 addition & 1 deletion clients/python/uv.lock

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

6 changes: 3 additions & 3 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@tangle-network/agent-eval",
"version": "0.142.1",
"version": "0.142.2",
"description": "Evaluate and improve AI agents from runs, traces, judges, and feedback. Compare candidates, cluster failures, measure lift, and gate releases.",
"homepage": "https://github.com/tangle-network/agent-eval#readme",
"repository": {
Expand Down Expand Up @@ -168,8 +168,8 @@
"dependencies": {
"@asteasolutions/zod-to-openapi": "^9.1.0",
"@hono/node-server": "^2.0.12",
"@tangle-network/agent-core": "0.4.32",
"@tangle-network/agent-interface": "0.42.1",
"@tangle-network/agent-core": "0.4.33",
"@tangle-network/agent-interface": "0.43.0",
"@tangle-network/agent-trace-contract": "^1.0.2",
"hono": "^4.12.32",
"linear-sum-assignment": "1.0.9",
Expand Down
22 changes: 11 additions & 11 deletions pnpm-lock.yaml

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

4 changes: 2 additions & 2 deletions scripts/verify-package-exports.mjs
Original file line number Diff line number Diff line change
Expand Up @@ -45,8 +45,8 @@ try {
throw new Error(`packed package retains removed dependency ${removedSdkPackage}`)
}
const expectedDependencyCohort = {
'@tangle-network/agent-core': '0.4.32',
'@tangle-network/agent-interface': '0.42.1',
'@tangle-network/agent-core': '0.4.33',
'@tangle-network/agent-interface': '0.43.0',
}
for (const [name, version] of Object.entries(expectedDependencyCohort)) {
if (packageJson.dependencies?.[name] !== version) {
Expand Down
2 changes: 1 addition & 1 deletion src/analyst/benchmark-implementation.ts
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ export const ANALYST_BENCHMARK_DEPENDENCY_LOCK_FILES = Object.freeze([
])

export const ANALYST_BENCHMARK_DEPENDENCY_LOCK_SHA256 =
'4e54618ab6708e971bfd8da13c658ac60ce433401c6ead0b061d140800e2dff2'
'55744d067f70ffcb0223eae6121739021a9e2567208cfd14098582bb73cdbf97'

/** The published benchmark evidence was produced at this package version, by
* the retired one-shot direct runner, before trace analysts moved to the
Expand Down
Loading