From 399d5e02ffda48d606053e36896cf1c108946e80 Mon Sep 17 00:00:00 2001 From: Jonghyeon Ko Date: Sun, 22 Mar 2026 00:34:02 +0900 Subject: [PATCH 1/3] chore: add build step in release workflow --- .github/workflows/release.yml | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 1969605f566..07232b1e798 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -2,7 +2,7 @@ name: Release on: push: - branches: [main, 'v[0-9]', '*-pre', '*-maint'] + branches: [main, "v[0-9]", "*-pre", "*-maint"] concurrency: group: ${{ github.workflow }}-${{ github.ref }} @@ -27,6 +27,8 @@ jobs: fetch-depth: 0 - name: Setup Tools uses: TanStack/config/.github/setup@main + - name: Run Build + run: pnpm run build:all - name: Determine dist-tag id: dist-tag run: | @@ -47,8 +49,8 @@ jobs: with: version: pnpm run changeset:version publish: pnpm run changeset:publish ${{ steps.dist-tag.outputs.tag && format('--tag {0}', steps.dist-tag.outputs.tag) }} - title: 'ci: Version Packages' - commit: 'ci: changeset release' + title: "ci: Version Packages" + commit: "ci: changeset release" env: GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} - name: Create GitHub Release From 78c982a267edcb4039214e81f9aaca483b908426 Mon Sep 17 00:00:00 2001 From: Jonghyeon Ko Date: Sun, 22 Mar 2026 00:44:56 +0900 Subject: [PATCH 2/3] chore: standardize quotes in release workflow configuration --- .github/workflows/release.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 07232b1e798..b76715680eb 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -2,7 +2,7 @@ name: Release on: push: - branches: [main, "v[0-9]", "*-pre", "*-maint"] + branches: [main, 'v[0-9]', '*-pre', '*-maint'] concurrency: group: ${{ github.workflow }}-${{ github.ref }} @@ -49,8 +49,8 @@ jobs: with: version: pnpm run changeset:version publish: pnpm run changeset:publish ${{ steps.dist-tag.outputs.tag && format('--tag {0}', steps.dist-tag.outputs.tag) }} - title: "ci: Version Packages" - commit: "ci: changeset release" + title: 'ci: Version Packages' + commit: 'ci: changeset release' env: GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} - name: Create GitHub Release From b03aaed521095e199e450a3947d3d2e61dbb4c9e Mon Sep 17 00:00:00 2001 From: Jonghyeon Ko Date: Sun, 22 Mar 2026 00:47:21 +0900 Subject: [PATCH 3/3] chore: add changeset for patch versions across multiple TanStack packages and fix build directory exclusion issue --- .changeset/pretty-canyons-fetch.md | 28 ++++++++++++++++++++++++++++ 1 file changed, 28 insertions(+) create mode 100644 .changeset/pretty-canyons-fetch.md diff --git a/.changeset/pretty-canyons-fetch.md b/.changeset/pretty-canyons-fetch.md new file mode 100644 index 00000000000..6c485a79c9c --- /dev/null +++ b/.changeset/pretty-canyons-fetch.md @@ -0,0 +1,28 @@ +--- +'@tanstack/angular-query-experimental': patch +'@tanstack/angular-query-persist-client': patch +'@tanstack/eslint-plugin-query': patch +'@tanstack/preact-query': patch +'@tanstack/preact-query-devtools': patch +'@tanstack/preact-query-persist-client': patch +'@tanstack/query-async-storage-persister': patch +'@tanstack/query-broadcast-client-experimental': patch +'@tanstack/query-core': patch +'@tanstack/query-devtools': patch +'@tanstack/query-persist-client-core': patch +'@tanstack/query-sync-storage-persister': patch +'@tanstack/react-query': patch +'@tanstack/react-query-devtools': patch +'@tanstack/react-query-next-experimental': patch +'@tanstack/react-query-persist-client': patch +'@tanstack/solid-query': patch +'@tanstack/solid-query-devtools': patch +'@tanstack/solid-query-persist-client': patch +'@tanstack/svelte-query': patch +'@tanstack/svelte-query-devtools': patch +'@tanstack/svelte-query-persist-client': patch +'@tanstack/vue-query': patch +'@tanstack/vue-query-devtools': patch +--- + +fix(\*): resolve issue about excluded build directory