Skip to content

Commit

Permalink
Merge tag '0.27.1' into develop
Browse files Browse the repository at this point in the history
  • Loading branch information
felliott committed Jul 25, 2018
2 parents cba8b2f + 9d6a66c commit 62e0cde
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 3 deletions.
4 changes: 4 additions & 0 deletions CHANGELOG
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,10 @@
ChangeLog
*********

0.27.1 (2018-07-25)
===================
- Feature: Tell Keen analytics to strip ip on upload.

0.27.0 (2018-07-19)
===================
- Feature: Support the Hypothes.is annotator toolbar on pdfs and files converted to pdf. This is
Expand Down
5 changes: 3 additions & 2 deletions mfr/core/remote_logging.py
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,8 @@ async def log_analytics(request, metrics, is_error=False):
{ # private
'name': 'keen:ip_to_geo',
'input': {
'ip': 'tech.ip'
'ip': 'tech.ip',
'remove_ip_property': True,
},
'output': 'geo',
},
Expand Down Expand Up @@ -178,7 +179,7 @@ def _build_public_file_payload(action, request, file_metadata):
'request': {
'url': request['request']['url']
},
'anon': {
'anon': { # intended for anonymized geolocation, never implemented
'country': None,
'continent': None,
},
Expand Down
2 changes: 1 addition & 1 deletion mfr/version.py
Original file line number Diff line number Diff line change
@@ -1 +1 @@
__version__ = '0.27.0'
__version__ = '0.27.1'

0 comments on commit 62e0cde

Please sign in to comment.