Releases: ltonetwork/indexer
Releases · ltonetwork/indexer
v1.4.3 - DID resolution
v1.4.2
v1.4.1
Full Changelog: v1.4.0...v1.4.1
v1.4.0 - Titanium
v1.3.3
What's Changed
Updated libraries
- Bump url-parse and amqplib by @dependabot in #168
- Bump minimist from 1.2.5 to 1.2.6 by @dependabot in #167
- Bump passport from 0.4.1 to 0.6.0 by @dependabot in #166
- Bump moment from 2.29.2 to 2.29.4 by @dependabot in #163
- Bump json-schema and jsprim by @dependabot in #174
- Bump got and nodemon by @dependabot in #172
- Bump swagger-ui-dist and swagger-ui-express by @dependabot in #173
Full Changelog: v1.3.2...v1.3.3
v1.3.2
v1.3.1
What's Changed
- Index key type for identities by @jasny in #162
- Bump terser from 4.8.0 to 4.8.1 by @dependabot in #161
- Bump convict from 6.2.2 to 6.2.3 by @dependabot in #158
- Bump axios from 0.21.1 to 0.21.2 by @dependabot in #156
- Fix memory leak by @jasny in #164
Full Changelog: v1.3.0...v1.3.1
v1.3.0
v1.2.1
This release fixes some performance issues by optimizing the /wallet/addresses
call to the public node. See related PR.
- Optimizes the
getNodeWallet()
call to reduce the amount of times this call is made- On AWS at least, this call is made a lot of times, and it often results in a
ECONNRESET
error. With this optimization, at least that call is reduced, freeing up some resources instead of blocking the application. TheECONNRESET
error might still happen, but at least it won't happen as often and clog up resources.
- On AWS at least, this call is made a lot of times, and it often results in a
v1.2.0
This release fixes the bug found on #139 (PR #140)
- Fixes the issue with
/transactions/addresses
endpoint- The indexing was not behaving properly due to an error implementing
AwaitLock
AwaitLock
was getting stuck when multiple listeners were activated, so the data was never saved to the database
- The indexing was not behaving properly due to an error implementing
- Fixes/moves
leveldb
connection handling of errors on.get
method- Instead of throwing an error when value is not found, returns an empty list. This was done on the
leveldb.service
previously, but a better place is on theleveldb.connection
, as it covers more use-cases
- Instead of throwing an error when value is not found, returns an empty list. This was done on the
- Some identation and linting fixes