Skip to content

Commit

Permalink
[Release] Increase version to 3.0.0 (#70)
Browse files Browse the repository at this point in the history
- Initial Angular 14 support
  • Loading branch information
MSNev authored Aug 2, 2022
1 parent e9bc20e commit 5685e57
Show file tree
Hide file tree
Showing 5 changed files with 37 additions and 27 deletions.
1 change: 1 addition & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -114,6 +114,7 @@ extensionConfig: {

| Version | Application Insights | Angular | Branch
|---------|-----------------------|----------------------|-----------
| 3.0.0 | ^2.8.5 | peer: ^14.0.3 | [main](https://github.com/microsoft/applicationinsights-angularplugin-js)
| 2.9.2 | ^2.8.5 | peer: ^13.0.3 | [main](https://github.com/microsoft/applicationinsights-angularplugin-js) (Angular v13 support archived to [Angular13](https://github.com/microsoft/applicationinsights-angularplugin-js/tree/Angular13) branch)
| 2.9.1 | ~2.8.2 | peer: ^13.0.3 | [main](https://github.com/microsoft/applicationinsights-angularplugin-js)
| 2.9.0 | ~2.8.1 | peer: ^13.0.3 | [main](https://github.com/microsoft/applicationinsights-angularplugin-js)
Expand Down
10 changes: 10 additions & 0 deletions RELEASES.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,15 @@
# Releases

## 3.0.0 (Aug 2nd, 2022)

### Changelog

- #54 Create a compatibility table for the versions of the AngularPlugin -> ApplicationInsights versions
- #55 The root package.json has the ApplicationInsights components listed as devDependencies they should be dependencies
- #62 Missing Dependency either in package.json or documentation
- #68 [Testing] Re-enable test validation during PR validation on github
- #63 Angular 14 support

## 2.9.2 (July 27th, 2022)

This will likely be the last release from the `main` branch targeting Angular 13, once `main` targets a newer version a branch will be created to support any necessary security patches.
Expand Down
43 changes: 20 additions & 23 deletions package-lock.json

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

8 changes: 5 additions & 3 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@microsoft/applicationinsights-angularplugin-js",
"version": "2.9.2",
"version": "3.0.0",
"description": "Microsoft Application Insights Angular plugin",
"main": "dist/bundles/microsoft-applicationinsights-angularplugin-js.umd.js",
"module": "dist/fesm2015/microsoft-applicationinsights-angularplugin-js.js",
Expand All @@ -13,6 +13,7 @@
"scripts": {
"ng": "ng",
"start": "ng serve",
"rebuild": "npm run build && npm run test",
"build": "ng build --configuration production",
"test": "ng test --watch=false --browsers=ChromeHeadless --code-coverage=true",
"watch": "ng test",
Expand Down Expand Up @@ -69,7 +70,8 @@
"tslib": "^2.0.0"
},
"peerDependencies": {
"@angular/common": ">= 13.0.3",
"@angular/core": ">= 13.0.3"
"@microsoft/applicationinsights-analytics-js": "^2.8.5",
"@angular/common": ">= 14.0.3",
"@angular/core": ">= 14.0.3"
}
}
2 changes: 1 addition & 1 deletion projects/applicationinsights-angularplugin-js/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@microsoft/applicationinsights-angularplugin-js",
"version": "2.9.2",
"version": "3.0.0",
"dependencies": {
"@microsoft/applicationinsights-common": "^2.8.5",
"@microsoft/applicationinsights-core-js": "^2.8.5",
Expand Down

0 comments on commit 5685e57

Please sign in to comment.