Skip to content

Commit

Permalink
[release] 20220902 cosmos (#52)
Browse files Browse the repository at this point in the history
* [release] 20220902 cosmos

* Apply suggestions from code review

Co-authored-by: Marta Adamczyk <[email protected]>

Co-authored-by: Marta Adamczyk <[email protected]>
  • Loading branch information
stwiname and deverka authored Sep 2, 2022
1 parent 2fc1fcf commit eefdc21
Show file tree
Hide file tree
Showing 4 changed files with 27 additions and 8 deletions.
14 changes: 13 additions & 1 deletion packages/node/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,17 @@ All logs must start with the format: [x.y.z] - yyyy-mm-dd

## [Unreleased]

## [1.9.0] - 2022-09-02

### Changed
- Update to same version numbering as Substrate SDK.
- Sync with latest changes on Substrate SDK:
- Use `@subql/node-core` package.
- Updated `store.getByField` to have limit and offset options: `getByField(entity: string, field: string, value: any, options?: {offset?: number; limit?: number}): Promise<Entity[]>`;.
- Improved performance logging.
- Added `bulkUpdate` and `bulkGet` to the injected store. This can be used to optimise handlers and speed up indexing.
- Fixed indexing stop processing blocks.

## [0.3.0] - 2022-07-28
### Changed
- Sync with latest development from origin. See [@subql/node changelog](https://github.com/subquery/subql/blob/main/packages/node/CHANGELOG.md) from v1.2.1 to v1.6.0 (#44) (#45)
Expand Down Expand Up @@ -75,7 +86,8 @@ All logs must start with the format: [x.y.z] - yyyy-mm-dd
## [0.0.5] - 2022-06-15
First release

[Unreleased]: https://github.com/subquery/subql-cosmos/compare/node/0.3.0...HEAD
[Unreleased]: https://github.com/subquery/subql-cosmos/compare/node/1.9.0...HEAD
[1.9.0]: https://github.com/subquery/subql-cosmos/compare/node/0.3.0...node/1.9.0
[0.3.0]: https://github.com/subquery/subql-cosmos/compare/node/0.2.0...node/0.3.0
[0.2.0]: https://github.com/subquery/subql-cosmos/compare/node/0.1.3...node/0.2.0
[0.1.3]: https://github.com/subquery/subql-cosmos/compare/node/0.1.2...node/0.1.3
Expand Down
5 changes: 2 additions & 3 deletions packages/node/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@subql/node-cosmos",
"version": "0.3.1-1",
"version": "1.9.0",
"description": "",
"author": "Naveen Veluswamy",
"license": "Apache-2.0",
Expand Down Expand Up @@ -73,6 +73,5 @@
"files": [
"/dist",
"/bin"
],
"stableVersion": "0.3.1-0"
]
}
11 changes: 10 additions & 1 deletion packages/types/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,14 @@ All logs must start with the format: [x.y.z] - yyyy-mm-dd

## [Unreleased]

## [0.2.0] - 2022-09-02

### Changed
Sync changes from main SDK:
- Updated `store.getByField` to have limit and offset options: `getByField(entity: string, field: string, value: any, options?: {offset?: number; limit?: number}): Promise<Entity[]>;`.
- Added `bulkUpdate` and `bulkGet` to the injected store. This can be used to optimise handlers and speed up indexing.


## [0.1.1] - 2022-07-01
- Inject the types registry into the sandbox (#34)

Expand All @@ -25,7 +33,8 @@ All logs must start with the format: [x.y.z] - yyyy-mm-dd
## [0.0.5] - 2022-06-15
First release

[Unreleased]: https://github.com/subquery/subql-cosmos/compare/types/0.1.1...HEAD
[Unreleased]: https://github.com/subquery/subql-cosmos/compare/types/0.2.0...HEAD
[0.2.0]: https://github.com/subquery/subql-cosmos/compare/types/0.1.1...types/0.2.0
[0.1.1]: https://github.com/subquery/subql-cosmos/compare/types/0.1.0...types/0.1.1
[0.1.0]: https://github.com/subquery/subql-cosmos/compare/types/0.0.6...types/0.1.0
[0.0.6]: https://github.com/subquery/subql-cosmos/compare/types/0.0.5...types/0.0.6
5 changes: 2 additions & 3 deletions packages/types/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@subql/types-cosmos",
"version": "0.1.2-4",
"version": "0.2.0",
"description": "",
"homepage": "https://github.com/subquery/subql",
"repository": "github:subquery/subql",
Expand All @@ -21,6 +21,5 @@
},
"devDependencies": {
"@types/app-module-path": "^2.2.0"
},
"stableVersion": "0.1.2-3"
}
}

0 comments on commit eefdc21

Please sign in to comment.