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/budget-alert.md

This file was deleted.

5 changes: 0 additions & 5 deletions .changeset/cli-version.md

This file was deleted.

5 changes: 0 additions & 5 deletions .changeset/project-ai-budget.md

This file was deleted.

8 changes: 0 additions & 8 deletions .changeset/zod-4.md

This file was deleted.

10 changes: 10 additions & 0 deletions apps/api/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,15 @@
# @flakemetry/api

## 0.0.4

### Patch Changes

- Updated dependencies [cd50173]
- Updated dependencies [eae093b]
- @flakemetry/contracts@0.3.0
- @flakemetry/queries@0.0.4
- @flakemetry/storage@0.0.4

## 0.0.3

### Patch Changes
Expand Down
2 changes: 1 addition & 1 deletion apps/api/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@flakemetry/api",
"version": "0.0.3",
"version": "0.0.4",
"private": true,
"description": "Ingestion and query API service",
"type": "module",
Expand Down
13 changes: 13 additions & 0 deletions apps/web/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,18 @@
# @flakemetry/web

## 0.0.4

### Patch Changes

- Updated dependencies [6f71e52]
- Updated dependencies [cd50173]
- Updated dependencies [eae093b]
- @flakemetry/notify@0.1.0
- @flakemetry/contracts@0.3.0
- @flakemetry/core@0.1.3
- @flakemetry/queries@0.0.4
- @flakemetry/storage@0.0.4

## 0.0.3

### Patch Changes
Expand Down
2 changes: 1 addition & 1 deletion apps/web/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@flakemetry/web",
"version": "0.0.3",
"version": "0.0.4",
"private": true,
"description": "Next.js dashboard",
"type": "module",
Expand Down
14 changes: 14 additions & 0 deletions apps/worker/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,19 @@
# @flakemetry/worker

## 0.0.4

### Patch Changes

- Updated dependencies [6f71e52]
- Updated dependencies [cd50173]
- Updated dependencies [eae093b]
- @flakemetry/notify@0.1.0
- @flakemetry/contracts@0.3.0
- @flakemetry/ai@0.0.4
- @flakemetry/core@0.1.3
- @flakemetry/queries@0.0.4
- @flakemetry/storage@0.0.4

## 0.0.3

### Patch Changes
Expand Down
2 changes: 1 addition & 1 deletion apps/worker/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@flakemetry/worker",
"version": "0.0.3",
"version": "0.0.4",
"private": true,
"description": "Processing workers: identity, scoring, clustering, RCA",
"type": "module",
Expand Down
12 changes: 12 additions & 0 deletions packages/ai/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,17 @@
# @flakemetry/ai

## 0.0.4

### Patch Changes

- eae093b: Move to zod 4. The validation shape on the wire is unchanged — `{ error, issues: [{ path, message }] }` — but the messages are more specific: an invalid commit sha now reports the pattern it had to match instead of a bare "Invalid".

`zod-to-json-schema` is gone; zod 4 generates JSON Schema itself, which the OpenAPI document and the API reference now use.

- Updated dependencies [cd50173]
- Updated dependencies [eae093b]
- @flakemetry/contracts@0.3.0

## 0.0.3

### Patch Changes
Expand Down
2 changes: 1 addition & 1 deletion packages/ai/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@flakemetry/ai",
"version": "0.0.3",
"version": "0.0.4",
"description": "LLM provider abstraction and root-cause analysis",
"license": "MIT",
"author": "Andrii Kohut",
Expand Down
10 changes: 10 additions & 0 deletions packages/cli/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,15 @@
# @flakemetry/cli

## 0.2.2

### Patch Changes

- 9ea296a: `flakemetry --version` reported `0.0.0` regardless of the installed version. It now reports the real one, baked in at build time — the version is the first thing anyone is asked for in a bug report, and `0.0.0` identified nothing.
- Updated dependencies [cd50173]
- Updated dependencies [eae093b]
- @flakemetry/contracts@0.3.0
- @flakemetry/sdk@0.2.3

## 0.2.1

### Patch Changes
Expand Down
2 changes: 1 addition & 1 deletion packages/cli/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@flakemetry/cli",
"version": "0.2.1",
"version": "0.2.2",
"description": "Command line interface for Flakemetry",
"license": "MIT",
"author": "Andrii Kohut",
Expand Down
9 changes: 9 additions & 0 deletions packages/contracts/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,14 @@
# @flakemetry/contracts

## 0.3.0

### Minor Changes

- cd50173: The daily LLM token budget is now a per-project policy field. It was read only from the environment, so `ai.dailyTokenBudget` in a project's `flakemetry.yml` was documented, validated and ignored — one instance could have exactly one budget.
- eae093b: Move to zod 4. The validation shape on the wire is unchanged — `{ error, issues: [{ path, message }] }` — but the messages are more specific: an invalid commit sha now reports the pattern it had to match instead of a bare "Invalid".

`zod-to-json-schema` is gone; zod 4 generates JSON Schema itself, which the OpenAPI document and the API reference now use.

## 0.2.1

### Patch Changes
Expand Down
2 changes: 1 addition & 1 deletion packages/contracts/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@flakemetry/contracts",
"version": "0.2.1",
"version": "0.3.0",
"description": "Shared zod schemas and inferred types across ingestion, api, worker and web",
"license": "MIT",
"author": "Andrii Kohut",
Expand Down
8 changes: 8 additions & 0 deletions packages/core/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,13 @@
# @flakemetry/core

## 0.1.3

### Patch Changes

- Updated dependencies [cd50173]
- Updated dependencies [eae093b]
- @flakemetry/contracts@0.3.0

## 0.1.2

### Patch Changes
Expand Down
2 changes: 1 addition & 1 deletion packages/core/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@flakemetry/core",
"version": "0.1.2",
"version": "0.1.3",
"description": "Pure domain logic: test identity and flaky scoring",
"license": "MIT",
"author": "Andrii Kohut",
Expand Down
9 changes: 9 additions & 0 deletions packages/jest-reporter/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,14 @@
# @flakemetry/jest-reporter

## 0.1.5

### Patch Changes

- Updated dependencies [cd50173]
- Updated dependencies [eae093b]
- @flakemetry/contracts@0.3.0
- @flakemetry/sdk@0.2.3

## 0.1.4

### Patch Changes
Expand Down
2 changes: 1 addition & 1 deletion packages/jest-reporter/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@flakemetry/jest-reporter",
"version": "0.1.4",
"version": "0.1.5",
"description": "Jest reporter emitting OpenTelemetry test spans to Flakemetry",
"license": "MIT",
"author": "Andrii Kohut",
Expand Down
7 changes: 7 additions & 0 deletions packages/notify/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
# @flakemetry/notify

## 0.1.0

### Minor Changes

- 6f71e52: New `ai_budget_spent` notification, sent when a project's daily LLM token budget runs out and root-cause analysis pauses. Subscribe on any channel — Slack, Discord, email or a signed webhook. Deduplicated per project per day, since the budget is re-checked on every run.
2 changes: 1 addition & 1 deletion packages/notify/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@flakemetry/notify",
"version": "0.0.1",
"version": "0.1.0",
"description": "Notification abstraction and channel adapters (Slack, Discord)",
"license": "MIT",
"author": "Andrii Kohut",
Expand Down
10 changes: 10 additions & 0 deletions packages/queries/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,15 @@
# @flakemetry/queries

## 0.0.4

### Patch Changes

- Updated dependencies [cd50173]
- Updated dependencies [eae093b]
- @flakemetry/contracts@0.3.0
- @flakemetry/ai@0.0.4
- @flakemetry/core@0.1.3

## 0.0.3

### Patch Changes
Expand Down
2 changes: 1 addition & 1 deletion packages/queries/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@flakemetry/queries",
"version": "0.0.3",
"version": "0.0.4",
"private": true,
"description": "Tenant-scoped read queries shared by the api and the dashboard",
"type": "module",
Expand Down
9 changes: 9 additions & 0 deletions packages/reporter/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,14 @@
# @flakemetry/playwright-reporter

## 0.1.4

### Patch Changes

- Updated dependencies [cd50173]
- Updated dependencies [eae093b]
- @flakemetry/contracts@0.3.0
- @flakemetry/sdk@0.2.3

## 0.1.3

### Patch Changes
Expand Down
2 changes: 1 addition & 1 deletion packages/reporter/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@flakemetry/playwright-reporter",
"version": "0.1.3",
"version": "0.1.4",
"description": "Playwright reporter emitting OpenTelemetry test spans",
"license": "MIT",
"author": "Andrii Kohut",
Expand Down
9 changes: 9 additions & 0 deletions packages/sdk/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,14 @@
# @flakemetry/sdk

## 0.2.3

### Patch Changes

- Updated dependencies [cd50173]
- Updated dependencies [eae093b]
- @flakemetry/contracts@0.3.0
- @flakemetry/core@0.1.3

## 0.2.2

### Patch Changes
Expand Down
2 changes: 1 addition & 1 deletion packages/sdk/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@flakemetry/sdk",
"version": "0.2.2",
"version": "0.2.3",
"description": "OpenTelemetry test instrumentation and ingest client",
"license": "MIT",
"author": "Andrii Kohut",
Expand Down
8 changes: 8 additions & 0 deletions packages/storage/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,13 @@
# @flakemetry/storage

## 0.0.4

### Patch Changes

- Updated dependencies [cd50173]
- Updated dependencies [eae093b]
- @flakemetry/contracts@0.3.0

## 0.0.3

### Patch Changes
Expand Down
2 changes: 1 addition & 1 deletion packages/storage/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@flakemetry/storage",
"version": "0.0.3",
"version": "0.0.4",
"description": "Object storage abstraction for test artifacts",
"license": "MIT",
"author": "Andrii Kohut",
Expand Down
9 changes: 9 additions & 0 deletions packages/vitest-reporter/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,14 @@
# @flakemetry/vitest-reporter

## 0.1.4

### Patch Changes

- Updated dependencies [cd50173]
- Updated dependencies [eae093b]
- @flakemetry/contracts@0.3.0
- @flakemetry/sdk@0.2.3

## 0.1.3

### Patch Changes
Expand Down
2 changes: 1 addition & 1 deletion packages/vitest-reporter/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@flakemetry/vitest-reporter",
"version": "0.1.3",
"version": "0.1.4",
"description": "Vitest reporter emitting OpenTelemetry test spans to Flakemetry",
"license": "MIT",
"author": "Andrii Kohut",
Expand Down
Loading