This commit is contained in:
Kamil Szostak 2016-05-09 12:34:31 -07:00
Родитель 2de98fd1f4
Коммит 1b9fad7444
4 изменённых файлов: 5 добавлений и 12 удалений

Просмотреть файл

@ -90,12 +90,12 @@
-->
<SemanticVersionMajor>0</SemanticVersionMajor>
<SemanticVersionMinor>22</SemanticVersionMinor>
<SemanticVersionPatch>11</SemanticVersionPatch>
<SemanticVersionPatch>12</SemanticVersionPatch>
<!--
Date when Semantic Version was changed.
Update for every public release.
-->
<SemanticVersionDate>2016-05-05</SemanticVersionDate>
<SemanticVersionDate>2016-05-09</SemanticVersionDate>
<!--
Pre-release version is used to distinguish internally built NuGet packages.
Pre-release version = Minutes since semantic version was set, divided by 5 (to make it fit in a UInt16).

Просмотреть файл

@ -13,7 +13,7 @@ module Microsoft.ApplicationInsights {
"use strict";
export var Version = "0.22.11";
export var Version = "0.22.12";
export interface IConfig {
instrumentationKey: string;
@ -103,13 +103,6 @@ module Microsoft.ApplicationInsights {
this.context = new ApplicationInsights.TelemetryContext(configGetters);
// Enabling data loss analyzer on 10% of ikeys
DataLossAnalyzer.appInsights = this;
DataLossAnalyzer.enabled = new SplitTest().isEnabled(this.config.instrumentationKey, 10);
// report lost items from the previous page
DataLossAnalyzer.reportLostItems();
this._pageViewManager = new Microsoft.ApplicationInsights.Telemetry.PageViewManager(this, this.config.overridePageViewDuration);
// initialize event timing

Просмотреть файл

@ -1,7 +1,7 @@
{
"name": "applicationinsights-js",
"main": "dist/ai.0.js",
"version": "0.22.11,
"version": "0.22.12",
"homepage": "https://github.com/Microsoft/ApplicationInsights-JS",
"authors": [
"Max Shekhovtsov <mashekho@microsoft.com>"

Просмотреть файл

@ -1,6 +1,6 @@
{
"name": "applicationinsights-js",
"version": "0.22.11",
"version": "0.22.12",
"description": "[Application Insights](https://azure.microsoft.com/services/application-insights/) tells you about your app\u0027s performance and usage. By adding a few lines of code to your web pages, you get data about how many users you have, which pages are most popular, how fast pages load, whether they throw exceptions, and more. And you can add code to track more detailed user activity.",
"main": "dist/ai.0.js",
"scripts": {