Skip to content

Commit 11c7702

Browse files
authored
430 (#52)
1 parent 38b6667 commit 11c7702

6 files changed

Lines changed: 18 additions & 5 deletions

File tree

README.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -135,6 +135,7 @@ any previously configured value.
135135

136136
| Version | Application Insights | React Native | Branch
137137
|---------|-----------------------|----------------------|-----------
138+
| 4.3.0 | ^3.3.0 | *<br/>dev:^0.69.9 | [main](https://github.com/microsoft/applicationinsights-react-native)
138139
| 4.2.0 | ^3.2.0 | *<br/>dev:^0.69.9 | [main](https://github.com/microsoft/applicationinsights-react-native)
139140
| 4.1.1 | ^3.1.2 | *<br/>dev:^0.69.9 | [main](https://github.com/microsoft/applicationinsights-react-native)
140141
| 4.1.0 | ^3.1.0 | *<br/>dev:^0.69.9 | [main](https://github.com/microsoft/applicationinsights-react-native)

RELEASES.md

Lines changed: 13 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,18 @@
11
# Releases
22

3-
## 4.1.2 (May 8th, 2024)
3+
## 4.3.0 (July 2nd, 2024)
4+
5+
### Changelog
6+
7+
- #51 [pre-release] update application insights to 3.3.0
8+
- Adds support to internally defer initialization completion of the SDK while waiting for the connectionString, instrumentationKey or endpointURL to be resolved via a Promise.
9+
- During this period the SDK will not send any telemetry, and it will be internally batched if the promise(s) never resolve then the telemetry will be dropped.
10+
11+
### Potential breaking change (from @microsoft/applicationInsights-web v3.3.0)
12+
13+
This release contains a potential break change due to enhancing the definition of the [IConfiguration](https://github.com/microsoft/ApplicationInsights-JS/blob/main/shared/AppInsightsCore/src/JavaScriptSDK.Interfaces/IConfiguration.ts) to support Promise types for the connectionString, instrumentationKey and endpointURL; any extension that relies on these base interfaces will VERY likely cause TypeScript to fail with potential warnings about the types being different.
14+
15+
## 4.2.0 (May 8th, 2024)
416

517
### Changelog
618

applicationinsights-react-native/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@microsoft/applicationinsights-react-native",
3-
"version": "4.2.0",
3+
"version": "4.3.0",
44
"description": "Microsoft Application Insights React Native Plugin",
55
"main": "dist-esm/index.js",
66
"exports": {

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@microsoft/applicationinsights-react-native",
3-
"version": "4.2.0",
3+
"version": "4.3.0",
44
"description": "Microsoft Application Insights React Native Plugin",
55
"main": "dist-esm/index.js",
66
"types": "types/index.d.ts",

sample/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010
},
1111
"dependencies": {
1212
"@expo/webpack-config": "^18.0.1",
13-
"@microsoft/applicationinsights-react-native": "^4.2.0",
13+
"@microsoft/applicationinsights-react-native": "^4.3.0",
1414
"@microsoft/applicationinsights-web": "^3.3.0",
1515
"expo": "~48.0.18",
1616
"expo-status-bar": "~1.4.4",

version.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
"pkgs": {
77
"@microsoft/applicationinsights-react-native": {
88
"package": "applicationinsights-react-native/package.json",
9-
"release": "4.2.0"
9+
"release": "4.3.0"
1010
}
1111
}
1212
}

0 commit comments

Comments
 (0)