Skip to content

Commit c32d939

Browse files
committed
bump version
1 parent 4642397 commit c32d939

11 files changed

Lines changed: 61 additions & 35 deletions

File tree

.changeset/dirty-webs-train.md

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

.changeset/loud-houses-design.md

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

.changeset/shy-bugs-obey.md

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

apps/connect/CHANGELOG.md

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,14 @@
11
# connect
22

3+
## 0.2.23
4+
### Patch Changes
5+
6+
- Updated dependencies [b8bae14]
7+
- Updated dependencies [4642397]
8+
- Updated dependencies [40111af]
9+
- @graphprotocol/hypergraph@0.8.10
10+
- @graphprotocol/hypergraph-react@0.8.10
11+
312
## 0.2.22
413
### Patch Changes
514

apps/connect/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "connect",
33
"private": true,
4-
"version": "0.2.22",
4+
"version": "0.2.23",
55
"type": "module",
66
"scripts": {
77
"dev": "vite --force",

apps/server/CHANGELOG.md

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,13 @@
11
# server
22

3+
## 0.1.14
4+
### Patch Changes
5+
6+
- Updated dependencies [b8bae14]
7+
- Updated dependencies [4642397]
8+
- Updated dependencies [40111af]
9+
- @graphprotocol/hypergraph@0.8.10
10+
311
## 0.1.13
412
### Patch Changes
513

apps/server/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "server",
3-
"version": "0.1.13",
3+
"version": "0.1.14",
44
"private": true,
55
"type": "module",
66
"scripts": {

packages/hypergraph-react/CHANGELOG.md

Lines changed: 22 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,27 @@
11
# @graphprotocol/hypergraph-react
22

3+
## 0.8.10
4+
### Patch Changes
5+
6+
- b8bae14: Add filtering entities by id e.g.
7+
8+
```ts
9+
const { data } = useEntities(Person, {
10+
filter: {
11+
or: [
12+
{ id: { is: 'fe9f0c57-3682-4a77-8ef4-205da3cd0a33' } },
13+
{ id: { is: '1e5dcefd-bae0-4133-b743-6d2d7bebc5b9' } },
14+
],
15+
},
16+
});
17+
```
18+
- 4642397: Add Space.findManyPublic plus the usePublicSpaces hook so apps can fetch and render public spaces (with invalid entries surfaced) via one shared SDK call
19+
- 40111af: Add support for querying public entities across multiple spaces (including an `all` scope) and expose the new API through the React hooks
20+
- Updated dependencies [b8bae14]
21+
- Updated dependencies [4642397]
22+
- Updated dependencies [40111af]
23+
- @graphprotocol/hypergraph@0.8.10
24+
325
## 0.8.9
426
### Patch Changes
527

packages/hypergraph-react/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@graphprotocol/hypergraph-react",
3-
"version": "0.8.9",
3+
"version": "0.8.10",
44
"description": "React implementation and additional functionality, components, and hooks for the hypergraph SDK framework",
55
"keywords": [
66
"Web3",

packages/hypergraph/CHANGELOG.md

Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,23 @@
11
# @graphprotocol/hypergraph
22

3+
## 0.8.10
4+
### Patch Changes
5+
6+
- b8bae14: Add filtering entities by id e.g.
7+
8+
```ts
9+
const { data } = useEntities(Person, {
10+
filter: {
11+
or: [
12+
{ id: { is: 'fe9f0c57-3682-4a77-8ef4-205da3cd0a33' } },
13+
{ id: { is: '1e5dcefd-bae0-4133-b743-6d2d7bebc5b9' } },
14+
],
15+
},
16+
});
17+
```
18+
- 4642397: Add Space.findManyPublic plus the usePublicSpaces hook so apps can fetch and render public spaces (with invalid entries surfaced) via one shared SDK call
19+
- 40111af: Add support for querying public entities across multiple spaces (including an `all` scope) and expose the new API through the React hooks
20+
321
## 0.8.9
422
### Patch Changes
523

0 commit comments

Comments
 (0)