Skip to content

Releases: adopted-ember-addons/ember-metrics

[BUGFIX] Mutating things is painful

23 Sep 20:46
Compare
Choose a tag to compare

This release fixes an issue where repeated calls to the metrics service would mutate context, leading to unexpected behavior.

Thanks to @opsb for reporting and fixing this!

Backwards compatibility

21 Sep 20:28
Compare
Choose a tag to compare

With this release, ember-metrics now works with ember versions of 1.11.x and up!

Context is everything

17 Sep 14:51
Compare
Choose a tag to compare

This release adds the ability to include context to each service call. For example, you might want to include certain information about the user that is triggering the event or page view. You can now specify a context object on the Metrics service itself, that will be included across all calls.

For example:

const currentUserName = Ember.get(this, 'currentUser.fullName'); // 'Derek Zoolander'
Ember.set(this, 'metrics.context.userName', currentUserName);
Ember.get(this, 'metrics').trackPage({ page: 'page/1' }); // { userName: 'Derek Zoolander', page: 'page/1' }

Thanks to @opsb for implementing this feature.

[BUGFIX] Configuration

13 Sep 22:49
Compare
Choose a tag to compare

This release fixes a bug where your app would immediately break due to config:metrics being undefined.

[BUGFIX] Prioritize local adapters

31 Aug 16:46
Compare
Choose a tag to compare

This bugfix release addresses an issue where a local adapter would not be prioritized over an available adapter in the addon, making it difficult to override existing adapters.

Bugfix

21 Aug 16:57
Compare
Choose a tag to compare

This release adds the Google Tag Manager adapter, and fixes a bug with blueprints generating with an incorrect import statement.

Changelog

#12 Added google tag manager adapter and test @bl4ckm0r3
#18 Fix blueprint typo – @davidgovea

More bugfixes

23 Jul 23:01
Compare
Choose a tag to compare

This bugfix releases fixes an issue where the service would not invoke methods when no arguments were passed into it.

Bugfix

13 Jul 01:16
Compare
Choose a tag to compare

This release fixes an issue with track not working as intended, and removes it comlpetely. Use trackEvent instead.

First release

12 Jul 23:21
Compare
Choose a tag to compare

The first release ships with the Google Analytics and Mixpanel adapters.

Alpha release

12 Jul 05:10
Compare
Choose a tag to compare
Alpha release Pre-release
Pre-release

The first alpha release of this addon ships with an adapter for Google Analytics.