Skip to content

Commit 247d4f7

Browse files
Prepare for realm-react-0.11.0 (#6900)
* [realm-react-0.11.0] Bump version * Remove internal type from export * Update package-lock.json * Upgrade google/wireit's setup-github-actions-caching to v2 --------- Co-authored-by: kraenhansen <[email protected]> Co-authored-by: Kræn Hansen <[email protected]>
1 parent 7f3b687 commit 247d4f7

File tree

6 files changed

+6
-52
lines changed

6 files changed

+6
-52
lines changed

.github/workflows/pr-coverage.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ jobs:
3535
cache: npm
3636

3737
- name: Setup Wireit cache
38-
uses: google/wireit@setup-github-actions-caching/v1
38+
uses: google/wireit@setup-github-actions-caching/v2
3939

4040
- name: Environment setup
4141
run: sudo apt-get install ccache ninja-build

.github/workflows/pr-realm-js.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -142,7 +142,7 @@ jobs:
142142
cache: npm
143143

144144
- name: Setup Wireit cache
145-
uses: google/wireit@setup-github-actions-caching/v1
145+
uses: google/wireit@setup-github-actions-caching/v2
146146

147147
- name: MSVC Setup
148148
if: ${{ runner.os == 'Windows' }}

package-lock.json

Lines changed: 1 addition & 44 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

packages/realm-react/CHANGELOG.md

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,4 @@
1-
## vNext (TBD)
2-
3-
### Deprecations
4-
* None
1+
## 0.11.0 (2024-10-02)
52

63
### Enhancements
74
* Add more additional overload to `useQuery` to allow the [react-hooks/exhaustive-deps](https://www.npmjs.com/package/eslint-plugin-react-hooks) eslint rule to work (#6819)

packages/realm-react/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@realm/react",
3-
"version": "0.10.1",
3+
"version": "0.11.0",
44
"description": "React specific hooks and implementation helpers for Realm",
55
"type": "module",
66
"main": "dist/index.cjs",

packages/realm-react/src/index.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ import React from "react";
2121
import { createRealmContext } from "./RealmContext";
2222

2323
export type { UseObjectHook } from "./useObject";
24-
export type { UseQueryHook, QueryHookOptions, QueryHookClassBasedOptions } from "./useQuery";
24+
export type { UseQueryHook, QueryHookOptions } from "./useQuery";
2525

2626
const defaultContext = createRealmContext();
2727

0 commit comments

Comments
 (0)