Skip to content
Permalink

Comparing changes

Choose two branches to see what’s changed or to start a new pull request. If you need to, you can also or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: TanStack/query
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: v4.29.5
Choose a base ref
...
head repository: TanStack/query
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: v4.29.6
Choose a head ref
  • 4 commits
  • 18 files changed
  • 5 contributors

Commits on Apr 24, 2023

  1. release: v4.29.5

    tannerlinsley committed Apr 24, 2023
    Copy the full SHA
    b369b6c View commit details

Commits on Apr 28, 2023

  1. Copy the full SHA
    8f468aa View commit details
  2. chore: Adding DTE to the PR workflow (#5256)

    * setting up pr workflow for dte
    
    * fixing yml syntax error
    
    * fixing more pr workflow errors
    
    * fixing more pr workflow errors
    
    * removing coverage upload step from agents
    
    * starting the ci run
    
    * making the test:build cacheable
    
    * setting matrix down to 4 total agents
    
    * rm NX_VERBOSE_LOGGING env var in workflow files
    
    * rm option to skip nx cache
    
    * testing with parallel option of 1
    
    * adding affected base option
    
    * busting cache
    
    * adding root package.json as dep
    
    * adding parallel=2 option and busting cache
    
    * default parallel option and busting cache
    
    * rm debris from cache-busting for time tests
    
    ---------
    
    Co-authored-by: Dominik Dorfmeister <office@dorfmeister.cc>
    ZackDeRose and TkDodo authored Apr 28, 2023
    Copy the full SHA
    373b5d5 View commit details
  3. fix(devtools): Fix restore loading not working when clicked repeatedly (

    #5311)
    
    * 🐛 Fix restore loading not working when clicked repeatedly
    
    * ✅ Add test for restore loading
    
    * 🚨 Fix formatting issues
    
    ---------
    
    Co-authored-by: Dominik Dorfmeister <office@dorfmeister.cc>
    prateek3255 and TkDodo authored Apr 28, 2023
    Copy the full SHA
    b97cd50 View commit details
1 change: 0 additions & 1 deletion .github/workflows/ci-v3.yml
Original file line number Diff line number Diff line change
@@ -6,7 +6,6 @@ on:
- 'v3'
env:
NX_DAEMON: false
NX_VERBOSE_LOGGING: true
NX_CLOUD_ACCESS_TOKEN: ${{ secrets.NX_CLOUD_ACCESS_TOKEN }}
jobs:
test:
1 change: 0 additions & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
@@ -15,7 +15,6 @@ on:
- 'beta'
env:
NX_DAEMON: false
NX_VERBOSE_LOGGING: true
NX_CLOUD_ACCESS_TOKEN: ${{ secrets.NX_CLOUD_ACCESS_TOKEN }}
jobs:
test-and-publish:
83 changes: 32 additions & 51 deletions .github/workflows/pr.yml
Original file line number Diff line number Diff line change
@@ -2,12 +2,15 @@ name: pr
on: [pull_request]
env:
NX_DAEMON: false
NX_VERBOSE_LOGGING: true
NX_CLOUD_ACCESS_TOKEN: ${{ secrets.NX_CLOUD_ACCESS_TOKEN }}
jobs:
test:
name: 'Test'
agent:
name: 'Nx Cloud Agents'
runs-on: ubuntu-latest
timeout-minutes: 20
strategy:
matrix:
agent: [1, 2, 3, 4]
steps:
- uses: actions/checkout@v3
with:
@@ -23,16 +26,10 @@ jobs:
cache: 'pnpm'
- name: Install dependencies
run: pnpm --filter "./packages/**" --filter query --prefer-offline install
- name: Run Tests
uses: nick-fields/retry@v2.8.3
with:
command: pnpm test:lib --base=${{ github.event.pull_request.base.sha }}
timeout_minutes: 5
max_attempts: 3
- name: Upload coverage to Codecov
uses: codecov/codecov-action@v3
lint:
name: 'Lint'
- name: Start Nx Agent ${{ matrix.agent }}
run: npx nx-cloud start-agent
orchestrator:
name: 'Nx Cloud Orchestrator'
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
@@ -49,26 +46,25 @@ jobs:
cache: 'pnpm'
- name: Install dependencies
run: pnpm --filter "./packages/**" --filter query --prefer-offline install
- run: pnpm run test:eslint --base=${{ github.event.pull_request.base.sha }}
typecheck:
name: 'Typecheck'
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
with:
fetch-depth: 0
ref: ${{ github.head_ref }}
repository: ${{github.event.pull_request.head.repo.full_name}}
- uses: pnpm/action-setup@v2.2.4
with:
version: 7
- uses: actions/setup-node@v3
- name: Derive appropriate SHAs for base and head for `nx affected` commands
uses: nrwl/nx-set-shas@v2
- run: |
echo "BASE: ${{ env.NX_BASE }}"
echo "HEAD: ${{ env.NX_HEAD }}"
- name: Start CI Orchestrator
run: npx nx-cloud start-ci-run
- name: Run All Checks
uses: nick-fields/retry@v2.8.3
env:
BUNDLEWATCH_GITHUB_TOKEN: ${{ secrets.BUNDLEWATCH_GITHUB_TOKEN }}
with:
node-version: 16.14.2
cache: 'pnpm'
- name: Install dependencies
run: pnpm --filter "./packages/**" --filter query --prefer-offline install
- run: pnpm run test:types --base=${{ github.event.pull_request.base.sha }}
timeout_minutes: 5
max_attempts: 3
command: npx nx affected --targets=test:eslint,test:types,test:build,test:lib --base=${{ github.event.pull_request.base.sha }}
- name: Stop Agents
run: npx nx-cloud stop-all-agents
- name: Upload coverage to Codecov
uses: codecov/codecov-action@v3
format:
name: 'Format'
runs-on: ubuntu-latest
@@ -87,7 +83,7 @@ jobs:
cache: 'pnpm'
- name: Install dependencies
run: pnpm --filter "./packages/**" --filter query --prefer-offline install
- run: pnpm run test:format --base=${{ github.event.pull_request.base.sha }}
- run: pnpm run test:format
test-react-17:
name: 'Test React 17'
runs-on: ubuntu-latest
@@ -106,28 +102,13 @@ jobs:
cache: 'pnpm'
- name: Install dependencies
run: pnpm --filter "./packages/**" --filter query --prefer-offline install
- name: Derive appropriate SHAs for base and head for `nx affected` commands
uses: nrwl/nx-set-shas@v2
- name: Run Tests
uses: nick-fields/retry@v2.8.3
with:
timeout_minutes: 5
max_attempts: 3
command: pnpm run test:react:17 --base=${{ github.event.pull_request.base.sha }}
command: npx nx affected --targets=test:lib --base=${{ github.event.pull_request.base.sha }}
env:
REACTJS_VERSION: 17
test-build:
name: 'Test Build'
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: pnpm/action-setup@v2.2.4
with:
version: 7
- uses: actions/setup-node@v3
with:
node-version: 16.14.2
cache: 'pnpm'
- name: Install dependencies
run: pnpm --filter "./packages/**" --filter query --prefer-offline install
- run: pnpm run test:build
env:
BUNDLEWATCH_GITHUB_TOKEN: ${{ secrets.BUNDLEWATCH_GITHUB_TOKEN }}
4 changes: 2 additions & 2 deletions docs/react/plugins/createSyncStoragePersister.md
Original file line number Diff line number Diff line change
@@ -128,8 +128,8 @@ import { compress, decompress } from 'lz-string';
const queryClient = new QueryClient({ defaultOptions: { queries: { staleTime: Infinity } } });

persistQueryClient({
queryClient: connectionsQueryClient,
persistor: createSyncStoragePersister({
queryClient: queryClient,
persister: createSyncStoragePersister({
storage: window.localStorage,
serialize: data => compress(JSON.stringify(data)),
deserialize: data => JSON.parse(decompress(data)),
4 changes: 3 additions & 1 deletion nx.json
Original file line number Diff line number Diff line change
@@ -7,6 +7,7 @@
"test:lib",
"test:eslint",
"test:types",
"test:build",
"build:types",
"build",
"rollup"
@@ -27,7 +28,8 @@
"{workspaceRoot}/rollup.config.js",
"{workspaceRoot}/rollup.config.ts",
"{workspaceRoot}/tsconfig.json",
"{workspaceRoot}/tsconfig.base.json"
"{workspaceRoot}/tsconfig.base.json",
"{workspaceRoot}/package.json"
],
"globalNonBuildAffectingConfig": [
"{workspaceRoot}/.eslintrc",
2 changes: 1 addition & 1 deletion packages/query-async-storage-persister/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@tanstack/query-async-storage-persister",
"version": "4.29.1",
"version": "4.29.5",
"description": "A persister for asynchronous storages, to be used with TanStack/Query",
"author": "tannerlinsley",
"license": "MIT",
2 changes: 1 addition & 1 deletion packages/query-broadcast-client-experimental/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@tanstack/query-broadcast-client-experimental",
"version": "4.29.1",
"version": "4.29.5",
"description": "An experimental plugin to for broadcasting the state of your queryClient between browser tabs/windows",
"author": "tannerlinsley",
"license": "MIT",
2 changes: 1 addition & 1 deletion packages/query-core/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@tanstack/query-core",
"version": "4.29.1",
"version": "4.29.5",
"description": "The framework agnostic core that powers TanStack Query",
"author": "tannerlinsley",
"license": "MIT",
2 changes: 1 addition & 1 deletion packages/query-persist-client-core/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@tanstack/query-persist-client-core",
"version": "4.29.1",
"version": "4.29.5",
"description": "Set of utilities for interacting with persisters, which can save your queryClient for later use",
"author": "tannerlinsley",
"license": "MIT",
2 changes: 1 addition & 1 deletion packages/query-sync-storage-persister/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@tanstack/query-sync-storage-persister",
"version": "4.29.1",
"version": "4.29.5",
"description": "A persister for synchronous storages, to be used with TanStack/Query",
"author": "tannerlinsley",
"license": "MIT",
2 changes: 1 addition & 1 deletion packages/react-query-devtools/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@tanstack/react-query-devtools",
"version": "4.29.3",
"version": "4.29.5",
"description": "Developer tools to interact with and visualize the TanStack/react-query cache",
"author": "tannerlinsley",
"license": "MIT",
52 changes: 52 additions & 0 deletions packages/react-query-devtools/src/__tests__/devtools.test.tsx
Original file line number Diff line number Diff line change
@@ -1091,4 +1091,56 @@ describe('ReactQueryDevtools', () => {
expect(screen.getByText('No error, success')).toBeInTheDocument()
})
})

it('should not refetch when already restoring a query', async () => {
const { queryClient } = createQueryClient()

let count = 0
let resolvePromise: (value: unknown) => void = () => undefined

function App() {
const { data } = useQuery(['key'], () => {
count++

// Resolve the promise immediately when
// the query is fetched for the first time
if (count === 1) {
return Promise.resolve('test')
}

return new Promise((resolve) => {
// Do not resolve immediately and store the
// resolve function to resolve the promise later
resolvePromise = resolve
})
})

return (
<div>
<h1>{typeof data === 'string' ? data : 'No data'}</h1>
</div>
)
}

renderWithClient(queryClient, <App />, {
initialIsOpen: true,
})

const loadingButton = await screen.findByRole('button', {
name: 'Trigger loading',
})
fireEvent.click(loadingButton)

await waitFor(() => {
expect(screen.getByText('Restore loading')).toBeInTheDocument()
})

// Click the restore loading button twice and only resolve query promise
// after the second click.
fireEvent.click(screen.getByRole('button', { name: /restore loading/i }))
fireEvent.click(screen.getByRole('button', { name: /restore loading/i }))
resolvePromise('test')

expect(count).toBe(2)
})
})
9 changes: 9 additions & 0 deletions packages/react-query-devtools/src/devtools.tsx
Original file line number Diff line number Diff line change
@@ -1035,6 +1035,15 @@ const ActiveQuery = ({
<Button
type="button"
onClick={() => {
// Return early if the query is already restoring
if (
activeQuery.state.fetchStatus === 'fetching' &&
typeof activeQuery.state.fetchMeta?.__previousQueryOptions ===
'undefined'
) {
return
}

if (activeQuery.state.data === undefined) {
restoreQueryAfterLoadingOrError()
} else {
2 changes: 1 addition & 1 deletion packages/react-query-persist-client/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@tanstack/react-query-persist-client",
"version": "4.29.3",
"version": "4.29.5",
"description": "React bindings to work with persisters in TanStack/react-query",
"author": "tannerlinsley",
"license": "MIT",
2 changes: 1 addition & 1 deletion packages/react-query/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@tanstack/react-query",
"version": "4.29.3",
"version": "4.29.5",
"description": "Hooks for managing, caching and syncing asynchronous and remote data in React",
"author": "tannerlinsley",
"license": "MIT",
2 changes: 1 addition & 1 deletion packages/solid-query/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@tanstack/solid-query",
"version": "4.29.1",
"version": "4.29.5",
"description": "Primitives for managing, caching and syncing asynchronous and remote data in Solid",
"author": "tannerlinsley",
"license": "MIT",
2 changes: 1 addition & 1 deletion packages/svelte-query/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@tanstack/svelte-query",
"version": "4.29.1",
"version": "4.29.5",
"description": "Primitives for managing, caching and syncing asynchronous and remote data in Svelte",
"author": "Dre Johnson",
"license": "MIT",
2 changes: 1 addition & 1 deletion packages/vue-query/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@tanstack/vue-query",
"version": "4.29.1",
"version": "4.29.5",
"description": "Hooks for managing, caching and syncing asynchronous and remote data in Vue",
"author": "Damian Osipiuk",
"license": "MIT",