Skip to content

Releases: meilisearch/meilisearch-python

v0.42.0 🐍

Choose a tag to compare

@meili-bot meili-bot released this 30 Jun 04:19
0170ce0

Important

This release requires Python 3.10 or higher.

⚠️ Breaking changes

🐛 Bug Fixes

  • Do not swallow non-JSON http error responses (#1250) @Strift

⚙️ Maintenance/misc

Thanks again to @DhavalGojiya, @Strift, and @sanders41! 🎉

v0.41.1 🐍

Choose a tag to compare

@meili-bot meili-bot released this 16 Jun 03:31
f757b56

🐛 Bug Fixes

⚙️ Maintenance/misc

Thanks again to @DhavalGojiya, @StephaneRob, @Strift, @dependabot[bot], and dependabot[bot]! 🎉

v0.41.0 🐍

Choose a tag to compare

@meili-bot meili-bot released this 22 Apr 05:16
bc78e12

🚀 Enhancements

⚙️ Maintenance/misc

Thanks again to @DhavalGojiya, @Strift, @VedantMadane, @awais786, @aznszn, @curquiza, @dependabot[bot], @jawad-khan, @sanders41, @vibeyclaw and dependabot[bot]! 🎉

v0.40.0 🐍

Choose a tag to compare

@meili-bot meili-bot released this 15 Jan 06:28
6003393

🚀 Enhancements

⚙️ Maintenance/misc

Thanks again to @Strift, @awais786, @aznszn, @jawad-khan and @orbin123! 🎉

v0.39.0 🐍

Choose a tag to compare

@meili-bot meili-bot released this 01 Dec 04:13
6e04189

🚀 Enhancements

🐛 Bug Fixes

  • Fix custom headers override (#1172) @eun2ce

⚙️ Maintenance/misc

Thanks again to @DhavalGojiya, @Strift, @awais786, @eun2ce, and @jawad-khan! 🎉

v0.38.0 🐍

Choose a tag to compare

@meili-bot meili-bot released this 11 Nov 13:42
a54e3c2

🚀 Enhancements

  • feat: Add support for compacting database indexes. (#1161) @awais786

Thanks again to @Strift, @awais786 ! 🎉

v0.37.1 🐍

Choose a tag to compare

@meili-bot meili-bot released this 23 Oct 11:57
fb13de1

🐛 Bug Fixes

  • Fix: make TaskResults.from_/next_ accept None so get_tasks doesn’t crash on empty pages. 🤗 (#1126) @ddboline

⚙️ Maintenance/misc

  • Update dependabot and release template configuration (#1144)

Thanks again to @bentxi13, @curquiza, @ddboline, @dependabot[bot], and dependabot[bot]! 🎉

v0.37.0 🐍

Choose a tag to compare

@meili-bot meili-bot released this 20 Aug 07:48
d79f4ab

🚀 Enhancements

⚙️ Maintenance/misc

Thanks again to @EazyAl, @Strift, @brunoocasali, @curquiza ! 🎉

v0.36.0 🐍

Choose a tag to compare

@meili-bot meili-bot released this 20 Jun 02:13
c5293d9

⚠️ Breaking changes

  • Fix Document model: bad test, attribute bug, and field cleanup (#1113) @nnethercott

    🛠 migration path

    What changed?

    • The internal __doc field in Document has been removed to avoid data duplication.
    • Document.__getattr__ now correctly returns attribute values rather than the attribute name itself.

    Impact

    • Code relying on internal access to document._Document__doc (e.g. through iterators) will break.
    • Behavior of doc.getattr("field") is now consistent and correct.

    What you need to do:

    • If you were manually accessing document._Document__doc, switch to using direct attribute access or casting with dict(doc).

    example updated usage

    doc = index.get_document("foo")
    doc_dict = dict(doc) 
    doc_dict.pop("_Document__doc")  # ❌ Not needed anymore
  • Refactor TaskResults, IndexStats (#1066) @ellnix (⚠️ this potentially have a breaking-change)

🚀 Enhancements

⚙️ Maintenance/misc

Thanks again to @MuddyHope, @brunoocasali, @ellnix, @nnethercott, @thicolares! 🎉

v0.35 🕊️

Choose a tag to compare

@meili-bot meili-bot released this 15 May 04:50
2b0bd13

This release makes the SDK compatible with Meilisearch 1.13 AI search features.

🚀 Enhancements

  • Update embedders settings, hybrid search, and add tests for AI search methods (#1087) @Strift

⚙️ Maintenance/misc

Thanks again to @Strift, @brunoocasali, and @curquiza ! 🎉