Skip to content

Commit 00e022e

Browse files
committed
bump version
1 parent 4bf4626 commit 00e022e

11 files changed

Lines changed: 106 additions & 36 deletions

File tree

.changeset/icy-emus-tap.md

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

apps/connect/CHANGELOG.md

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

3+
## 0.2.13
4+
### Patch Changes
5+
6+
- Updated dependencies [edf7630]
7+
- @graphprotocol/hypergraph-react@0.8.0
8+
- @graphprotocol/hypergraph@0.8.0
9+
310
## 0.2.12
411
### Patch Changes
512

@@ -65,7 +72,7 @@
6572

6673
- Updated dependencies [9d22312]
6774
- @graphprotocol/hypergraph@0.5.0
68-
- @graphprotocol/hypergraph-react@1.0.0
75+
- @graphprotocol/hypergraph-react@0.5.0
6976

7077
## 0.2.3
7178
### Patch Changes
@@ -95,7 +102,7 @@
95102
### Patch Changes
96103

97104
- Updated dependencies [9b29006]
98-
- @graphprotocol/hypergraph-react@1.0.0
105+
- @graphprotocol/hypergraph-react@0.4.0
99106
- @graphprotocol/hypergraph@0.4.0
100107

101108
## 0.1.3

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

apps/server/CHANGELOG.md

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

3+
## 0.1.4
4+
### Patch Changes
5+
6+
- Updated dependencies [edf7630]
7+
- @graphprotocol/hypergraph@0.8.0
8+
39
## 0.1.3
410
### Patch Changes
511

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

packages/create-hypergraph/CHANGELOG.md

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

3+
## 0.6.0
4+
### Minor Changes
5+
6+
- edf7630: Schema Definition API Change (Breaking Change)
7+
8+
Before:
9+
```ts
10+
export class User extends Entity.Class<User>('User')({
11+
name: Type.String,
12+
}) {}
13+
```
14+
15+
After:
16+
```ts
17+
export const User = Entity.Schema(
18+
{ name: Type.String },
19+
{
20+
types: [Id('bffa181e-a333-495b-949c-57f2831d7eca')],
21+
properties: {
22+
name: Id('a126ca53-0c8e-48d5-b888-82c734c38935'),
23+
},
24+
},
25+
);
26+
```
27+
28+
All entity definitions need to be rewritten. The new API requires explicit type IDs and property IDs.
29+
330
## 0.5.7
431
### Patch Changes
532

packages/create-hypergraph/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "create-hypergraph",
3-
"version": "0.5.7",
3+
"version": "0.6.0",
44
"description": "CLI toolchain to scaffold a Hypergraph-enabled application with a given template.",
55
"type": "module",
66
"bin": {

packages/hypergraph-react/CHANGELOG.md

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

3+
## 0.8.0
4+
### Minor Changes
5+
6+
- edf7630: Schema Definition API Change (Breaking Change)
7+
8+
Before:
9+
```ts
10+
export class User extends Entity.Class<User>('User')({
11+
name: Type.String,
12+
}) {}
13+
```
14+
15+
After:
16+
```ts
17+
export const User = Entity.Schema(
18+
{ name: Type.String },
19+
{
20+
types: [Id('bffa181e-a333-495b-949c-57f2831d7eca')],
21+
properties: {
22+
name: Id('a126ca53-0c8e-48d5-b888-82c734c38935'),
23+
},
24+
},
25+
);
26+
```
27+
28+
All entity definitions need to be rewritten. The new API requires explicit type IDs and property IDs.
29+
30+
### Patch Changes
31+
32+
- Updated dependencies [edf7630]
33+
- @graphprotocol/hypergraph@0.8.0
34+
335
## 0.7.3
436
### Patch Changes
537

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

3+
## 0.8.0
4+
### Minor Changes
5+
6+
- edf7630: Schema Definition API Change (Breaking Change)
7+
8+
Before:
9+
```ts
10+
export class User extends Entity.Class<User>('User')({
11+
name: Type.String,
12+
}) {}
13+
```
14+
15+
After:
16+
```ts
17+
export const User = Entity.Schema(
18+
{ name: Type.String },
19+
{
20+
types: [Id('bffa181e-a333-495b-949c-57f2831d7eca')],
21+
properties: {
22+
name: Id('a126ca53-0c8e-48d5-b888-82c734c38935'),
23+
},
24+
},
25+
);
26+
```
27+
28+
All entity definitions need to be rewritten. The new API requires explicit type IDs and property IDs.
29+
330
## 0.7.3
431
### Patch Changes
532

0 commit comments

Comments
 (0)