Skip to content

[2.3.0] @subql/node-near

Compare
Choose a tag to compare
@stwiname stwiname released this 23 May 01:46
· 164 commits to main since this release
e01af8d

2.3.0 - 2023-05-23

Changed

  • Update to Node 18
  • Updated @subql/node-core

2.1.1 - 2023-05-17

Fixed

  • Previous release

2.1.0 - 2023-05-17

Added

  • Support for unfinalized blocks with workers

Changed

  • Sync with main SDK

2.0.0 - 2023-05-01

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-near test.

1.21.1 - 2023-03-30

Fixed

  • Pin @subql/node-core version to 1.10.1-2

1.21.0 - 2023-03-28

Changed

  • Sync latest changes from main SDK

1.20.1 - 2023-03-15

Added

  • Index ids of receipt created by a transaction

1.20.0 - 2023-03-13

Changed

  • Sync latest changes from @subql/node (#22)

1.19.3 - 2023-03-06

Added

  • Sync latest changes from @subql/node

1.19.2 - 2023-03-06

Added

  • Sync latest changes from @subql/node

1.19.1 - 2023-03-03

Added

  • Sync latest changes from @subql/node

Fixed

  • Update sequelize version to match with other @subql modules

1.19.0 - 2023-03-02

Added

  • Add transaction receipt handlers and filters (#13)

1.18.1 - 2023-02-03

Changed

  • Add toJson method to function args (#9)

1.18.0 - 2023-01-26