forked from bruth/django-tracking2
-
Notifications
You must be signed in to change notification settings - Fork 0
/
CHANGELOG
72 lines (43 loc) · 2.18 KB
/
CHANGELOG
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
2014-12-27 Byron Ruth <[email protected]>
* Replace IP validation with Django's built-in validators. This also
removes a Windows-specific issue of not having the `socket.inet_aton`
function. (#48, #47)
2014-12-08 Michael J. Schultz <[email protected]>
* Add tests to existing codebase with minor bugfixes
* Change /dashboard/ view to include past 7 days by default (#20, #28)
* Improve timezone support by removing `.date()` calls (#39)
* Increase scope of `TRACK_IGNORE_URLS` beyond Pageview tracking (#45)
2013-11-07 Byron Ruth <[email protected]>
* Add PageView.method field for tracking the request method used
2013-11-06 Byron Ruth <[email protected]>
* Update deprecated import path for Django 1.6+
2013-11-01 Byron Ruth <[email protected]>
* Move stats dashboard endpoint / rather than /dashboard/
* Update initial migration to support custom user models for Django 1.5+
2013-09-30 Byron Ruth <[email protected]>
* Fix MANIFEST.in file to graft templates directory
2013-09-08 Byron Ruth <[email protected]>
* Add support custom user model in Django 1.5+
2013-07-14 Byron Ruth <[email protected]>
* Remove deprecated module import for GIS by Tarak Blah
* Added start and end date to stats view context by Tarak Blah
* Remove registered users as requirement in manager by Tarak Blah
2013-03-16 Byron Ruth <[email protected]>
* Fix offset-aware and offset-naive datetime errors by Chris Franklin
2012-03-14 Byron Ruth <[email protected]>
* Add internal cache mechanism to reduce database hits in middleware
by one. Cache invalidates after `SESSION_COOKIE_AGE` and when the user
explicitly logs out.
2012-03-08 Byron Ruth <[email protected]>
* Add `TRACK_PAGEVIEWS` and `TRACK_IGNORE_URLS` settings.
* Deprecate `TRACKING_USE_GEOIP` in favor of `TRACK_USING_GEOIP`
(even though this is not an officially supported feature)
2012-03-03 Byron Ruth <[email protected]>
* Add `TRACK_ANONYMOUS_USERS` setting
2012-01-30 Byron Ruth <[email protected]>
* Fix bug where the 'User-Agent' header was assumed to
exist which caused an exception.
2012-01-25 Byron Ruth <[email protected]>
* Add `TRACK_AJAX_REQUESTS` setting
2012-01-18 Byron Ruth <[email protected]>
* Initial release