Releases: mikebronner/laravel-mixpanel
Releases · mikebronner/laravel-mixpanel
0.5.1
Fixed
- event listener to work with Laravel 5.2 core events.
0.5.0
Changed
- use of Auth\Guard to use Contracts\Auth\Guard.
Added
- entry of
auth.model
configuration variable.
0.4.14
Fixed
- missing parenthesis due to typo in last release.
0.4.13
Fixed
- detection of device information to no longer include device version.
0.4.12
Fixed
- incorrect usage of array_filter, causing empty strings to be passed.
0.4.11
Added
- tracking of robots, if a browser isn't detected, and it is confirmed as a robot.
Removed
- any "unknown" values from being passed.
0.4.10
Changed
- reverted from using getAttribute(), as it is redundant.
- refactored
track()
method to track: Url, Operating System, Hardware, Browser, Referring Domain, IP (For GeoLocation)
0.4.9
Duplicate of 0.4.8, to resolve version change problems.
0.4.8
Changed
- referenced to user model properties to use
getAttribute()
instead of referencing them directly.
Added
- tracking of
name
in addition tofirst name
andlast name
. - tracking of
referrer
andreferring domain
to help get additional information for Live View (may not yet work
fully).
0.4.7
Fixed
- improper tracking of user details, which caused users' names to be blank and a
0 Object [object]
field to be tracked
erroneously. - fixed tracking to not depend on
$user->id
when referencing the primary key, but pulling it dynamically instead.