Skip to content

Commit f0d8b3d

Browse files
committed
bump version
1 parent d502673 commit f0d8b3d

File tree

10 files changed

+92
-46
lines changed

10 files changed

+92
-46
lines changed

.changeset/four-papers-thank.md

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

.changeset/plain-turkeys-matter.md

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

apps/connect/CHANGELOG.md

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

3+
## 0.2.21
4+
### Patch Changes
5+
6+
- Updated dependencies [d502673]
7+
- Updated dependencies [083edfd]
8+
- @graphprotocol/hypergraph-react@0.8.8
9+
- @graphprotocol/hypergraph@0.8.8
10+
311
## 0.2.20
412
### Patch Changes
513

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.20",
4+
"version": "0.2.21",
55
"type": "module",
66
"scripts": {
77
"dev": "vite --force",

apps/server/CHANGELOG.md

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

3+
## 0.1.12
4+
### Patch Changes
5+
6+
- Updated dependencies [d502673]
7+
- Updated dependencies [083edfd]
8+
- @graphprotocol/hypergraph@0.8.8
9+
310
## 0.1.11
411
### Patch Changes
512

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.11",
3+
"version": "0.1.12",
44
"private": true,
55
"type": "module",
66
"scripts": {

packages/hypergraph-react/CHANGELOG.md

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

3+
## 0.8.8
4+
### Patch Changes
5+
6+
- d502673: add fetching of totalCount on relations
7+
8+
For:
9+
10+
```ts
11+
export const Podcast = Entity.Schema(
12+
{
13+
name: Type.String,
14+
hosts: Type.Relation(Person),
15+
},
16+
{
17+
types: [Id('4c81561d-1f95-4131-9cdd-dd20ab831ba2')],
18+
properties: {
19+
name: Id('a126ca53-0c8e-48d5-b888-82c734c38935'),
20+
hosts: Id('c72d9abb-bca8-4e86-b7e8-b71e91d2b37e'),
21+
},
22+
},
23+
);
24+
```
25+
26+
you can now use:
27+
28+
```ts
29+
useEntities(Podcast, {
30+
mode: 'public',
31+
include: {
32+
hostsTotalCount: true,
33+
},
34+
});
35+
```
36+
- 083edfd: add Type.Backlink
37+
- Updated dependencies [d502673]
38+
- Updated dependencies [083edfd]
39+
- @graphprotocol/hypergraph@0.8.8
40+
341
## 0.8.7
442
### Patch Changes
543

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.7",
3+
"version": "0.8.8",
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: 35 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,40 @@
11
# @graphprotocol/hypergraph
22

3+
## 0.8.8
4+
### Patch Changes
5+
6+
- d502673: add fetching of totalCount on relations
7+
8+
For:
9+
10+
```ts
11+
export const Podcast = Entity.Schema(
12+
{
13+
name: Type.String,
14+
hosts: Type.Relation(Person),
15+
},
16+
{
17+
types: [Id('4c81561d-1f95-4131-9cdd-dd20ab831ba2')],
18+
properties: {
19+
name: Id('a126ca53-0c8e-48d5-b888-82c734c38935'),
20+
hosts: Id('c72d9abb-bca8-4e86-b7e8-b71e91d2b37e'),
21+
},
22+
},
23+
);
24+
```
25+
26+
you can now use:
27+
28+
```ts
29+
useEntities(Podcast, {
30+
mode: 'public',
31+
include: {
32+
hostsTotalCount: true,
33+
},
34+
});
35+
```
36+
- 083edfd: add Type.Backlink
37+
338
## 0.8.7
439
### Patch Changes
540

packages/hypergraph/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",
3-
"version": "0.8.7",
3+
"version": "0.8.8",
44
"description": "SDK for building performant, type-safe, local-first dapps on top of The Graph ecosystem knowledge graphs.",
55
"publishConfig": {
66
"bin": {

0 commit comments

Comments
 (0)