Releases: microsoft/applicationinsights-angularplugin-js
Releases · microsoft/applicationinsights-angularplugin-js
3.0.1
Changelog
- #76 Types incompatibility with @microsoft/applicationinsights-web
- #75 [Task]14057227: Add Angular Plugin Sample
- #78 Add license to package.json
- #94 update to ApplicationInsights v2.8.10
- #88 Bump json5 from 2.2.1 to 2.2.3 in /sample/applicationinsights-angularplugin-sample
- #91 Bump ua-parser-js from 0.7.31 to 0.7.33 in /sample/applicationinsights-angularplugin-sample
- #93 Bump http-cache-semantics from 4.1.0 to 4.1.1 in /sample/applicationinsights-angularplugin-sample
- #89 Add code owners
- #87 Bump json5 from 1.0.1 to 1.0.2
- #85 Bump engine.io from 6.2.0 to 6.2.1 in /sample/applicationinsights-angularplugin-sample
- #84 Bump engine.io from 6.2.0 to 6.2.1
- #86 Bump decode-uri-component from 0.2.0 to 0.2.2
- #83 Bump loader-utils from 2.0.2 to 2.0.4 in /sample/applicationinsights-angularplugin-sample
- #82 Bump loader-utils from 2.0.2 to 2.0.4
What's Changed
- Add license to package.json by @ycintre-se in #78
- [Task]14057227: Add Angular Plugin Sample by @Karlie-777 in #75
- Bump loader-utils from 2.0.2 to 2.0.4 by @dependabot in #82
- Bump loader-utils from 2.0.2 to 2.0.4 in /sample/applicationinsights-angularplugin-sample by @dependabot in #83
- Add license to the package.json here as well by @MSNev in #79
- Bump decode-uri-component from 0.2.0 to 0.2.2 by @dependabot in #86
- Bump engine.io from 6.2.0 to 6.2.1 by @dependabot in #84
- Bump engine.io from 6.2.0 to 6.2.1 in /sample/applicationinsights-angularplugin-sample by @dependabot in #85
- Bump json5 from 1.0.1 to 1.0.2 by @dependabot in #87
- Add code owners by @Karlie-777 in #89
- Types incompatibility with @microsoft/applicationinsights-web #76 by @MSNev in #92
- Bump http-cache-semantics from 4.1.0 to 4.1.1 in /sample/applicationinsights-angularplugin-sample by @dependabot in #93
- Bump ua-parser-js from 0.7.31 to 0.7.33 in /sample/applicationinsights-angularplugin-sample by @dependabot in #91
- Bump json5 from 2.2.1 to 2.2.3 in /sample/applicationinsights-angularplugin-sample by @dependabot in #88
- update to ApplicationInsights v2.8.10 by @MSNev in #94
- [Release] Increase version to 3.0.1 by @MSNev in #95
New Contributors
- @ycintre-se made their first contribution in #78
Full Changelog: 3.0.0...3.0.1
3.0.0
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
What's Changed
- Update angular 14 by @timdeschryver in #64
- Missing Dependency either in package.json or documentation #62 by @MSNev in #69
- [Testing] Re-enable test validation during PR validation on github #68 by @MSNev in #67
- [Release] Increase version to 3.0.0 by @MSNev in #70
New Contributors
- @timdeschryver made their first contribution in #64
Full Changelog: 2.9.2...3.0.0
2.9.2
Changelog
- Update to ApplicationInsights to ^2.8.5 from ~2.8.2
- #65 Update and add legal compliance notices and license terms
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.
What's Changed
- Update and add legal compliance notices and license terms by @MSNev in #65
- [Release] Increase version to 2.9.2 by @MSNev in #66
Full Changelog: 2.9.1...2.9.2
2.9.1
2.9.1 (May 2nd, 2022)
Changelog
- #59 [IE8] Support for IE8 and ES3 support was broken a while ago
- Updates to Application Insights v2.8.2
- #1823 [BUG] IE8 Support was broken by several components
- #47 [IE8] The _checkPrototype always fails on IE in IE8 mode
What's Changed
Full Changelog: 2.9.0...2.9.1
2.7.2
2.7.2 (May 2nd, 2022)
Changelog
- #59 [IE8] Support for IE8 and ES3 support was broken a while ago
- Update and change dependency to Application Insights ~2.7.5
- Fixes issues related to IE8 and ES3 Support
- #1823 [BUG] IE8 Support was broken by several components
- #47 [IE8] The _checkPrototype always fails on IE in IE8 mode
2.9.0
Potential Breaking Changes
fetch
Ajax tracking was also been change to be on by default from this version moving forward, if you are running in an environment withoutfetch
support and you are using an incompatible polyfill (that doesn't identify itself as a polyfill) or the SDK you start seeing recursive or duplicate (fetch
andXHR
requests) being reported you WILL need to adddisableFetchTracking
with a value oftrue
to your configuration to disable this functionality.
Significant changes
This release adds support from the base SDK to
- TelemetryInitializers have been moved to
BaseCore
so they are now available as part of all Sku's and not just those using theanalytics
plugin (@microsoft/applicationinsights-analytics-js) using theappInsights.addTelemetryInitializer(...)
- Web Events (addEventHandler) now support "event namespaces" (similar to jQuery) to enable the removing of events by just specifying the namespace and new specific
eventOn(...)
andeventOff(...)
API's. - Fully unload, removing all internal event handlers (may be re-initialized) via the
appInsights.unload(...)
function. - Dynamically add a plugin to an already initialized SDK (optionally replacing an existing) via new
appInsights.addPlugin(...)
function - New helper to get any plugin from an initialized SDK via
appInsights.getPlugin("...identifier...")
- Dynamically remove a plugin via the
appInsights.getPlugin("...identifier..").remove()
- Enable / Disable any plugin (even if the plugin doesn't support disabling itself) via
appInsights.getPlugin("...identifier...").setEnabled(true/false)
Changelog
- Update to Application Insights v2.8.1 also includes the Application Insights v2.8.0 changes
- #1807 [BUG] Angular project doesn't build after install latest version v.2.8.0
- #1810 v2.8.0 has incompatible TypeScript 3.x type declaration
- #1812 [BUG] Browser exceptions are no longer automatically tracked after 2.8.0
What's Changed
- [Release] Increase version to 2.9.0 by @MSNev in #50
- [Release] Update 2.9.0 to ApplicationInsights to 2.8.1 by @MSNev in #53
Full Changelog: 2.8.1...2.9.0
2.8.1
Changelog
- Update to Application Insights v2.8.0
- #1807 [BUG] Angular project doesn't build after install latest version v.2.8.0
What's Changed
- Fix typo in release notes by @MSNev in #40
- Bump karma from 6.3.13 to 6.3.14 by @dependabot in #42
- fix security alert by @Karlie-777 in #48
- [Release] Increase version to 2.8.1 by @MSNev in #49
New Contributors
- @Karlie-777 made their first contribution in #48
Full Changelog: 2.8.0...2.8.1
2.8.0
Changelog
- Update to Application Insights v2.7.3
- #28 Add support for Angular v13
- Update to Angular v13 (from v11)
What's Changed
- Update CI settings to remove node 10.x by @MSNev in #35
- Gerrit/angular13 by @ggarbereder in #34
- Update to ApplicationInsights 2.7.3 by @MSNev in #38
- [Release] Increase version to v2.8.0 by @MSNev in #39
New Contributors
- @ggarbereder made their first contribution in #34
Full Changelog: 2.7.0...2.8.0