Skip to content

Commit dd5f9c7

Browse files
committed
Merge remote-tracking branch 'origin/main' into feat/angular-adapter
2 parents 4ebeb9e + 604c96d commit dd5f9c7

File tree

61 files changed

+4090
-3140
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

61 files changed

+4090
-3140
lines changed

.changeset/config.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
{
2-
"$schema": "https://unpkg.com/@changesets/config@3.1.1/schema.json",
2+
"$schema": "https://unpkg.com/@changesets/config@3.1.2/schema.json",
33
"changelog": [
44
"@svitejs/changesets-changelog-github-compact",
55
{ "repo": "TanStack/devtools" }

.changeset/huge-crabs-prove.md

Lines changed: 0 additions & 8 deletions
This file was deleted.

.changeset/thirty-spies-fetch.md

Lines changed: 0 additions & 9 deletions
This file was deleted.

.github/workflows/autofix.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -18,9 +18,9 @@ jobs:
1818
runs-on: ubuntu-latest
1919
steps:
2020
- name: Checkout
21-
uses: actions/checkout@v6.0.1
21+
uses: actions/checkout@v6.0.2
2222
- name: Setup Tools
23-
uses: tanstack/config/.github/setup@main
23+
uses: TanStack/config/.github/setup@main
2424
- name: Fix formatting
2525
run: pnpm format
2626
# - name: Regenerate docs

.github/workflows/pr.yml

Lines changed: 16 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -2,10 +2,6 @@ name: PR
22

33
on:
44
pull_request:
5-
paths-ignore:
6-
- 'docs/**'
7-
- 'media/**'
8-
- '**/*.md'
95

106
concurrency:
117
group: ${{ github.workflow }}-${{ github.event.number || github.ref }}
@@ -16,18 +12,19 @@ env:
1612

1713
permissions:
1814
contents: read
15+
pull-requests: write
1916

2017
jobs:
2118
test:
2219
name: Test
2320
runs-on: ubuntu-latest
2421
steps:
2522
- name: Checkout
26-
uses: actions/checkout@v6.0.1
23+
uses: actions/checkout@v6.0.2
2724
with:
2825
fetch-depth: 0
2926
- name: Setup Tools
30-
uses: tanstack/config/.github/setup@main
27+
uses: TanStack/config/.github/setup@main
3128
- name: Get base and head commits for `nx affected`
3229
uses: nrwl/nx-set-shas@v4.4.0
3330
with:
@@ -39,11 +36,9 @@ jobs:
3936
runs-on: ubuntu-latest
4037
steps:
4138
- name: Checkout
42-
uses: actions/checkout@v6.0.1
43-
with:
44-
fetch-depth: 0
39+
uses: actions/checkout@v6.0.2
4540
- name: Setup Tools
46-
uses: tanstack/config/.github/setup@main
41+
uses: TanStack/config/.github/setup@main
4742
- name: Build Packages
4843
run: pnpm run build:all
4944
- name: Publish Previews
@@ -53,10 +48,18 @@ jobs:
5348
runs-on: ubuntu-latest
5449
steps:
5550
- name: Checkout
56-
uses: actions/checkout@v6.0.1
57-
with:
58-
fetch-depth: 0
51+
uses: actions/checkout@v6.0.2
5952
- name: Check Provenance
6053
uses: danielroe/provenance-action@v0.1.1
6154
with:
6255
fail-on-downgrade: true
56+
version-preview:
57+
name: Version Preview
58+
runs-on: ubuntu-latest
59+
steps:
60+
- name: Checkout
61+
uses: actions/checkout@v6.0.2
62+
- name: Setup Tools
63+
uses: TanStack/config/.github/setup@main
64+
- name: Changeset Preview
65+
uses: TanStack/config/.github/changeset-preview@main

.github/workflows/release.yml

Lines changed: 9 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -23,19 +23,23 @@ jobs:
2323
runs-on: ubuntu-latest
2424
steps:
2525
- name: Checkout
26-
uses: actions/checkout@v6.0.1
26+
uses: actions/checkout@v6.0.2
2727
with:
2828
fetch-depth: 0
2929
- name: Setup Tools
30-
uses: tanstack/config/.github/setup@main
30+
uses: TanStack/config/.github/setup@main
3131
- name: Run Tests
3232
run: pnpm run test:ci
3333
- name: Run Changesets (version or publish)
34-
uses: changesets/action@v1.5.3
34+
id: changesets
35+
uses: changesets/action@v1.7.0
3536
with:
3637
version: pnpm run changeset:version
3738
publish: pnpm run changeset:publish
3839
commit: 'ci: Version Packages'
3940
title: 'ci: Version Packages'
40-
env:
41-
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
41+
- name: Comment on PRs about release
42+
if: steps.changesets.outputs.published == 'true'
43+
uses: TanStack/config/.github/comment-on-release@main
44+
with:
45+
published-packages: ${{ steps.changesets.outputs.publishedPackages }}

examples/preact/basic/package.json

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -16,11 +16,11 @@
1616
"zod": "^4.3.5"
1717
},
1818
"devDependencies": {
19-
"@preact/preset-vite": "^2.10.2",
20-
"@tanstack/devtools-ui": "0.5.0",
21-
"@tanstack/devtools-vite": "0.5.5",
19+
"@preact/preset-vite": "^2.10.3",
20+
"@tanstack/devtools-ui": "0.5.1",
21+
"@tanstack/devtools-vite": "0.6.0",
2222
"sonda": "0.9.0",
23-
"vite": "^7.1.7",
23+
"vite": "^8.0.0",
2424
"vite-plugin-inspect": "11.3.3"
2525
},
2626
"browserslist": {

examples/preact/custom-devtools/package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -14,8 +14,8 @@
1414
"preact": "^10.28.0"
1515
},
1616
"devDependencies": {
17-
"@preact/preset-vite": "^2.10.2",
18-
"vite": "^7.1.7"
17+
"@preact/preset-vite": "^2.10.3",
18+
"vite": "^8.0.0"
1919
},
2020
"browserslist": {
2121
"production": [

examples/react/a11y-devtools/package.json

Lines changed: 5 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -9,16 +9,17 @@
99
"test:types": "tsc"
1010
},
1111
"dependencies": {
12-
"@tanstack/devtools-a11y": "workspace:*",
13-
"@tanstack/react-devtools": "^0.9.13",
12+
"@tanstack/devtools-a11y": "^0.1.2",
13+
"@tanstack/react-devtools": "^0.10.0",
1414
"react": "^19.2.0",
1515
"react-dom": "^19.2.0"
1616
},
1717
"devDependencies": {
18+
"@tanstack/devtools-vite": "0.6.0",
1819
"@types/react": "^19.2.0",
1920
"@types/react-dom": "^19.2.0",
20-
"@vitejs/plugin-react": "^5.0.4",
21-
"vite": "^7.1.7"
21+
"@vitejs/plugin-react": "^6.0.1",
22+
"vite": "^8.0.0"
2223
},
2324
"browserslist": {
2425
"production": [

examples/react/a11y-devtools/tsconfig.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,5 +23,5 @@
2323
"noUnusedParameters": true,
2424
"noFallthroughCasesInSwitch": true
2525
},
26-
"include": ["src"]
26+
"include": ["src", "vite.config.ts"]
2727
}

0 commit comments

Comments
 (0)