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
5 changes: 0 additions & 5 deletions .changeset/benchsdk-cli-initial.md

This file was deleted.

5 changes: 0 additions & 5 deletions .changeset/benchsdk-cli-no-available-participants.md

This file was deleted.

5 changes: 0 additions & 5 deletions .changeset/benchsdk-client-participants.md

This file was deleted.

10 changes: 10 additions & 0 deletions packages/benchsdk-cli/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
# @benchsdk/cli

## 0.1.1

### Patch Changes

- 1769324: Initial publication of `@benchsdk/cli`, the benchmark runner framework. Provides `LogBuffer`, `loggedStep`, `uploadWorkerLog`, and `defineBenchmark` for building self-contained benchmark scripts that report to the benchmarks platform via `@benchsdk/client`.
- 1769324: `runBenchmark()` now rejects with the exported `NoAvailableParticipantsError` (carrying the `skipped` participants and their missing env vars) instead of a plain `Error` when every participant is env-gated out, so callers can treat an unprovisioned provider as a skip rather than a failure.
- Updated dependencies [1769324]
- @benchsdk/client@0.3.0
2 changes: 1 addition & 1 deletion packages/benchsdk-cli/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@benchsdk/cli",
"version": "0.1.0",
"version": "0.1.1",
"private": false,
"type": "module",
"description": "Benchmark runner framework: logging, step helpers, and declarative config for @benchsdk/client",
Expand Down
6 changes: 6 additions & 0 deletions packages/benchsdk/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,11 @@
# @benchsdk/client

## 0.3.0

### Minor Changes

- 1769324: Add participant helpers to the public API: the `BaseParticipant` type plus `selectParticipants()` (filter by `--provider` names) and `filterParticipantsByEnv()` (split participants by whether their `requiredEnvVars` are set).

## 0.2.1

### Patch Changes
Expand Down
2 changes: 1 addition & 1 deletion packages/benchsdk/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@benchsdk/client",
"version": "0.2.1",
"version": "0.3.0",
"private": false,
"type": "module",
"description": "Client and worker helpers for the ComputeSDK benchmark orchestrator",
Expand Down