Skip to content

Releases: angulartics/angulartics2

v7.0.2

19 Oct 06:06
0d3eba7
Compare
Choose a tag to compare

7.0.2 (2018-10-19)

Bug Fixes

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

v7.0.1

16 Oct 21:23
f4ac293
Compare
Choose a tag to compare

7.0.1 (2018-10-16)

Bug Fixes

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

v7.0.0

09 Oct 22:03
6e5c886
Compare
Choose a tag to compare

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

v6.3.1

09 Oct 18:38
Compare
Choose a tag to compare

6.3.1 (2018-10-09)

Bug Fixes

  • gst: Ensure GST is loaded in before running ga.getAll (#300) (e517f0f), closes #298

v6.3.0

29 Aug 15:41
Compare
Choose a tag to compare

6.3.0 (2018-08-29)

Features

v6.2.0

02 Jul 16:48
Compare
Choose a tag to compare

6.2.0 (2018-07-02)

Features

v6.1.1

24 Jun 18:43
5b35d93
Compare
Choose a tag to compare

6.1.1 (2018-06-24)

Bug Fixes

  • upgrade ng-packagr, other dependencies (5b35d93)

v6.1.0

17 May 23:32
Compare
Choose a tag to compare

6.1.0 (2018-05-17)

Features

  • Add 'IBM Digital Analytics' Provider (#269) (01eadb1)

v6.0.0

04 May 22:13
a472538
Compare
Choose a tag to compare

6.0.0 (2018-05-04)

Features

  • remove deprecated functions (cdfd387)

  • upgrade to rxjs6 and ng6 (8118169)

  • Merge pull request #262 from angulartics/rxjs6-ng6 (a472538), closes #262

BREAKING CHANGES

  • requires rxjs 6
  • removes deprecated functions like virtualPageviews and developerMode
    • use settings passed in Angulartics2Module.forRoot or import angulartics2 and set angulartics2.settings.developerMode = true

v5.4.0

03 May 22:39
22fc83e
Compare
Choose a tag to compare

5.4.0 (2018-05-03)

Bug Fixes

  • rename angulartics2.ts to angulartics2-core.ts to fix ng-packagr (242e49e)

Features

  • update build system to use ng-packgr, rename files (c06c835)
    • this will probably break anyone using hardcoded systemjs. sorry.