@orama/orama 3.1.11
What's Changed
- feat: adds explicit AND, OR, NOT filters by @micheleriva in https://github.com/oramasearch/orama/pull/959
const results = search(db, {
term: "phone",
where: {
or: [
{
and: [
{ category: "electronics" },
{ price: { lt: 100 } }
]
},
{
and: [
{ not: { brand: "random-brand" } },
{ price: { lt: 150 } }
]
}
]
}
})
-
feat: implement upsert (#945) by @micheleriva in https://github.com/oramasearch/orama/pull/958
-
fix: preferredVersion undefined on Docusaurus start by @raiindev in https://github.com/oramasearch/orama/pull/956
Full Changelog: https://github.com/oramasearch/orama/compare/v3.1.10...v3.1.11