From 24bff85005855d683a00c88f118af76d7eccee44 Mon Sep 17 00:00:00 2001 From: Hiepler Date: Wed, 15 Apr 2026 11:37:45 +0200 Subject: [PATCH 1/2] fix: republish bias-testing API on @euconform/core as 1.4.0 The Apr 15 release bumped core 1.2.0 -> 1.3.0, but @euconform/core@1.3.0 had already been published on Apr 10 from the ECEF release. As a result, the bias-testing additions (./datasets export, CapabilityCache, loadCrowsPairsDataset, sideEffects flag) never made it to npm. Adds a fresh changeset bumping core to 1.4.0 (and dependents to patch) and removes the duplicate 1.3.0 entry that was prepended to the core changelog by the previous release run. Co-Authored-By: Claude Opus 4.6 (1M context) --- .changeset/republish-core-bias-testing-api.md | 11 +++++++++++ packages/core/CHANGELOG.md | 6 ------ 2 files changed, 11 insertions(+), 6 deletions(-) create mode 100644 .changeset/republish-core-bias-testing-api.md diff --git a/.changeset/republish-core-bias-testing-api.md b/.changeset/republish-core-bias-testing-api.md new file mode 100644 index 0000000..323cf70 --- /dev/null +++ b/.changeset/republish-core-bias-testing-api.md @@ -0,0 +1,11 @@ +--- +"@euconform/core": minor +--- + +Republish bias-testing API on `@euconform/core`. The previous release attempted to bump core to `1.3.0`, but that version had already been published from the ECEF release on April 10 — so the new exports never made it to npm. + +Adds (re-published as `1.4.0`): + +- `./datasets` subpath export with `loadCrowsPairsDataset(language)` +- `CapabilityCache` interface and `OllamaClient` constructor argument for Node.js environments +- `sideEffects: false` flag for tree-shakeable browser bundles diff --git a/packages/core/CHANGELOG.md b/packages/core/CHANGELOG.md index 40984bb..621f85b 100644 --- a/packages/core/CHANGELOG.md +++ b/packages/core/CHANGELOG.md @@ -4,12 +4,6 @@ ### Minor Changes -- 7b8b23f: Add CrowS-Pairs bias testing to CLI with standalone `euconform bias` command and `euconform scan --bias` integration. CrowS-Pairs datasets moved to core package with `loadCrowsPairsDataset()` loader. CapabilityCache abstraction enables OllamaClient usage in Node.js environments. New `/bias-check` page on documentation site positioning bias testing as key differentiator. - -## 1.3.0 - -### Minor Changes - - caae33d: ECEF Stage 2: Add bundle.v1 manifest with SHA-256 integrity hashes and optional ZIP transport. Add verify command to CLI for manifest, directory, and ZIP validation. First public release of @euconform/cli with scan, verify, and --zip support. ## 1.2.0 From 1e962c6927380257cf597c853bc0fff02e0a0a09 Mon Sep 17 00:00:00 2001 From: Hiepler Date: Wed, 15 Apr 2026 11:50:26 +0200 Subject: [PATCH 2/2] remove unused typescript-config dependency from Dockerfile and add CLAUDE.md context file --- apps/docs/Dockerfile | 1 - 1 file changed, 1 deletion(-) diff --git a/apps/docs/Dockerfile b/apps/docs/Dockerfile index 1c530a0..c9c3f22 100644 --- a/apps/docs/Dockerfile +++ b/apps/docs/Dockerfile @@ -21,7 +21,6 @@ COPY --from=deps /app/node_modules ./node_modules COPY --from=deps /app/apps/docs/node_modules ./apps/docs/node_modules COPY --from=deps /app/packages/ui/node_modules ./packages/ui/node_modules COPY --from=deps /app/packages/tailwind-config/node_modules ./packages/tailwind-config/node_modules -COPY --from=deps /app/packages/typescript-config/node_modules ./packages/typescript-config/node_modules COPY . .