Angulartics2 Versions Save

Vendor-agnostic analytics for Angular2 applications.

v7.3.0

5 years ago

7.3.0 (2019-01-04)

Features

v7.2.4

5 years ago

7.2.4 (2018-12-20)

Bug Fixes

  • launch: Send Properties to Launch on pageTrack (#326) (ab64530)

v7.2.3

5 years ago

7.2.3 (2018-12-05)

Bug Fixes

  • GTM: Fixed error given by data layer when using server-side rendering (#321) (bee8cf2)

v7.2.2

5 years ago

7.2.2 (2018-11-30)

Bug Fixes

  • Ability to push absolutely custom data layer (#320) (65fe8d0)

v7.2.1

5 years ago

7.2.1 (2018-11-29)

Bug Fixes

v7.2.0

5 years ago

7.2.0 (2018-11-18)

Features

v7.1.0

5 years ago

7.1.0 (2018-11-07)

Features

  • add trackSiteSearch event to Piwik provider (#312) (a17238a)

v7.0.2

5 years ago

7.0.2 (2018-10-19)

Bug Fixes

  • use angular 7, use correct versions in peerDependencies (#305) (0d3eba7)

v7.0.1

5 years ago

7.0.1 (2018-10-16)

Bug Fixes

  • gst: add provided in root to gst closes #304 (aaa054f)

v7.0.0

5 years ago

7.0.0 (2018-10-09)

BREAKING CHANGES

These are important! Update your code to call startTracking() or suffer the sadness of not collecting your analytics.

  • Angular 6 required
  • Providers will no longer start tracking events by default! a call to startTracking() will be necessary to maintain functionality - for more details/example see step 2 [in the updated install instructions in the readme] or the before/after below (https://github.com/angulartics/angulartics2#include-it-in-your-application)
  • No longer requires passing of providers to Angulartics2Module.forRoot

startTracking example

BEFORE
constructor(angulartics2GoogleAnalytics: Angulartics2GoogleAnalytics) {
	// nothing
}
AFTER
constructor(angulartics2GoogleAnalytics: Angulartics2GoogleAnalytics) {
	// start tracking!
	angulartics2GoogleAnalytics.startTracking();
}

Bug Fixes

Features

  • core: add "start tracking" method and require on all providers (#283) (28f987f), closes #282
  • use providedIn root to automatically provide as singleton (#284) (a548540)
  • providers: move gst to the startTracking() style (09276a9)
  • v7 Merge pull request #292 from angulartics/next (6e5c886), closes #282

shoutout to @rossedfort