Skip to content

Commit

Permalink
[release] 20230526 algorand (#45)
Browse files Browse the repository at this point in the history
  • Loading branch information
stwiname authored May 25, 2023
1 parent 477a84c commit 01d0a43
Show file tree
Hide file tree
Showing 3 changed files with 112 additions and 177 deletions.
42 changes: 25 additions & 17 deletions packages/node/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,17 +5,20 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).

## [Unreleased]

## [2.3.0] - 2023-05-26
### Changed
- Update to Node 18
- Update to latest node-core

## [2.1.0] - 2023-05-17
### Added
- Support for unfinalized blocks with workers
### Updated

### Changed
- Sync with main SDK

## [2.0.0] - 2023-05-01
- Major release for 2.0.0, align with other SDK versions
### Added
- Added Database cache feature, this significantly improve indexing performance
- Data flush to database when number of records reaches `--store-cache-threshold` value (default is 1000), this reduces number of transactions to database in order to save time.
Expand All @@ -26,23 +29,22 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
- Run the testing service using the command: `subql-node-algorand test`.

## [1.19.0] - 2023-03-28
### Update
### Changed
- Sync with main SDK

## [1.18.3] - 2023-03-01
### Fixed
- Fixed Nest dependencies issue with IndexManger (#34)

## [1.18.2] - 2023-02-28
### Updated
### Changed
- improve error handling for endpoint errors (#31)

### Fixed
- Index large blocks (#30)


## [1.18.1] - 2023-02-21
### Updated
### Changed
- Sync with main sdk (#28)
- Fixes relating to dynamic datasources and workers

Expand All @@ -54,7 +56,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
- Sender filter not working with certain tx types. (#25)
- Make `txType` filter optional. (#23)

### Updated
### Changed
- Sinc with latest changes on Substrate SDK: (#22)
- Ability to bypass blocks
- Sync block-dispatcher with same structure as main SDK
Expand All @@ -64,13 +66,13 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
- Update SubqueryProject to @Injectable just to match the main SDK

## [1.11.0] - 2022-11-11
### Updated
### Changed
- Sync with latest changes on Substrate SDK: (#19)
- Add timestamp filter to block handler.
- Update reindex subcommand.

## [1.10.0] - 2022-10-12
### Updated
### Changed
- Sync with latest changes on Substrate SDK:
- Remove deprecated subqueries table
- New reindex and force-clean subcommands.
Expand All @@ -87,18 +89,24 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
- Fixed indexing stop processing blocks.

## [1.6.1] - 2022-08-09

### Fixed
- Filtering issues with transaction handlers. (#9)

### Changed
- Synced latest changes from main repo. (#10)

## [1.6.0] - 2022-08-04

Initial Algorand support.

[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
[Unreleased]: https://github.com/subquery/subql-algorand/compare/v2.3.0...HEAD
[2.3.0]: https://github.com/subquery/subql-algorand/compare/v2.1.0...v2.3.0
[2.1.0]: https://github.com/subquery/subql-algorand/node/v2.0.0.../node/v2.1.0
[2.0.0]: https://github.com/subquery/subql-algorand/node/v.1.19.0../node/v2.0.0
[1.19.0]: https://github.com/subquery/subql-algorand/node/v1.18.3.../node/v1.19.0
[1.18.3]: https://github.com/subquery/subql-algorand/node/v1.18.2.../node/v1.18.3
[1.18.2]: https://github.com/subquery/subql-algorand/node/v1.18.1.../node/v1.18.2
[1.18.1]: https://github.com/subquery/subql-algorand/node/v1.18.0.../node/v1.18.1
[1.18.0]: https://github.com/subquery/subql-algorand/node/v1.11.0.../node/v1.18.0
[1.11.0]: https://github.com/subquery/subql-algorand/node/v1.10.0.../node/v1.11.0
[1.10.0]: https://github.com/subquery/subql-algorand/node/v1.9.0.../node/v1.10.0
[1.9.0]: https://github.com/subquery/subql-algorand/compare/node/v1.6.1.../node/v1.9.0
[1.6.1]: https://github.com/subquery/subql-algorand/compare/node/v1.6.0.../node/v1.6.1
[1.6.0]: https://github.com/subquery/subql-algorand/compare/node/v1.6.0
16 changes: 7 additions & 9 deletions packages/node/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@subql/node-algorand",
"version": "2.1.1-0",
"version": "2.3.0",
"description": "",
"author": "Ian He",
"license": "Apache-2.0",
Expand All @@ -24,20 +24,16 @@
"@nestjs/event-emitter": "^1.3.0",
"@nestjs/platform-express": "^8.2.6",
"@nestjs/schedule": "^1.0.2",
"@subql/common": "^2.0.0",
"@subql/common": "^2.1.1",
"@subql/common-algorand": "workspace:*",
"@subql/node-core": "^2.2.1",
"@subql/node-core": "^2.3.0",
"@subql/types-algorand": "workspace:*",
"@subql/utils": "^2.0.0",
"@subql/x-merkle-mountain-range": "2.0.0-0.1.2",
"@willsoto/nestjs-prometheus": "^4.4.0",
"algosdk": "^2.2.0",
"app-module-path": "^2.2.0",
"axios": "^1.3.4",
"cron-converter": "^1.0.2",
"dayjs": "^1.10.7",
"eventemitter2": "^6.4.5",
"fetch-h2": "3.0.2",
"lodash": "^4.17.21",
"pg": "^8.7.1",
"reflect-metadata": "^0.1.13",
Expand All @@ -60,9 +56,11 @@
"dotenv": "^15.0.1",
"nodemon": "^2.0.15"
},
"peerDependencies": {
"@subql/utils": "*"
},
"files": [
"/dist",
"/bin"
],
"stableVersion": "2.1.0"
]
}
Loading

0 comments on commit 01d0a43

Please sign in to comment.