Skip to content

Commit d87cd52

Browse files
authored
Merge branch 'main' into fix/router-plugin-panel-scroll
2 parents 70bb2b8 + ca6e266 commit d87cd52

62 files changed

Lines changed: 623 additions & 133 deletions

File tree

Some content is hidden

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

.changeset/floppy-mammals-write.md

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

.github/workflows/autofix.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ jobs:
2222
with:
2323
persist-credentials: false
2424
- name: Setup Tools
25-
uses: TanStack/config/.github/setup@e4b48f16568324f76f467aa4c2aac2f05db632c3 # main
25+
uses: TanStack/config/.github/setup@99d23c6212f36eff17d30a21e58da77f55a4cfe9 # main
2626
- name: Fix formatting
2727
run: pnpm format
2828
# - name: Regenerate docs

.github/workflows/pr.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ jobs:
2727
fetch-depth: 0
2828
persist-credentials: false
2929
- name: Setup Tools
30-
uses: TanStack/config/.github/setup@e4b48f16568324f76f467aa4c2aac2f05db632c3 # main
30+
uses: TanStack/config/.github/setup@99d23c6212f36eff17d30a21e58da77f55a4cfe9 # main
3131
- name: Get base and head commits for `nx affected`
3232
uses: nrwl/nx-set-shas@3e9ad7370203c1e93d109be57f3b72eb0eb511b1 # v4.4.0
3333
with:
@@ -43,7 +43,7 @@ jobs:
4343
with:
4444
persist-credentials: false
4545
- name: Setup Tools
46-
uses: TanStack/config/.github/setup@e4b48f16568324f76f467aa4c2aac2f05db632c3 # main
46+
uses: TanStack/config/.github/setup@99d23c6212f36eff17d30a21e58da77f55a4cfe9 # main
4747
- name: Build Packages
4848
run: pnpm run build:all
4949
- name: Publish Previews
@@ -57,6 +57,6 @@ jobs:
5757
with:
5858
persist-credentials: false
5959
- name: Setup Tools
60-
uses: TanStack/config/.github/setup@e4b48f16568324f76f467aa4c2aac2f05db632c3 # main
60+
uses: TanStack/config/.github/setup@99d23c6212f36eff17d30a21e58da77f55a4cfe9 # main
6161
- name: Changeset Preview
62-
uses: TanStack/config/.github/changeset-preview@e4b48f16568324f76f467aa4c2aac2f05db632c3 # main
62+
uses: TanStack/config/.github/changeset-preview@99d23c6212f36eff17d30a21e58da77f55a4cfe9 # main

.github/workflows/release.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ jobs:
3636
fetch-depth: 0
3737
persist-credentials: false
3838
- name: Setup Tools
39-
uses: TanStack/config/.github/setup@e4b48f16568324f76f467aa4c2aac2f05db632c3 # main
39+
uses: TanStack/config/.github/setup@99d23c6212f36eff17d30a21e58da77f55a4cfe9 # main
4040
- name: Run Tests
4141
run: pnpm run test:ci
4242
- name: Run Changesets (version or publish)
@@ -49,6 +49,6 @@ jobs:
4949
title: 'ci: Version Packages'
5050
- name: Comment on PRs about release
5151
if: steps.changesets.outputs.published == 'true'
52-
uses: TanStack/config/.github/comment-on-release@e4b48f16568324f76f467aa4c2aac2f05db632c3 # main
52+
uses: TanStack/config/.github/comment-on-release@99d23c6212f36eff17d30a21e58da77f55a4cfe9 # main
5353
with:
5454
published-packages: ${{ steps.changesets.outputs.publishedPackages }}

examples/angular/a11y-devtools/CHANGELOG.md

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,14 @@
11
# @tanstack/devtools-example-angular-a11y-devtools
22

3+
## 0.0.4
4+
5+
### Patch Changes
6+
7+
- Updated dependencies [[`73983a7`](https://github.com/TanStack/devtools/commit/73983a7d7e8eaa8800322f476130df3ed4329685)]:
8+
- @tanstack/angular-devtools@0.0.5
9+
- @tanstack/devtools-a11y@0.1.4
10+
- @tanstack/devtools-event-client@0.4.4
11+
312
## 0.0.3
413

514
### Patch Changes

examples/angular/a11y-devtools/package.json

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@tanstack/devtools-example-angular-a11y-devtools",
3-
"version": "0.0.3",
3+
"version": "0.0.4",
44
"scripts": {
55
"ng": "ng",
66
"start": "ng serve",
@@ -17,9 +17,9 @@
1717
"@angular/forms": "^21.2.0",
1818
"@angular/platform-browser": "^21.2.0",
1919
"@angular/router": "^21.2.0",
20-
"@tanstack/angular-devtools": "^0.0.4",
21-
"@tanstack/devtools-a11y": "^0.1.3",
22-
"@tanstack/devtools-event-client": "0.4.3",
20+
"@tanstack/angular-devtools": "^0.0.5",
21+
"@tanstack/devtools-a11y": "^0.1.4",
22+
"@tanstack/devtools-event-client": "0.4.4",
2323
"rxjs": "~7.8.0",
2424
"tslib": "^2.3.0"
2525
},

examples/angular/basic/CHANGELOG.md

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,13 @@
11
# @tanstack/devtools-example-angular-basic
22

3+
## 0.0.4
4+
5+
### Patch Changes
6+
7+
- Updated dependencies [[`73983a7`](https://github.com/TanStack/devtools/commit/73983a7d7e8eaa8800322f476130df3ed4329685)]:
8+
- @tanstack/angular-devtools@0.0.5
9+
- @tanstack/devtools-event-client@0.4.4
10+
311
## 0.0.3
412

513
### Patch Changes

examples/angular/basic/package.json

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@tanstack/devtools-example-angular-basic",
3-
"version": "0.0.3",
3+
"version": "0.0.4",
44
"scripts": {
55
"ng": "ng",
66
"start": "ng serve",
@@ -17,8 +17,8 @@
1717
"@angular/forms": "^21.2.0",
1818
"@angular/platform-browser": "^21.2.0",
1919
"@angular/router": "^21.2.0",
20-
"@tanstack/angular-devtools": "^0.0.4",
21-
"@tanstack/devtools-event-client": "0.4.3",
20+
"@tanstack/angular-devtools": "^0.0.5",
21+
"@tanstack/devtools-event-client": "0.4.4",
2222
"rxjs": "~7.8.0",
2323
"tslib": "^2.3.0"
2424
},

examples/angular/panel/CHANGELOG.md

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,15 @@
11
# @tanstack/devtools-example-angular-panel
22

3+
## 0.0.4
4+
5+
### Patch Changes
6+
7+
- Updated dependencies [[`73983a7`](https://github.com/TanStack/devtools/commit/73983a7d7e8eaa8800322f476130df3ed4329685)]:
8+
- @tanstack/angular-devtools@0.0.5
9+
- @tanstack/devtools@0.12.3
10+
- @tanstack/devtools-utils@0.5.1
11+
- @tanstack/devtools-event-client@0.4.4
12+
313
## 0.0.3
414

515
### Patch Changes

examples/angular/panel/package.json

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@tanstack/devtools-example-angular-panel",
3-
"version": "0.0.3",
3+
"version": "0.0.4",
44
"scripts": {
55
"ng": "ng",
66
"start": "ng serve",
@@ -17,10 +17,10 @@
1717
"@angular/forms": "^21.2.0",
1818
"@angular/platform-browser": "^21.2.0",
1919
"@angular/router": "^21.2.0",
20-
"@tanstack/angular-devtools": "^0.0.4",
21-
"@tanstack/devtools": "^0.12.2",
22-
"@tanstack/devtools-event-client": "0.4.3",
23-
"@tanstack/devtools-utils": "^0.5.0",
20+
"@tanstack/angular-devtools": "^0.0.5",
21+
"@tanstack/devtools": "^0.12.3",
22+
"@tanstack/devtools-event-client": "0.4.4",
23+
"@tanstack/devtools-utils": "^0.5.1",
2424
"rxjs": "~7.8.0",
2525
"tslib": "^2.3.0"
2626
},

0 commit comments

Comments
 (0)