Update dependency algoliasearch to v4.25.3
This PR contains the following updates:
| Package | Change | Age | Confidence |
|---|---|---|---|
| algoliasearch (source) | 4.20.0 → 4.25.3 |
Release Notes
algolia/algoliasearch-client-javascript (algoliasearch)
v4.25.3
v4.25.2
v4.25.1
4.25.0 release is broken, please use 4.25.1
v4.25.0
v4.24.0
- chore: release v4.24.0 (#1528) (9f8956c), closes #1528
- chore: revert "chore: release v4.24.0 (#1528)" (#1531) (6a67e85), closes #1528 #1531
- feat(types): add
bannersinrenderingContent(#1522) (5828389), closes #1522 - feat(types): add hide in renderingContent facet values (#1529) (ed320a8), closes #1529
- feat(types): add missing virtual attribute to Index type (#1530) (ba2d858), closes #1530
- fix(support): redirect to ticket link (#1527) (f73a86a), closes #1527
v4.23.3
v4.23.2
v4.23.1
- fix(recommend): export recommend methods to use them in algoliasearch (#1512) (5fc5f4f), closes #1512
v4.23.0
v4.22.1
v4.22.0
Why
The trending-facets API only returns type string for facetValue.
A follow-up on #1494 as other models return items/hits which are of type RecordWithObjectID
However, trending-facets model returns a list of TrendingFacetHit which (by definition) don't have an objectID property.
How
To simplify the code, we can remove the type argument TObject for trending-facets
Impact
If you're not using TypeScript or the trending-facets model, there is nothing to change. You can ignore the following.
Otherwise, you will need to remove the type argument passed to getTrendingFacets and the code goes from this:
type FacetType = {
facetName: string;
facetValue: string;
}
const { results } = await client.getTrendingFacets<FacetType>(/**/)
To this:
const { results } = await client.getTrendingFacets(/**/)
v4.21.1
- fix(recommend): RecommendedForYouQuery userToken should be required (#1496) (d20b253), closes #1496
v4.21.0
Configuration
📅 Schedule: Branch creation - Monday through Friday ( * * * * 1-5 ) (UTC), Automerge - At any time (no schedule defined).
🚦 Automerge: Enabled.
♻ Rebasing: Whenever PR is behind base branch, or you tick the rebase/retry checkbox.
🔕 Ignore: Close this PR and you won't be reminded about this update again.
- [ ] If you want to rebase/retry this PR, check this box
This PR was generated by Mend Renovate. View the repository job log.