Releases: ninoseki/mihari
Releases · ninoseki/mihari
v5.4.5.1
v5.4.5
v5.4.4
v5.4.3
v5.4.1
v5.4.0
Pagination limit
This option can prevent issue like #664, consuming so many API quota.
For example, the following query allows 10 pagination at max.
analyzer: ...
query: ...
options:
pagination_limit: 10
(Note: pagination limit is set as 1000 by default)
v5.3.2
v5.3.1
v5.3.0
- Remove
dry-initalizer
(#644) - Remove the frontend assets from the repository (#645)
- Remove
dry-configurable
(#646, #648) - Make retry configurable (#647)
Configurable retry
Now you can set retry conditions per query/analyzer like the following:
queries:
- analyzer: ...
query: ...
options:
retry_times: 10 # retry 10 times
retry_interval: 10 # 10 secs interval between retries
(Note: Mihari automatically retries if there is a retryable error such as network error, timeout error, etc.)