Skip to content

Commit

Permalink
[release] 20220902 algorand (#13)
Browse files Browse the repository at this point in the history
  • Loading branch information
stwiname authored Sep 2, 2022
1 parent 3daf9d3 commit ceb8036
Show file tree
Hide file tree
Showing 4 changed files with 26 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 @@ -6,6 +6,17 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

## [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.

## [1.6.1] - 2022-08-09

### Fixed
Expand All @@ -18,6 +29,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

Initial Algorand support.

[Unreleased]: https://github.com/subquery/subql/compare/node/v1.6.1...HEAD
[Unreleased]: https://github.com/subquery/subql/compare/node/v1.9.0...HEAD
[1.9.0]: https://github.com/subquery/subql/compare/node/v1.6.1.../node/v1.9.0
[1.6.1]: https://github.com/subquery/subql/compare/node/v1.6.0.../node/v1.6.1
[1.6.0]: https://github.com/subquery/subql/compare/node/v1.6.0
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-algorand",
"version": "1.6.2-0",
"version": "1.9.0",
"description": "",
"author": "Ian He",
"license": "Apache-2.0",
Expand Down Expand Up @@ -69,6 +69,5 @@
"files": [
"/dist",
"/bin"
],
"stableVersion": "1.6.1"
]
}
10 changes: 9 additions & 1 deletion packages/types/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -9,13 +9,21 @@ All logs must start with the format: [x.y.z] - yyyy-mm-dd

## [Unreleased]

## [1.3.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.

## [1.2.1] - 2022-08-04
No Changes, fixing build issue

## [1.2.0] - 2022-08-04
Initial Algorand support

[Unreleased]: https://github.com/subquery/subql/compare/types/v1.2.1...HEAD
[Unreleased]: https://github.com/subquery/subql/compare/types/v1.3.0...HEAD
[1.2.1]: https://github.com/subquery/subql/compare/types/v1.2.1...types/v1.3.0
[1.2.1]: https://github.com/subquery/subql/compare/types/v1.2.0...types/v1.2.1
[1.2.0]: https://github.com/subquery/subql/compare/types/v1.2.0

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-algorand",
"version": "1.2.2-0",
"version": "1.3.0",
"description": "",
"homepage": "https://github.com/subquery/subql",
"repository": "github:subquery/subql-algorand",
Expand All @@ -21,6 +21,5 @@
"devDependencies": {
"@types/app-module-path": "^2.2.0",
"algosdk": "^1.19.0"
},
"stableVersion": "1.2.1"
}
}

0 comments on commit ceb8036

Please sign in to comment.