Skip to content

Releases: miguelzakharia/aurelia-application-insights

v1.2.0

23 May 22:31
Compare
Choose a tag to compare

This release adds a new way to pass information to Application Insights thanks to @RichiCoder1. You now have the option to use Aurelia attributes instead of the usual data-appinsights-* method. For example,

View Model

export class MyPage {
    public interestingClickProperties = {
        pageId: 2,
        someText: "Hello"
    };
}

View

<template>
  <div appinsights-props.one-time="interestingClickProperties">
    <!-- Some content -->
  </div>
</template>

or

<template>
  <div appinsights-props.one-time="{ category: myCategory }">
    <!-- Some content -->
  </div>
</template>

v1.1.0

26 Apr 02:55
Compare
Choose a tag to compare

Add log forwarding.

v1.0.0

30 Mar 14:27
Compare
Choose a tag to compare
Add JSPM install info