Skip to content

Commit

Permalink
Merge pull request #2 from microsoft/MSNev/PrepareRelease
Browse files Browse the repository at this point in the history
[Release] Increase version to 3.3.6
  • Loading branch information
MSNev authored Jul 27, 2022
2 parents 0d220be + 94f7b35 commit 6b8c144
Show file tree
Hide file tree
Showing 7 changed files with 147 additions and 195 deletions.
1 change: 1 addition & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -102,6 +102,7 @@ Please note that it can take up to 10 minutes for new custom metric to appear in

| Version | Application Insights | React | Branch
|---------|-----------------------|-----------|-----------
| 3.3.6 | ^2.8.5 | ^17.0.1 | [main](https://github.com/microsoft/applicationinsights-react-js) <-- First release from this repo
| 3.3.5 | 2.8.5 | ^17.0.1 | [main](https://github.com/microsoft/applicationinsights-react-js) and [AI master](https://github.com/microsoft/ApplicationInsights-JS/tree/master/extensions/applicationinsights-react-js)
| 3.3.4 | 2.8.4 | ^17.0.1 | [AI master](https://github.com/microsoft/ApplicationInsights-JS/tree/master/extensions/applicationinsights-react-js)
| 3.3.3 | 2.8.3 | ^17.0.1 | [AI master](https://github.com/microsoft/ApplicationInsights-JS/tree/master/extensions/applicationinsights-react-js)
Expand Down
5 changes: 5 additions & 0 deletions RELEASES.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,10 @@
# Releases

## 3.3.6 (July 27th, 2022)

- First release from [new repo](https://github.com/microsoft/applicationinsights-react-js)
- Updates React Plugin to v3.3.6 (with UNPINNED ApplicationInsights ^2.8.5 as dependency) -- using React 17

## 3.3.5 (Jul 6th, 2022)

- [Released from ApplicationInsights Repo](https://github.com/Microsoft/ApplicationInsights-JS)
Expand Down
8 changes: 4 additions & 4 deletions applicationinsights-react-js/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@
},
"devDependencies": {
"@microsoft/ai-test-framework": "0.0.1",
"@microsoft/applicationinsights-rollup-es3": "1.1.3",
"@microsoft/applicationinsights-rollup-es3": "^1.1.3",
"@microsoft/api-extractor": "^7.18.1",
"@testing-library/dom": "^7.29.6",
"@testing-library/jest-dom": "^5.11.9",
Expand Down Expand Up @@ -65,9 +65,9 @@
"history": "^5.1.0"
},
"dependencies": {
"@microsoft/applicationinsights-shims": "2.0.1",
"@microsoft/applicationinsights-core-js": "2.8.5",
"@microsoft/applicationinsights-common": "2.8.5",
"@microsoft/applicationinsights-shims": "^2.0.1",
"@microsoft/applicationinsights-core-js": "^2.8.5",
"@microsoft/applicationinsights-common": "^2.8.5",
"@microsoft/dynamicproto-js": "^1.1.6"
},
"peerDependencies": {
Expand Down
8 changes: 3 additions & 5 deletions applicationinsights-react-js/rollup.config.js
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ import replace from "@rollup/plugin-replace";
import cleanup from "rollup-plugin-cleanup";
import peerDepsExternal from 'rollup-plugin-peer-deps-external';
import { uglify } from "../tools/rollup-plugin-uglify3-js/dist/esm/rollup-plugin-uglify3-js";
import { es3Poly, importCheck } from "@microsoft/applicationinsights-rollup-es3";
import { importCheck } from "@microsoft/applicationinsights-rollup-es3";
import dynamicRemove from "@microsoft/dynamicproto-js/tools/rollup/node/removedynamic";
import { updateDistEsmFiles } from "../tools/updateDistEsm/updateDistEsm";

Expand Down Expand Up @@ -59,8 +59,7 @@ const browserRollupConfigFactory = isProduction => {
dedupe: [ "react", "react-dom" ]
}),
commonjs(),
doCleanup(),
es3Poly()
doCleanup()
]
};

Expand Down Expand Up @@ -115,8 +114,7 @@ const nodeUmdRollupConfigFactory = (isProduction) => {
dedupe: [ "react", "react-dom" ]
}),
commonjs(),
doCleanup(),
es3Poly()
doCleanup()
]
};

Expand Down
Loading

0 comments on commit 6b8c144

Please sign in to comment.