This repository was archived by the owner on Dec 16, 2022. It is now read-only.
fix(deps): update dependency algoliasearch to v3.29.0 #106
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
This Pull Request updates dependency algoliasearch from
v3.27.1tov3.29.0Note: This PR was created on a configured schedule ("every weekend" in timezone
Europe/Paris) and will not receive updates outside those times.Release Notes
v3.29.0Compare Source
import algoliasearch from 'algoliasearch';
const client = algoliasearch('appid', 'apikey');
const analytics = client.initAnalytics();
analytics.getABTests().then(console.log)
require('algoliasearch');v3.28.0Compare Source
FEAT(cache): cache the requests instead of responses (#694)
If you pass
_useRequestCache: trueas an option to the client then the cache behaviour will change. If you launch two requests at the same time then only one request will be done while the two callbacks/promises will still be called/resolved.Previously, the client would have made two requests instead of one.
This is implemented by filling the cache as soon as the request launches instead of waiting for the response to fill it.
FIX(parse): correct path to debug module (#702)
fixes parse build, weirdly webpack is not throwing when importing an
unkown module using target node
TESTS: Make this CI green, fix unit and integration tests on every platform
This PR has been generated by Renovate Bot.