Skip to content

Commit bfe98d6

Browse files
Merge pull request #81 from microsoft/main
Merge main to release/v2
2 parents 7d3add3 + bcd18b6 commit bfe98d6

File tree

17 files changed

+217
-219
lines changed

17 files changed

+217
-219
lines changed

sdk/feature-management-applicationinsights-browser/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ Feature Management Application Insights Plugin for Browser provides a solution f
99
``` javascript
1010
import { ApplicationInsights } from "@microsoft/applicationinsights-web"
1111
import { FeatureManager, ConfigurationObjectFeatureFlagProvider } from "@microsoft/feature-management";
12-
import { trackEvent, createTelemetryPublisher } from "@microsoft/feature-management-applicationinsights-browser";
12+
import { createTelemetryPublisher, trackEvent } from "@microsoft/feature-management-applicationinsights-browser";
1313

1414
const appInsights = new ApplicationInsights({ config: {
1515
connectionString: CONNECTION_STRING

sdk/feature-management-applicationinsights-browser/package.json

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@microsoft/feature-management-applicationinsights-browser",
3-
"version": "2.0.0-preview.3",
3+
"version": "2.0.0",
44
"description": "Feature Management Application Insights Plugin for Browser provides a solution for sending feature flag evaluation events produced by the Feature Management library.",
55
"main": "./dist/umd/index.js",
66
"module": "./dist/esm/index.js",
@@ -24,6 +24,9 @@
2424
"url": "git+https://github.com/microsoft/FeatureManagement-JavaScript.git"
2525
},
2626
"license": "MIT",
27+
"publishConfig": {
28+
"tag": "latest"
29+
},
2730
"bugs": {
2831
"url": "https://github.com/microsoft/FeatureManagement-JavaScript/issues"
2932
},
@@ -42,7 +45,7 @@
4245
},
4346
"dependencies": {
4447
"@microsoft/applicationinsights-web": "^3.3.2",
45-
"@microsoft/feature-management": "2.0.0-preview.3"
48+
"@microsoft/feature-management": "2.0.0"
4649
}
4750
}
4851

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
// Copyright (c) Microsoft Corporation.
22
// Licensed under the MIT license.
33

4-
export const VERSION = "2.0.0-preview.3";
4+
export const VERSION = "2.0.0";

sdk/feature-management-applicationinsights-node/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ Feature Management Application Insights Plugin for Browser provides a solution f
1313
``` javascript
1414
import appInsights from "applicationinsights";
1515
import { FeatureManager, ConfigurationObjectFeatureFlagProvider } from "@microsoft/feature-management";
16-
import { trackEvent, publishTelemetry } from "@microsoft/feature-management-applicationinsights-node";
16+
import { createTelemetryPublisher, trackEvent } from "@microsoft/feature-management-applicationinsights-node";
1717

1818
appInsights.setup(CONNECTION_STRING)
1919
.start();

sdk/feature-management-applicationinsights-node/package.json

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@microsoft/feature-management-applicationinsights-node",
3-
"version": "2.0.0-preview.3",
3+
"version": "2.0.0",
44
"description": "Feature Management Application Insights Plugin for Node.js provides a solution for sending feature flag evaluation events produced by the Feature Management library.",
55
"main": "./dist/commonjs/index.js",
66
"module": "./dist/esm/index.js",
@@ -24,6 +24,9 @@
2424
"url": "git+https://github.com/microsoft/FeatureManagement-JavaScript.git"
2525
},
2626
"license": "MIT",
27+
"publishConfig": {
28+
"tag": "latest"
29+
},
2730
"bugs": {
2831
"url": "https://github.com/microsoft/FeatureManagement-JavaScript/issues"
2932
},
@@ -42,7 +45,7 @@
4245
},
4346
"dependencies": {
4447
"applicationinsights": "^2.9.6",
45-
"@microsoft/feature-management": "2.0.0-preview.3"
48+
"@microsoft/feature-management": "2.0.0"
4649
}
4750
}
4851

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
// Copyright (c) Microsoft Corporation.
22
// Licensed under the MIT license.
33

4-
export const VERSION = "2.0.0-preview.3";
4+
export const VERSION = "2.0.0";

sdk/feature-management/.eslintrc

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -33,6 +33,13 @@
3333
"@typescript-eslint"
3434
],
3535
"rules": {
36+
"keyword-spacing": [
37+
"error",
38+
{
39+
"before": true,
40+
"after": true
41+
}
42+
],
3643
"quotes": [
3744
"error",
3845
"double",

0 commit comments

Comments
 (0)