Skip to content

Commit

Permalink
Merge pull request #81 from microsoft/main
Browse files Browse the repository at this point in the history
Merge main to release/v2
  • Loading branch information
zhiyuanliang-ms authored Jan 9, 2025
2 parents 7d3add3 + bcd18b6 commit bfe98d6
Show file tree
Hide file tree
Showing 17 changed files with 217 additions and 219 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ Feature Management Application Insights Plugin for Browser provides a solution f
``` javascript
import { ApplicationInsights } from "@microsoft/applicationinsights-web"
import { FeatureManager, ConfigurationObjectFeatureFlagProvider } from "@microsoft/feature-management";
import { trackEvent, createTelemetryPublisher } from "@microsoft/feature-management-applicationinsights-browser";
import { createTelemetryPublisher, trackEvent } from "@microsoft/feature-management-applicationinsights-browser";

const appInsights = new ApplicationInsights({ config: {
connectionString: CONNECTION_STRING
Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@microsoft/feature-management-applicationinsights-browser",
"version": "2.0.0-preview.3",
"version": "2.0.0",
"description": "Feature Management Application Insights Plugin for Browser provides a solution for sending feature flag evaluation events produced by the Feature Management library.",
"main": "./dist/umd/index.js",
"module": "./dist/esm/index.js",
Expand All @@ -24,6 +24,9 @@
"url": "git+https://github.com/microsoft/FeatureManagement-JavaScript.git"
},
"license": "MIT",
"publishConfig": {
"tag": "latest"
},
"bugs": {
"url": "https://github.com/microsoft/FeatureManagement-JavaScript/issues"
},
Expand All @@ -42,7 +45,7 @@
},
"dependencies": {
"@microsoft/applicationinsights-web": "^3.3.2",
"@microsoft/feature-management": "2.0.0-preview.3"
"@microsoft/feature-management": "2.0.0"
}
}

Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// Copyright (c) Microsoft Corporation.
// Licensed under the MIT license.

export const VERSION = "2.0.0-preview.3";
export const VERSION = "2.0.0";
2 changes: 1 addition & 1 deletion sdk/feature-management-applicationinsights-node/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ Feature Management Application Insights Plugin for Browser provides a solution f
``` javascript
import appInsights from "applicationinsights";
import { FeatureManager, ConfigurationObjectFeatureFlagProvider } from "@microsoft/feature-management";
import { trackEvent, publishTelemetry } from "@microsoft/feature-management-applicationinsights-node";
import { createTelemetryPublisher, trackEvent } from "@microsoft/feature-management-applicationinsights-node";

appInsights.setup(CONNECTION_STRING)
.start();
Expand Down
7 changes: 5 additions & 2 deletions sdk/feature-management-applicationinsights-node/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@microsoft/feature-management-applicationinsights-node",
"version": "2.0.0-preview.3",
"version": "2.0.0",
"description": "Feature Management Application Insights Plugin for Node.js provides a solution for sending feature flag evaluation events produced by the Feature Management library.",
"main": "./dist/commonjs/index.js",
"module": "./dist/esm/index.js",
Expand All @@ -24,6 +24,9 @@
"url": "git+https://github.com/microsoft/FeatureManagement-JavaScript.git"
},
"license": "MIT",
"publishConfig": {
"tag": "latest"
},
"bugs": {
"url": "https://github.com/microsoft/FeatureManagement-JavaScript/issues"
},
Expand All @@ -42,7 +45,7 @@
},
"dependencies": {
"applicationinsights": "^2.9.6",
"@microsoft/feature-management": "2.0.0-preview.3"
"@microsoft/feature-management": "2.0.0"
}
}

Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// Copyright (c) Microsoft Corporation.
// Licensed under the MIT license.

export const VERSION = "2.0.0-preview.3";
export const VERSION = "2.0.0";
7 changes: 7 additions & 0 deletions sdk/feature-management/.eslintrc
Original file line number Diff line number Diff line change
Expand Up @@ -33,6 +33,13 @@
"@typescript-eslint"
],
"rules": {
"keyword-spacing": [
"error",
{
"before": true,
"after": true
}
],
"quotes": [
"error",
"double",
Expand Down
Loading

0 comments on commit bfe98d6

Please sign in to comment.