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 @@ -2,6 +2,12 @@

All notable changes are documented here.

## [0.3.0-alpha.2] - 2026-07-19

### Changed

- Browser admission-control conformance now uses an active-session barrier and deterministic cleanup, removing timing-dependent WebKit retries.

## [0.3.0-alpha.1] - 2026-07-19

### Added
Expand Down
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -46,8 +46,8 @@ flowchart LR
The alpha is distributed as a GitHub release archive rather than an npm registry publication.

```bash
curl -LO https://github.com/aantenore/tabloom/releases/download/v0.3.0-alpha.1/tabloom-0.3.0-alpha.1.tgz
pnpm add ./tabloom-0.3.0-alpha.1.tgz
curl -LO https://github.com/aantenore/tabloom/releases/download/v0.3.0-alpha.2/tabloom-0.3.0-alpha.2.tgz
pnpm add ./tabloom-0.3.0-alpha.2.tgz
```

Verify the adjacent `.sha256` asset before installing in a controlled delivery pipeline.
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@aantenore/tabloom",
"version": "0.3.0-alpha.1",
"version": "0.3.0-alpha.2",
"description": "A provider-neutral control plane for one fenced browser inference runtime across pages and SharedWorkers.",
"type": "module",
"license": "Apache-2.0",
Expand Down
31 changes: 28 additions & 3 deletions tests/e2e/shared-worker.spec.ts
Original file line number Diff line number Diff line change
Expand Up @@ -106,17 +106,41 @@ test.describe('TabLoom adaptive SharedWorker topology', () => {
context,
}) => {
const pages = await openCluster(context, 5, '?mode=shared-worker');
const holder = pages[0]!;
const contenders = pages.slice(1);
const work = 'bounded-work-'.repeat(512);
await Promise.all(
pages.map((page) =>
expect(page.locator('#readiness')).toHaveText('ready'),
),
);
await holder.locator('#prompt').fill(`holder-${work}`);
await Promise.all(
pages.map((page, index) =>
page.locator('#prompt').fill(`${index}-${'bounded-work-'.repeat(24)}`),
contenders.map((page, index) =>
page.locator('#prompt').fill(`contender-${index}-${work}`),
),
);
await Promise.all(pages.map((page) => page.locator('#send').click()));
await holder.locator('#send').click();
await expect(holder.locator('#output')).not.toHaveText('');
await Promise.all(
contenders.map((page) => page.locator('#send').dispatchEvent('click')),
);
await expect
.poll(async () => {
const errors = await Promise.all(
pages.map((page) => page.locator('#error').textContent()),
);
return errors.filter((error) => error === 'BACKPRESSURE').length;
})
.toBe(1);
await Promise.all(
pages.map(async (page) => {
const cancel = page.locator('#cancel');
if (await cancel.isEnabled()) {
await cancel.dispatchEvent('click');
}
}),
);
await Promise.all(
pages.map((page) =>
expect(page.locator('#request-status')).toHaveText(/completed|failed/u),
Expand All @@ -126,6 +150,7 @@ test.describe('TabLoom adaptive SharedWorker topology', () => {
pages.map((page) => page.locator('#error').textContent()),
);
expect(errors.filter((error) => error === 'BACKPRESSURE')).toHaveLength(1);
expect(errors.filter((error) => error === 'CANCELLED')).toHaveLength(4);
});
});

Expand Down
Loading