Skip to content

Releases: algolia/algoliasearch-django

1.3.0

23 May 14:25
b2b6389
Compare
Choose a tag to compare

Migration

The module name changed, please update accordingly:

--- a/app/settings.py
+++ b/app/settings.py
@@ -37,7 +37,7 @@ INSTALLED_APPS = (
-    'django.contrib.algoliasearch',
+    'algoliasearch_django',
 )

--- a/foo.py
+++ b/foo.py
@@ -1,4 +1,4 @@
-from django.contrib import algoliasearch
+import algoliasearch_django as algoliasearch

-from django.contrib.algoliasearch import AlgoliaIndex
+from algoliasearch_django import AlgoliaIndex

Updates

  • [CHANGE] Module name to avoid conflict when installing the package with pip

  • [CHANGE] Big performance improvements

  • [ADD] Option to raise or not exceptions. By default, raise only when DEBUG=True

  • [ADD] Create multiple AlgoliaEngine with different settings

  • [ADD] Auto-indexing option at registration time

  • [FIX] algolia_reindex command with batchsize argument on python34-django18

  • [FIX] Fields syntax

  • [FIX] Avoid mutable default parameters

  • [FIX] Fix bug in error handling

1.2.5

23 May 14:24
Compare
Choose a tag to compare
  • [FIX] Default to model.pk instead of 'id'

1.2.4

27 Apr 09:41
Compare
Choose a tag to compare
  • [FIX] Fix --batch-size of reindex command on Django 1.7

1.2.3

27 Apr 09:42
Compare
Choose a tag to compare
  • [FIX] Check that geo_field callable returns something valid

1.2.2

27 Apr 09:42
Compare
Choose a tag to compare
  • [FIX] Compatibility warning with Django 1.9

1.2.1

27 Apr 09:42
Compare
Choose a tag to compare
  • [ADD] get_queryset for grain indexing possibility
  • [ADD] Option to deactivate auto-indexing
  • [FIX] Various bugs

1.1.0

19 Jun 11:09
Compare
Choose a tag to compare
final fix build :D

1.0.0

18 Jun 13:30
Compare
Choose a tag to compare

First version.