Revert "Fix Elasticsearch/Python mapping mismatch"

This reverts commit e7e1f238ab.
This commit is contained in:
Sean Whalen
2018-11-28 11:08:47 -05:00
parent e7e1f238ab
commit bdf9f62377
4 changed files with 7 additions and 10 deletions
+1 -4
View File
@@ -1,10 +1,7 @@
5.1.0
-----
- Bugfix: Elasticsearch/Python mapping mismatch (fixes root cause of issue #25)
- Remove static `elasticsearch` and `elasticsearch-dsl` versions from package requirements
- Add support for TLS/SSL and username/password auth to Kafka
- Add support for TLS/SSL and uerename/password auth to Kafka
5.0.2
-----
+2 -2
View File
@@ -30,7 +30,7 @@ class _PublishedPolicy(InnerDoc):
p = Text()
sp = Text()
pct = Integer()
fo = Text()
fo = Text() # TODO: Change this to Text (issue #31)
class _DKIMResult(InnerDoc):
@@ -54,7 +54,7 @@ class _AggregateReportDoc(Document):
org_email = Text()
org_extra_contact_info = Text()
report_id = Text()
date_range = Date()
date_range = DateRange()
errors = Text()
published_policy = Object(_PublishedPolicy)
source_ip_address = Ip()
+2 -2
View File
@@ -9,8 +9,8 @@ dnspython
imapclient
mail-parser
dateparser
elasticsearch
elasticsearch-dsl
elasticsearch==6.3.1
elasticsearch-dsl==6.2.1
kafka-python
flake8
sphinx
+2 -2
View File
@@ -95,8 +95,8 @@ setup(
install_requires=['dnspython', 'expiringdict', 'publicsuffix',
'xmltodict', 'geoip2', 'urllib3<1.24,>=1.21.1',
'requests', 'imapclient', 'mail-parser', 'dateparser',
'elasticsearch',
'elasticsearch-dsl', 'kafka-python'
'elasticsearch==6.3.1',
'elasticsearch-dsl==6.2.1', 'kafka-python'
],
entry_points={