Skip to content

Commit

Permalink
[Release] Increase version to 2.8.9 (#1936)
Browse files Browse the repository at this point in the history
  • Loading branch information
MSNev committed Oct 25, 2022
1 parent c2eb87f commit 75409ec
Show file tree
Hide file tree
Showing 23 changed files with 110 additions and 91 deletions.
2 changes: 1 addition & 1 deletion AISKU/Tests/Perf/src/AISKUPerf.ts
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ export class AppInsightsInitPerfTestClass {
* should update version after new release
* version with doperf(): after 2.5.6
* */
var defaultVer = "2.8.8";
var defaultVer = "2.8.9";
this.version = ver? ver:this._getQueryParameterVersion(defaultVer);
this.perfEventsBuffer = [];
this.perfEventWaitBuffer = [];
Expand Down
2 changes: 1 addition & 1 deletion AISKU/Tests/Unit/src/AISKUSize.Tests.ts
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ export class AISKUSizeCheck extends AITestClass {
private readonly MAX_BUNDLE_DEFLATE_SIZE = 47;
private readonly rawFilePath = "../dist/applicationinsights-web.min.js";
// Automatically updated by version scripts
private readonly currentVer = "2.8.8";
private readonly currentVer = "2.8.9";
private readonly prodFilePath = `../browser/ai.${this.currentVer[0]}.min.js`;

public testInitialize() {
Expand Down
2 changes: 1 addition & 1 deletion AISKU/Tests/Unit/src/CdnPackaging.tests.ts
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ const enum CdnFormat {

export class CdnPackagingChecks extends AITestClass {
// Automatically updated by version scripts
private readonly currentVer = "2.8.8";
private readonly currentVer = "2.8.9";

public testInitialize() {
}
Expand Down
14 changes: 7 additions & 7 deletions AISKU/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@microsoft/applicationinsights-web",
"version": "2.8.8",
"version": "2.8.9",
"description": "Microsoft Application Insights JavaScript SDK - Web",
"homepage": "https://github.com/microsoft/ApplicationInsights-JS#readme",
"author": "Microsoft Application Insights Team",
Expand Down Expand Up @@ -68,12 +68,12 @@
"dependencies": {
"@microsoft/dynamicproto-js": "^1.1.7",
"@microsoft/applicationinsights-shims": "2.0.2",
"@microsoft/applicationinsights-analytics-js": "2.8.8",
"@microsoft/applicationinsights-channel-js": "2.8.8",
"@microsoft/applicationinsights-common": "2.8.8",
"@microsoft/applicationinsights-core-js": "2.8.8",
"@microsoft/applicationinsights-dependencies-js": "2.8.8",
"@microsoft/applicationinsights-properties-js": "2.8.8"
"@microsoft/applicationinsights-analytics-js": "2.8.9",
"@microsoft/applicationinsights-channel-js": "2.8.9",
"@microsoft/applicationinsights-common": "2.8.9",
"@microsoft/applicationinsights-core-js": "2.8.9",
"@microsoft/applicationinsights-dependencies-js": "2.8.9",
"@microsoft/applicationinsights-properties-js": "2.8.9"
},
"license": "MIT"
}
8 changes: 4 additions & 4 deletions AISKULight/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@microsoft/applicationinsights-web-basic",
"version": "2.8.8",
"version": "2.8.9",
"description": "Microsoft Application Insights Javascript SDK core and channel",
"homepage": "https://github.com/microsoft/ApplicationInsights-JS#readme",
"author": "Microsoft Application Insights Team",
Expand Down Expand Up @@ -53,9 +53,9 @@
"dependencies": {
"@microsoft/dynamicproto-js": "^1.1.7",
"@microsoft/applicationinsights-shims": "2.0.2",
"@microsoft/applicationinsights-common": "2.8.8",
"@microsoft/applicationinsights-channel-js": "2.8.8",
"@microsoft/applicationinsights-core-js": "2.8.8"
"@microsoft/applicationinsights-common": "2.8.9",
"@microsoft/applicationinsights-channel-js": "2.8.9",
"@microsoft/applicationinsights-core-js": "2.8.9"
},
"license": "MIT"
}
15 changes: 15 additions & 0 deletions RELEASES.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,21 @@

> Note: ES3/IE8 compatibility will be removed in the future v3.x.x releases (scheduled for mid-late 2022), so if you need to retain ES3 compatibility you will need to remain on the 2.x.x versions of the SDK or your runtime will need install polyfill's to your ES3 environment before loading / initializing the SDK.
## 2.8.9 (Oct 25th, 2022)

- Updates Chrome Debug Extension to 0.3.9

### Changelog

- #1920 Update to DynamicProto v1.1.7
- #1935 Update to @microsoft/applicationinsights-shims: 2.0.2
- #1911 Uncaught ReferenceError: global is not defined
- #1912 Update PerfTests to use the latest version
- #1916 [Bug] Fix randomly failing tests
- #1915 Fix CodeQL Identified potential Issues
- #1906 [Task]14569737: add throttle cdn config
- #1930 Remove the source-map-loader from the package.json as we don't use it.

## Shims 2.0.2 (Oct 24th, 2022)

## Changelog
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -724,7 +724,7 @@ export class SenderTests extends AITestClass {
QUnit.assert.ok(baseData.ver);
QUnit.assert.equal(2, baseData.ver);

QUnit.assert.equal("javascript:2.8.8", appInsightsEnvelope.tags["ai.internal.sdkVersion"]);
QUnit.assert.equal("javascript:2.8.9", appInsightsEnvelope.tags["ai.internal.sdkVersion"]);
}
})

Expand Down
6 changes: 3 additions & 3 deletions channels/applicationinsights-channel-js/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@microsoft/applicationinsights-channel-js",
"version": "2.8.8",
"version": "2.8.9",
"description": "Microsoft Application Insights JavaScript SDK Channel",
"homepage": "https://github.com/microsoft/ApplicationInsights-JS#readme",
"author": "Microsoft Application Insights Team",
Expand Down Expand Up @@ -50,8 +50,8 @@
"dependencies": {
"@microsoft/dynamicproto-js": "^1.1.7",
"@microsoft/applicationinsights-shims": "2.0.2",
"@microsoft/applicationinsights-core-js": "2.8.8",
"@microsoft/applicationinsights-common": "2.8.8"
"@microsoft/applicationinsights-core-js": "2.8.9",
"@microsoft/applicationinsights-common": "2.8.9"
},
"license": "MIT"
}
56 changes: 28 additions & 28 deletions common/config/rush/npm-shrinkwrap.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

10 changes: 5 additions & 5 deletions extensions/applicationinsights-analytics-js/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@microsoft/applicationinsights-analytics-js",
"version": "2.8.8",
"version": "2.8.9",
"description": "Microsoft Application Insights JavaScript SDK - Web Analytics",
"homepage": "https://github.com/microsoft/ApplicationInsights-JS#readme",
"author": "Microsoft Application Insights Team",
Expand Down Expand Up @@ -29,8 +29,8 @@
"@microsoft/ai-test-framework": "0.0.1",
"@microsoft/applicationinsights-rollup-plugin-uglify3-js": "1.0.0",
"@microsoft/applicationinsights-rollup-es3": "1.1.3",
"@microsoft/applicationinsights-properties-js": "2.8.8",
"@microsoft/applicationinsights-channel-js": "2.8.8",
"@microsoft/applicationinsights-properties-js": "2.8.9",
"@microsoft/applicationinsights-channel-js": "2.8.9",
"@microsoft/api-extractor": "^7.18.1",
"typescript": "^4.3.4",
"tslib": "^2.0.0",
Expand All @@ -56,8 +56,8 @@
"dependencies": {
"@microsoft/dynamicproto-js": "^1.1.7",
"@microsoft/applicationinsights-shims": "2.0.2",
"@microsoft/applicationinsights-core-js": "2.8.8",
"@microsoft/applicationinsights-common": "2.8.8"
"@microsoft/applicationinsights-core-js": "2.8.9",
"@microsoft/applicationinsights-common": "2.8.9"
},
"license": "MIT"
}
Loading

0 comments on commit 75409ec

Please sign in to comment.