Skip to content

Commit ce2c445

Browse files
committed
chore: rc release
RELEASE_ALL
1 parent 27b31f3 commit ce2c445

File tree

8 files changed

+25
-25
lines changed

8 files changed

+25
-25
lines changed

.github/workflows/pr.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ jobs:
3535
- name: Get appropriate base and head commits for `nx affected` commands
3636
uses: nrwl/nx-set-shas@v3
3737
with:
38-
main-branch-name: 'beta'
38+
main-branch-name: 'rc'
3939
- run: |
4040
echo "BASE: ${{ env.NX_BASE }}"
4141
echo "HEAD: ${{ env.NX_HEAD }}"

README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
<img src="https://static.scarf.sh/a.png?x-pxid=be2d8a11-9712-4c1d-9963-580b2d4fb133" />
22

3-
![TanStack Query Header](https://github.com/TanStack/query/raw/beta/media/repo-header.png)
3+
![TanStack Query Header](https://github.com/TanStack/query/raw/rc/media/repo-header.png)
44

55
Hooks for fetching, caching and updating asynchronous data in React, Solid, Svelte and Vue
66

@@ -12,8 +12,8 @@ Hooks for fetching, caching and updating asynchronous data in React, Solid, Svel
1212
<img src="https://github.com/TanStack/query/workflows/react-query%20tests/badge.svg" />
1313
</a><a href="https://www.npmjs.com/package/@tanstack/query-core" target="\_parent">
1414
<img alt="" src="https://img.shields.io/npm/dm/@tanstack/query-core.svg" />
15-
</a><a href="https://bundlejs.com/?q=%40tanstack%2Freact-query%40beta&config=%7B%22esbuild%22%3A%7B%22external%22%3A%5B%22react%22%2C%22react-dom%22%5D%7D%7D&badge=" target="\_parent">
16-
<img alt="" src="https://deno.bundlejs.com/?q=@tanstack/react-query@beta&config={%22esbuild%22:{%22external%22:[%22react%22,%22react-dom%22]}}&badge=detailed" />
15+
</a><a href="https://bundlejs.com/?q=%40tanstack%2Freact-query%rc&config=%7B%22esbuild%22%3A%7B%22external%22%3A%5B%22react%22%2C%22react-dom%22%5D%7D%7D&badge=" target="\_parent">
16+
<img alt="" src="https://deno.bundlejs.com/?q=@tanstack/react-query@rc&config={%22esbuild%22:{%22external%22:[%22react%22,%22react-dom%22]}}&badge=detailed" />
1717
</a><a href="#badge">
1818
<img alt="semantic-release" src="https://img.shields.io/badge/%20%20%F0%9F%93%A6%F0%9F%9A%80-semantic--release-e10079.svg">
1919
</a><a href="https://github.com/TanStack/query/discussions">

docs/react/devtools.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -16,11 +16,11 @@ When you begin your React Query journey, you'll want these devtools by your side
1616
The devtools are a separate package that you need to install:
1717

1818
```bash
19-
$ npm i @tanstack/react-query-devtools@beta
19+
$ npm i @tanstack/react-query-devtools@rc
2020
# or
21-
$ pnpm add @tanstack/react-query-devtools@beta
21+
$ pnpm add @tanstack/react-query-devtools@rc
2222
# or
23-
$ yarn add @tanstack/react-query-devtools@beta
23+
$ yarn add @tanstack/react-query-devtools@rc
2424
```
2525

2626
You can import the devtools like this:

docs/react/installation.md

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -7,16 +7,16 @@ You can install React Query via [NPM](https://npmjs.com/),
77
or a good ol' `<script>` via
88
[ESM.sh](https://esm.sh/).
99

10-
> v5 is currently in beta. We don't anticipate any major API changes from here on out, but we do expect some minor changes and fixes. We encourage you to try it out and report any issues you find.
10+
> v5 is currently available as a release-candidate. We don't anticipate any major API changes from here on out. We encourage you to try it out and report any issues you find.
1111
1212
### NPM
1313

1414
```bash
15-
$ npm i @tanstack/react-query@beta
15+
$ npm i @tanstack/react-query@rc
1616
# or
17-
$ pnpm add @tanstack/react-query@beta
17+
$ pnpm add @tanstack/react-query@rc
1818
# or
19-
$ yarn add @tanstack/react-query@beta
19+
$ yarn add @tanstack/react-query@rc
2020
```
2121

2222
React Query is compatible with React v18+ and works with ReactDOM and React Native.
@@ -31,7 +31,7 @@ If you're not using a module bundler or package manager, you can also use this l
3131
<script type="module">
3232
import React from 'https://esm.sh/[email protected]'
3333
import ReactDOM from 'https://esm.sh/[email protected]'
34-
import { QueryClient } from 'https://esm.sh/@tanstack/react-query@beta'
34+
import { QueryClient } from 'https://esm.sh/@tanstack/react-query@rc'
3535
</script>
3636
```
3737

@@ -57,9 +57,9 @@ opera >= 77
5757
It is recommended to also use our [ESLint Plugin Query](./eslint/eslint-plugin-query) to help you catch bugs and inconsistencies while you code. You can install it via:
5858

5959
```bash
60-
$ npm i -D @tanstack/eslint-plugin-query@beta
60+
$ npm i -D @tanstack/eslint-plugin-query@rc
6161
# or
62-
$ pnpm add -D @tanstack/eslint-plugin-query@beta
62+
$ pnpm add -D @tanstack/eslint-plugin-query@rc
6363
# or
64-
$ yarn add -D @tanstack/eslint-plugin-query@beta
64+
$ yarn add -D @tanstack/eslint-plugin-query@rc
6565
```

docs/svelte/installation.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -5,16 +5,16 @@ title: Installation
55

66
You can install Svelte Query via [NPM](https://npmjs.com).
77

8-
> v5 is currently in beta. We don't anticipate any major API changes from here on out, but we do expect some minor changes and fixes. We encourage you to try it out and report any issues you find.
8+
> v5 is currently available as a release-candidate. We don't anticipate any major API changes from here on out. We encourage you to try it out and report any issues you find.
99
1010
### NPM
1111

1212
```bash
13-
$ npm i @tanstack/svelte-query@beta
13+
$ npm i @tanstack/svelte-query@rc
1414
# or
15-
$ pnpm add @tanstack/svelte-query@beta
15+
$ pnpm add @tanstack/svelte-query@rc
1616
# or
17-
$ yarn add @tanstack/svelte-query@beta
17+
$ yarn add @tanstack/svelte-query@rc
1818
```
1919

2020
> Wanna give it a spin before you download? Try out the [basic](/query/v4/docs/svelte/examples/svelte/basic) example!

docs/vue/installation.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -5,16 +5,16 @@ title: Installation
55

66
You can install Vue Query via [NPM](https://npmjs.com).
77

8-
> v5 is currently in beta. We don't anticipate any major API changes from here on out, but we do expect some minor changes and fixes. We encourage you to try it out and report any issues you find.
8+
> v5 is currently available as a release-candidate. We don't anticipate any major API changes from here on out. We encourage you to try it out and report any issues you find.
99
1010
### NPM
1111

1212
```bash
13-
$ npm i @tanstack/vue-query@beta
13+
$ npm i @tanstack/vue-query@rc
1414
# or
15-
$ pnpm add @tanstack/vue-query@beta
15+
$ pnpm add @tanstack/vue-query@rc
1616
# or
17-
$ yarn add @tanstack/vue-query@beta
17+
$ yarn add @tanstack/vue-query@rc
1818
```
1919

2020
> Wanna give it a spin before you download? Try out the [basic](../examples/vue/basic) example!

nx.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"$schema": "./node_modules/nx/schemas/nx-schema.json",
33
"affected": {
4-
"defaultBase": "beta"
4+
"defaultBase": "rc"
55
},
66
"tasksRunnerOptions": {
77
"default": {

packages/react-query/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
<img src="https://static.scarf.sh/a.png?x-pxid=be2d8a11-9712-4c1d-9963-580b2d4fb133" />
22

3-
![TanStack Query Header](https://github.com/TanStack/query/raw/beta/media/repo-header.png)
3+
![TanStack Query Header](https://github.com/TanStack/query/raw/rc/media/repo-header.png)
44

55
Hooks for fetching, caching and updating asynchronous data in React
66

0 commit comments

Comments
 (0)