Skip to content

Commit

Permalink
[release] 20230501 Algorand (#40)
Browse files Browse the repository at this point in the history
  • Loading branch information
stwiname authored May 1, 2023
1 parent 1ed6a1c commit c5f418c
Show file tree
Hide file tree
Showing 6 changed files with 25 additions and 9 deletions.
4 changes: 4 additions & 0 deletions packages/common-algorand/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,10 @@ All logs must start with the format: [x.y.z] - yyyy-mm-dd

## [Unreleased]

## [2.0.0] - 2023-05-01
### Changed
- Sync with main SDK for 2.0 release

## [1.2.0] - 2023-01-24

### Added
Expand Down
5 changes: 2 additions & 3 deletions packages/common-algorand/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@subql/common-algorand",
"version": "1.2.1-1",
"version": "2.0.0",
"description": "",
"scripts": {
"build": "rm -rf dist && tsc -b",
Expand Down Expand Up @@ -28,6 +28,5 @@
"@types/js-yaml": "^4.0.4",
"@types/pino": "^6.3.12",
"@types/semver": "^7"
},
"stableVersion": "1.2.1-0"
}
}
11 changes: 11 additions & 0 deletions 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]

## [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.
- Direct get data from the cache rather than wait to retrieve it from database, with flag `--store-get-cache-size` user could decide how many records for **each** entity they want to keep in the cache (default is 500)
- If enabled `--store-cache-async` writing data to the store is asynchronous with regard to block processing (default is enabled)
- Testing Framework, allow users to test their projects filters and handler functions without having to index the project
- Create test files with the naming convention `*.test.ts` and place them in the `src/tests` or `src/test` folder. Each test file should contain test cases for specific mapping handlers.
- Run the testing service using the command: `subql-node-algorand test`.

## [1.19.0] - 2023-03-28
### Update
- Sync with main SDK
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-algorand",
"version": "1.19.1-0",
"version": "2.0.0",
"description": "",
"author": "Ian He",
"license": "Apache-2.0",
Expand Down Expand Up @@ -69,6 +69,5 @@
"files": [
"/dist",
"/bin"
],
"stableVersion": "1.19.0"
]
}
4 changes: 4 additions & 0 deletions packages/types/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,10 @@ All logs must start with the format: [x.y.z] - yyyy-mm-dd

## [Unreleased]

## [2.0.0] - 2023-05-01
### Changed
- Sync with main SDK for 2.0 release

## [1.6.0] - 2023-02-21
### Updated
- Sync with main sdk
Expand Down
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.6.1-0",
"version": "2.0.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": "^2.2.0"
},
"stableVersion": "1.6.0"
}
}

0 comments on commit c5f418c

Please sign in to comment.