From ac0aba3d129a083e8cfeac1d8f3fcfeca4193186 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Thu, 4 Jun 2026 15:03:09 +0000 Subject: [PATCH] chore: release --- .changeset/a11y-chromium-auto-install.md | 5 ----- .changeset/a11y-node-detail.md | 5 ----- .changeset/agents-procedural-rewrite.md | 5 ----- .changeset/question-shell-refactor.md | 5 ----- .changeset/scaffold-workspace-readme.md | 5 ----- .changeset/warn-malformed-course.md | 5 ----- packages/create-tessera/CHANGELOG.md | 6 ++++++ packages/create-tessera/package.json | 2 +- packages/tessera-learn/CHANGELOG.md | 10 ++++++++++ packages/tessera-learn/package.json | 2 +- 10 files changed, 18 insertions(+), 32 deletions(-) delete mode 100644 .changeset/a11y-chromium-auto-install.md delete mode 100644 .changeset/a11y-node-detail.md delete mode 100644 .changeset/agents-procedural-rewrite.md delete mode 100644 .changeset/question-shell-refactor.md delete mode 100644 .changeset/scaffold-workspace-readme.md delete mode 100644 .changeset/warn-malformed-course.md diff --git a/.changeset/a11y-chromium-auto-install.md b/.changeset/a11y-chromium-auto-install.md deleted file mode 100644 index 1af8927..0000000 --- a/.changeset/a11y-chromium-auto-install.md +++ /dev/null @@ -1,5 +0,0 @@ ---- -'tessera-learn': patch ---- - -`tessera a11y` / `tessera check` now auto-install Chromium for Playwright on first use instead of failing with a manual instruction. diff --git a/.changeset/a11y-node-detail.md b/.changeset/a11y-node-detail.md deleted file mode 100644 index 1e5d126..0000000 --- a/.changeset/a11y-node-detail.md +++ /dev/null @@ -1,5 +0,0 @@ ---- -'tessera-learn': patch ---- - -a11y audit now reports which element triggered each violation: `a11y-report.json` records the selector, HTML, and axe's failure summary per node, and the console output lists the offending selector and failure summary. diff --git a/.changeset/agents-procedural-rewrite.md b/.changeset/agents-procedural-rewrite.md deleted file mode 100644 index af7554b..0000000 --- a/.changeset/agents-procedural-rewrite.md +++ /dev/null @@ -1,5 +0,0 @@ ---- -'tessera-learn': patch ---- - -Rewrite the course authoring guide (`AGENTS.md`) into a procedural, LLM-facing instruction set — converting prose to rules/tables and trimming runtime-internal reference that authors never write. diff --git a/.changeset/question-shell-refactor.md b/.changeset/question-shell-refactor.md deleted file mode 100644 index 8337b5e..0000000 --- a/.changeset/question-shell-refactor.md +++ /dev/null @@ -1,5 +0,0 @@ ---- -'tessera-learn': patch ---- - -Internal refactor with no author-facing changes: the four question widgets now share a `QuestionShell` component for their standalone-vs-quiz render, and the LMS adapter labels and cmi5 context builder were de-duplicated. diff --git a/.changeset/scaffold-workspace-readme.md b/.changeset/scaffold-workspace-readme.md deleted file mode 100644 index 8d0d041..0000000 --- a/.changeset/scaffold-workspace-readme.md +++ /dev/null @@ -1,5 +0,0 @@ ---- -'create-tessera': patch ---- - -Scaffolded workspaces now include a human-facing `README.md` and a "Project notes" section in `AGENTS.md` where users add their own context for the agent. diff --git a/.changeset/warn-malformed-course.md b/.changeset/warn-malformed-course.md deleted file mode 100644 index 35e3355..0000000 --- a/.changeset/warn-malformed-course.md +++ /dev/null @@ -1,5 +0,0 @@ ---- -'tessera-learn': patch ---- - -A course directory under `courses/` that has a `pages/` folder but is missing its `course.config.js` is now reported as skipped when listing the workspace's courses, instead of being silently dropped. diff --git a/packages/create-tessera/CHANGELOG.md b/packages/create-tessera/CHANGELOG.md index aa87156..167b7b8 100644 --- a/packages/create-tessera/CHANGELOG.md +++ b/packages/create-tessera/CHANGELOG.md @@ -1,5 +1,11 @@ # create-tessera +## 0.2.2 + +### Patch Changes + +- 455a7d4: Scaffolded workspaces now include a human-facing `README.md` and a "Project notes" section in `AGENTS.md` where users add their own context for the agent. + ## 0.2.1 ### Patch Changes diff --git a/packages/create-tessera/package.json b/packages/create-tessera/package.json index e0b1912..a862ab1 100644 --- a/packages/create-tessera/package.json +++ b/packages/create-tessera/package.json @@ -1,6 +1,6 @@ { "name": "create-tessera", - "version": "0.2.1", + "version": "0.2.2", "description": "Scaffold a new Tessera course.", "keywords": [ "tessera", diff --git a/packages/tessera-learn/CHANGELOG.md b/packages/tessera-learn/CHANGELOG.md index 64f0ebe..3f52849 100644 --- a/packages/tessera-learn/CHANGELOG.md +++ b/packages/tessera-learn/CHANGELOG.md @@ -1,5 +1,15 @@ # tessera-learn +## 0.2.2 + +### Patch Changes + +- 663357a: `tessera a11y` / `tessera check` now auto-install Chromium for Playwright on first use instead of failing with a manual instruction. +- fc41b00: a11y audit now reports which element triggered each violation: `a11y-report.json` records the selector, HTML, and axe's failure summary per node, and the console output lists the offending selector and failure summary. +- ba866d1: Rewrite the course authoring guide (`AGENTS.md`) into a procedural, LLM-facing instruction set — converting prose to rules/tables and trimming runtime-internal reference that authors never write. +- 701a18d: Internal refactor with no author-facing changes: the four question widgets now share a `QuestionShell` component for their standalone-vs-quiz render, and the LMS adapter labels and cmi5 context builder were de-duplicated. +- 7978096: A course directory under `courses/` that has a `pages/` folder but is missing its `course.config.js` is now reported as skipped when listing the workspace's courses, instead of being silently dropped. + ## 0.2.1 ### Patch Changes diff --git a/packages/tessera-learn/package.json b/packages/tessera-learn/package.json index 3ab44a5..3d30617 100644 --- a/packages/tessera-learn/package.json +++ b/packages/tessera-learn/package.json @@ -1,6 +1,6 @@ { "name": "tessera-learn", - "version": "0.2.1", + "version": "0.2.2", "description": "LMS tracking runtime for interactive learning content. One adapter layer (SCORM 1.2, SCORM 2004 4th Edition, cmi5, static Web), your choice of components.", "keywords": [ "svelte",