Skip to content

Commit 1a99005

Browse files
authored
Merge branch 'main' into docs/dividing-scripts
2 parents 448c563 + 59a6d3d commit 1a99005

35 files changed

+21
-24
lines changed

.github/ISSUE_TEMPLATE/bug_report.yml

+3-3
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ body:
3434
- To create a shareable code example for web, you can use CodeSandbox (https://codesandbox.io/s/new) or Stackblitz (https://stackblitz.com/).
3535
- Please make sure the example is complete and runnable - e.g. avoid localhost URLs.
3636
- To stub out real api requests - Promise.resolve and Promise.reject are good options for easy reproduction
37-
- Feel free to fork any of the official CodeSandbox examples to reproduce your issue: https://tanstack.com/query/v4/docs/examples/react/simple
37+
- Feel free to fork any of the official examples to reproduce your issue: https://tanstack.com/query/latest/docs/framework/react/examples/simple
3838
- For React Native, you can use: https://snack.expo.dev/
3939
- For TypeScript related issues only, a TypeScript Playground link might be sufficient: https://www.typescriptlang.org/play
4040
- Please read these tips for providing a minimal example: https://stackoverflow.com/help/mcve.
@@ -115,7 +115,7 @@ body:
115115
description: |
116116
Please let us know the exact version of TanStack Query you were using when the issue occurred. Please don't just put in "latest", as this is subject to change.
117117
placeholder: |
118-
e.g. v3.30.1
118+
e.g. v5.51.9
119119
validations:
120120
required: true
121121
- type: input
@@ -125,7 +125,7 @@ body:
125125
description: |
126126
If you are using TypeScript, please let us know the exact version of TypeScript you were using when the issue occurred.
127127
placeholder: |
128-
e.g. v4.5.4
128+
e.g. v5.5.4
129129
- type: textarea
130130
id: additional
131131
attributes:

docs/framework/vue/community/community-projects.md

+7
Original file line numberDiff line numberDiff line change
@@ -13,6 +13,13 @@ A library for creating typesafe standardized query keys, useful for cache manage
1313

1414
Link: https://github.com/lukemorales/query-key-factory
1515

16+
## Model: Unified Data Source
17+
18+
Zova provides the Model mechanism based on Vue Query in the MVC architecture, encapsulating unified data sources through Model, thereby standardizing the use of data, simplifying the code structure, and improving the maintainability of the code
19+
20+
Link: https://github.com/cabloy/zova
21+
Docs: https://zova.js.org/guide/techniques/model/introduction.html
22+
1623
## Query Rewind
1724

1825
Time travel and visualize state during development

examples/angular/basic/tsconfig.app.json

-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,3 @@
1-
/* To learn more about this file see: https://angular.io/config/tsconfig. */
21
{
32
"extends": "./tsconfig.json",
43
"compilerOptions": {

examples/angular/basic/tsconfig.json

-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,3 @@
1-
/* To learn more about this file see: https://angular.io/config/tsconfig. */
21
{
32
"compileOnSave": false,
43
"compilerOptions": {

examples/angular/infinite-query-with-max-pages/tsconfig.app.json

-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,3 @@
1-
/* To learn more about this file see: https://angular.io/config/tsconfig. */
21
{
32
"extends": "./tsconfig.json",
43
"compilerOptions": {

examples/angular/infinite-query-with-max-pages/tsconfig.json

-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,3 @@
1-
/* To learn more about this file see: https://angular.io/config/tsconfig. */
21
{
32
"compileOnSave": false,
43
"compilerOptions": {

examples/angular/router/tsconfig.app.json

-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,3 @@
1-
/* To learn more about this file see: https://angular.io/config/tsconfig. */
21
{
32
"extends": "./tsconfig.json",
43
"compilerOptions": {

examples/angular/router/tsconfig.json

-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,3 @@
1-
/* To learn more about this file see: https://angular.io/config/tsconfig. */
21
{
32
"compileOnSave": false,
43
"compilerOptions": {

examples/angular/simple/tsconfig.app.json

-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,3 @@
1-
/* To learn more about this file see: https://angular.io/config/tsconfig. */
21
{
32
"extends": "./tsconfig.json",
43
"compilerOptions": {

examples/angular/simple/tsconfig.json

-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,3 @@
1-
/* To learn more about this file see: https://angular.io/config/tsconfig. */
21
{
32
"compileOnSave": false,
43
"compilerOptions": {

integrations/angular-cli-standalone-17/README.md renamed to integrations/angular-cli-17/README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# AngularCliStandalone17
1+
# AngularCli17
22

33
This project was generated with [Angular CLI](https://github.com/angular/angular-cli) version 17.0.0.
44

integrations/angular-cli-standalone-17/angular.json renamed to integrations/angular-cli-17/angular.json

+5-5
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
},
88
"newProjectRoot": "projects",
99
"projects": {
10-
"angular-cli-standalone-17": {
10+
"angular-cli-17": {
1111
"projectType": "application",
1212
"schematics": {
1313
"@schematics/angular:component": {
@@ -44,7 +44,7 @@
4444
"build": {
4545
"builder": "@angular-devkit/build-angular:application",
4646
"options": {
47-
"outputPath": "dist/angular-cli-standalone-17",
47+
"outputPath": "dist/angular-cli-17",
4848
"index": "src/index.html",
4949
"browser": "src/main.ts",
5050
"polyfills": ["zone.js"],
@@ -81,18 +81,18 @@
8181
"builder": "@angular-devkit/build-angular:dev-server",
8282
"configurations": {
8383
"production": {
84-
"buildTarget": "angular-cli-standalone-17:build:production"
84+
"buildTarget": "angular-cli-17:build:production"
8585
},
8686
"development": {
87-
"buildTarget": "angular-cli-standalone-17:build:development"
87+
"buildTarget": "angular-cli-17:build:development"
8888
}
8989
},
9090
"defaultConfiguration": "development"
9191
},
9292
"extract-i18n": {
9393
"builder": "@angular-devkit/build-angular:extract-i18n",
9494
"options": {
95-
"buildTarget": "angular-cli-standalone-17:build"
95+
"buildTarget": "angular-cli-17:build"
9696
}
9797
}
9898
}

integrations/angular-cli-standalone-17/package.json renamed to integrations/angular-cli-17/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
{
2-
"name": "angular-cli-standalone-17",
2+
"name": "angular-cli-17",
33
"private": true,
44
"scripts": {
55
"build": "ng build"

integrations/angular-cli-standalone-17/src/index.html renamed to integrations/angular-cli-17/src/index.html

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
<html lang="en">
33
<head>
44
<meta charset="utf-8" />
5-
<title>AngularCliStandalone17</title>
5+
<title>AngularCli17</title>
66
<base href="/" />
77
<meta name="viewport" content="width=device-width, initial-scale=1" />
88
<link rel="icon" type="image/x-icon" href="favicon.ico" />

integrations/angular-cli-standalone-17/tsconfig.app.json renamed to integrations/angular-cli-17/tsconfig.app.json

-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,3 @@
1-
/* To learn more about this file see: https://angular.io/config/tsconfig. */
21
{
32
"extends": "./tsconfig.json",
43
"compilerOptions": {

integrations/angular-cli-standalone-17/tsconfig.json renamed to integrations/angular-cli-17/tsconfig.json

-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,3 @@
1-
/* To learn more about this file see: https://angular.io/config/tsconfig. */
21
{
32
"compileOnSave": false,
43
"compilerOptions": {

integrations/react-next/package.json renamed to integrations/react-next-14/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
{
2-
"name": "react-next",
2+
"name": "react-next-14",
33
"private": true,
44
"scripts": {
55
"build": "next build"

pnpm-lock.yaml

+2-2
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)