Skip to content

Commit

Permalink
[release] 20231106 (#87)
Browse files Browse the repository at this point in the history
  • Loading branch information
jiqiang90 authored Nov 7, 2023
1 parent ae0e787 commit 642dd9f
Show file tree
Hide file tree
Showing 4 changed files with 23 additions and 10 deletions.
10 changes: 9 additions & 1 deletion packages/node/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,13 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

## [Unreleased]

## [3.3.0] - 2023-11-06
### Added
- With `dictionary-query-size` now dictionary can config the query block range

### Fixed
- Sync with node-core 6.3.0 with various fixes

## [3.2.0] - 2023-11-01
### Changed
- Update `@subql/node-core` with fixes and support for endBlock feature (#83)
Expand Down Expand Up @@ -163,7 +170,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
- Synced latest changes from main repo. (#10)

## [1.6.0] - 2022-08-04
[Unreleased]: https://github.com/subquery/subql-algorand/compare/node-algorand/3.2.0...HEAD
[Unreleased]: https://github.com/subquery/subql-algorand/compare/node-algorand/3.3.0...HEAD
[3.3.0]: https://github.com/subquery/subql-algorand/compare/node-algorand/3.2.0...node-algorand/3.3.0
[3.2.0]: https://github.com/subquery/subql-algorand/compare/node-algorand/3.1.1...node-algorand/3.2.0
[3.1.1]: https://github.com/subquery/subql-algorand/compare/node-algorand/3.1.0...node-algorand/3.1.1
[3.1.0]: https://github.com/subquery/subql-algorand/compare/node-algorand/3.0.1...node-algorand/3.1.0
Expand Down
7 changes: 3 additions & 4 deletions packages/node/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@subql/node-algorand",
"version": "3.2.1-0",
"version": "3.3.0",
"description": "",
"author": "Ian He",
"license": "GPL-3.0",
Expand All @@ -27,7 +27,7 @@
"@nestjs/schedule": "^3.0.1",
"@subql/common": "^3.3.0",
"@subql/common-algorand": "workspace:*",
"@subql/node-core": "^6.2.0",
"@subql/node-core": "^6.3.0",
"@subql/types-algorand": "workspace:*",
"algosdk": "^2.2.0",
"axios": "^1.3.4",
Expand Down Expand Up @@ -60,6 +60,5 @@
"files": [
"/dist",
"/bin"
],
"stableVersion": "3.2.0"
]
}
6 changes: 6 additions & 0 deletions packages/node/src/yargs.ts
Original file line number Diff line number Diff line change
Expand Up @@ -96,6 +96,12 @@ export const yargsOptions = yargs(hideBin(process.argv))
describe: 'Max timeout for dictionary query',
type: 'number',
},
'dictionary-query-size': {
demandOption: false,
describe:
'Dictionary query max block size, this specify the block height range of the dictionary query',
type: 'number',
},
'disable-historical': {
demandOption: false,
describe: 'Disable storing historical state entities',
Expand Down
10 changes: 5 additions & 5 deletions yarn.lock
Original file line number Diff line number Diff line change
Expand Up @@ -3122,7 +3122,7 @@ __metadata:
"@nestjs/testing": ^9.4.0
"@subql/common": ^3.3.0
"@subql/common-algorand": "workspace:*"
"@subql/node-core": ^6.2.0
"@subql/node-core": ^6.3.0
"@subql/types-algorand": "workspace:*"
"@types/express": ^4.17.13
"@types/jest": ^27.4.0
Expand Down Expand Up @@ -3151,9 +3151,9 @@ __metadata:
languageName: unknown
linkType: soft

"@subql/node-core@npm:^6.2.0":
version: 6.2.0
resolution: "@subql/node-core@npm:6.2.0"
"@subql/node-core@npm:^6.3.0":
version: 6.3.0
resolution: "@subql/node-core@npm:6.3.0"
dependencies:
"@apollo/client": ^3.7.16
"@nestjs/common": ^9.4.0
Expand All @@ -3178,7 +3178,7 @@ __metadata:
tar: ^6.1.11
vm2: ^3.9.19
yargs: ^16.2.0
checksum: ec4deffd88a94067a634349b8b809415a3d0dbc28a3c187df8482409fedef85ce343f497ff68e0c0b86ea0520f4864aee306986a62be0e4e20df14920ec66b40
checksum: a0961eb85a5bfb5ff521658563ef78e2db55969857295f4108a937377fbf81bb02567d8353be24b880e38e9b6c14d91ebad468fe555346faae7d8a0a5ae69f79
languageName: node
linkType: hard

Expand Down

0 comments on commit 642dd9f

Please sign in to comment.