From 223c0d8c43c014fd1b382466723fb8822a5321c1 Mon Sep 17 00:00:00 2001 From: Jake Ruesink Date: Wed, 21 Jan 2026 21:09:25 -0600 Subject: [PATCH 1/2] docs: add missing build fix to 0.22.6 changelog --- packages/components/CHANGELOG.md | 1 + 1 file changed, 1 insertion(+) diff --git a/packages/components/CHANGELOG.md b/packages/components/CHANGELOG.md index 21ba8ba..7d5e4f3 100644 --- a/packages/components/CHANGELOG.md +++ b/packages/components/CHANGELOG.md @@ -6,6 +6,7 @@ - 39156a7: Enable typing to open and search select dropdowns. When focused on a select trigger, typing any printable character will open the dropdown, focus the search input, and pre-populate the search with the typed character. - 6921b25: Fix cursor positioning when focusing search input in select dropdowns. Prevents text selection when opening select dropdown via typing, allowing users to continue typing without overwriting the first character. +- 1860649: Fix circular dependency in DataTableFilter import by importing directly from component file instead of index. - bca6619: Add uncontrolled mode to FormError component via a manual `message` prop. ## 0.22.2 From ec7f2dacb037757e9d5293b82cbf04cdf00da385 Mon Sep 17 00:00:00 2001 From: Jake Ruesink Date: Wed, 21 Jan 2026 21:12:52 -0600 Subject: [PATCH 2/2] docs: add comments clarifying OIDC setup in workflow --- .github/workflows/release.yml | 3 +++ 1 file changed, 3 insertions(+) diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 433e32f..29ab75f 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -24,6 +24,7 @@ jobs: with: node-version: '22' registry-url: 'https://registry.npmjs.org' + # registry-url enables OIDC authentication for npm publish - name: Enable Corepack run: corepack enable @@ -43,3 +44,5 @@ jobs: env: GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} # No NPM_TOKEN needed - using trusted publishing via OIDC + # The registry-url in setup-node@v4 enables OIDC authentication + # npm CLI 11.5.1+ automatically detects OIDC and uses it for publish