From 5d34c6b05724097e881af03d1f352903fb5a012b Mon Sep 17 00:00:00 2001 From: Ahmed Mahmoud Date: Mon, 9 Sep 2024 17:03:17 +0300 Subject: [PATCH 01/13] chore(ios): bump sdk to v13.4.0 --- examples/default/ios/Podfile.lock | 8 ++++---- ios/native.rb | 2 +- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/examples/default/ios/Podfile.lock b/examples/default/ios/Podfile.lock index 1da6e558e..015541e9f 100644 --- a/examples/default/ios/Podfile.lock +++ b/examples/default/ios/Podfile.lock @@ -38,7 +38,7 @@ PODS: - hermes-engine (0.72.3): - hermes-engine/Pre-built (= 0.72.3) - hermes-engine/Pre-built (0.72.3) - - Instabug (13.3.0) + - Instabug (13.4.0) - instabug-reactnative-ndk (0.1.0): - RCT-Folly (= 2021.07.22.00) - React-Core @@ -476,7 +476,7 @@ PODS: - RCT-Folly (= 2021.07.22.00) - React-Core - RNInstabug (13.3.0): - - Instabug (= 13.3.0) + - Instabug (= 13.4.0) - React-Core - RNReanimated (3.5.4): - DoubleConversion @@ -704,7 +704,7 @@ SPEC CHECKSUMS: Google-Maps-iOS-Utils: f77eab4c4326d7e6a277f8e23a0232402731913a GoogleMaps: 032f676450ba0779bd8ce16840690915f84e57ac hermes-engine: 10fbd3f62405c41ea07e71973ea61e1878d07322 - Instabug: 4f26295103a330ec0236918359eef7ccaa74e2fa + Instabug: 183aa1e038d01ddc000f06835f46a9ea1f6c992b instabug-reactnative-ndk: 960119a69380cf4cbe47ccd007c453f757927d17 libevent: 4049cae6c81cdb3654a443be001fb9bdceff7913 OCMock: 300b1b1b9155cb6378660b981c2557448830bdc6 @@ -748,7 +748,7 @@ SPEC CHECKSUMS: ReactCommon: 3ccb8fb14e6b3277e38c73b0ff5e4a1b8db017a9 RNCClipboard: 41d8d918092ae8e676f18adada19104fa3e68495 RNGestureHandler: 6e46dde1f87e5f018a54fe5d40cd0e0b942b49ee - RNInstabug: a4ac0bd09123f6be7d58be541dc220acbaff8dc3 + RNInstabug: 98a04a3cf14303bc172a49079fee36c5158b1799 RNReanimated: ab2e96c6d5591c3dfbb38a464f54c8d17fb34a87 RNScreens: b21dc57dfa2b710c30ec600786a3fc223b1b92e7 RNSVG: 80584470ff1ffc7994923ea135a3e5ad825546b9 diff --git a/ios/native.rb b/ios/native.rb index c5188a3a7..c46209b91 100644 --- a/ios/native.rb +++ b/ios/native.rb @@ -1,4 +1,4 @@ -$instabug = { :version => '13.3.0' } +$instabug = { :version => '13.4.0' } def use_instabug! (spec = nil) version = $instabug[:version] From 3437ef66e71ba0544289281d028ef6bdff364456 Mon Sep 17 00:00:00 2001 From: Ahmed Mahmoud Date: Mon, 9 Sep 2024 17:08:49 +0300 Subject: [PATCH 02/13] chore: update changelog --- CHANGELOG.md | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/CHANGELOG.md b/CHANGELOG.md index 2f8d206c9..f1a2dd280 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -14,6 +14,10 @@ - Drop non-error objects reported as crashes since they don't have a stack trace ([#1279](https://github.com/Instabug/Instabug-React-Native/pull/1279)). - Fix APM network logging on iOS when the response body is missing or empty. ([#1273](https://github.com/Instabug/Instabug-React-Native/pull/1273)). +### Changed + +- Bump Instabug iOS SDK to v13.4.0 ([#1283](https://github.com/Instabug/Instabug-React-Native/pull/1283)). [See release notes](https://github.com/Instabug/Instabug-iOS/releases/tag/13.4.0). + ## [13.3.0](https://github.com/Instabug/Instabug-React-Native/compare/v13.2.0...v13.3.0) (August 4, 2024) ### Added From 8e892feb2106a8d6e41c187eb1d115c65934bcd1 Mon Sep 17 00:00:00 2001 From: Ahmed Mahmoud Date: Mon, 9 Sep 2024 17:10:26 +0300 Subject: [PATCH 03/13] chore(android): bump sdk to v13.4.0 --- CHANGELOG.md | 1 + android/native.gradle | 2 +- 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index f1a2dd280..84d6ca5dd 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -17,6 +17,7 @@ ### Changed - Bump Instabug iOS SDK to v13.4.0 ([#1283](https://github.com/Instabug/Instabug-React-Native/pull/1283)). [See release notes](https://github.com/Instabug/Instabug-iOS/releases/tag/13.4.0). +- Bump Instabug Android SDK to v13.4.0 ([#1284](https://github.com/Instabug/Instabug-React-Native/pull/1284)). [See release notes](https://github.com/Instabug/Instabug-Android/releases/tag/v13.4.0). ## [13.3.0](https://github.com/Instabug/Instabug-React-Native/compare/v13.2.0...v13.3.0) (August 4, 2024) diff --git a/android/native.gradle b/android/native.gradle index 0e86a4edf..39034d603 100644 --- a/android/native.gradle +++ b/android/native.gradle @@ -1,5 +1,5 @@ project.ext.instabug = [ - version: '13.3.0' + version: '13.4.0' ] dependencies { From 8ff670a53002e2f4fe62cc940efab053c917ae71 Mon Sep 17 00:00:00 2001 From: Ahmed Mahmoud Date: Mon, 9 Sep 2024 17:14:32 +0300 Subject: [PATCH 04/13] release: v13.4.0 --- CHANGELOG.md | 2 +- android/build.gradle | 2 +- examples/default/ios/Podfile.lock | 4 ++-- package.json | 2 +- 4 files changed, 5 insertions(+), 5 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 84d6ca5dd..f8fc3bb94 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,6 +1,6 @@ # Changelog -## [Unreleased](https://github.com/Instabug/Instabug-React-Native/compare/v13.3.0...dev) +## [13.4.0](https://github.com/Instabug/Instabug-React-Native/compare/v13.3.0...v13.4.0) (September 10, 2024) ### Added diff --git a/android/build.gradle b/android/build.gradle index ffd71b5f8..c85924843 100644 --- a/android/build.gradle +++ b/android/build.gradle @@ -57,7 +57,7 @@ android { minSdkVersion getExtOrDefault('minSdkVersion').toInteger() targetSdkVersion getExtOrDefault('targetSdkVersion').toInteger() versionCode 1 - versionName "13.3.0" + versionName "13.4.0" multiDexEnabled true ndk { abiFilters "armeabi-v7a", "x86" diff --git a/examples/default/ios/Podfile.lock b/examples/default/ios/Podfile.lock index 015541e9f..8a443ad4e 100644 --- a/examples/default/ios/Podfile.lock +++ b/examples/default/ios/Podfile.lock @@ -475,7 +475,7 @@ PODS: - RNGestureHandler (2.13.4): - RCT-Folly (= 2021.07.22.00) - React-Core - - RNInstabug (13.3.0): + - RNInstabug (13.4.0): - Instabug (= 13.4.0) - React-Core - RNReanimated (3.5.4): @@ -748,7 +748,7 @@ SPEC CHECKSUMS: ReactCommon: 3ccb8fb14e6b3277e38c73b0ff5e4a1b8db017a9 RNCClipboard: 41d8d918092ae8e676f18adada19104fa3e68495 RNGestureHandler: 6e46dde1f87e5f018a54fe5d40cd0e0b942b49ee - RNInstabug: 98a04a3cf14303bc172a49079fee36c5158b1799 + RNInstabug: 082e4fc486a6f92e7db3d90623772660c0a3dc43 RNReanimated: ab2e96c6d5591c3dfbb38a464f54c8d17fb34a87 RNScreens: b21dc57dfa2b710c30ec600786a3fc223b1b92e7 RNSVG: 80584470ff1ffc7994923ea135a3e5ad825546b9 diff --git a/package.json b/package.json index d641ecad6..ee890e470 100644 --- a/package.json +++ b/package.json @@ -1,7 +1,7 @@ { "name": "instabug-reactnative", "description": "React Native plugin for integrating the Instabug SDK", - "version": "13.3.0", + "version": "13.4.0", "author": "Instabug (https://instabug.com)", "repository": "github:Instabug/Instabug-React-Native", "homepage": "https://www.instabug.com/platforms/react-native", From 469b8efae917c4afc2540af4b453929797346dc8 Mon Sep 17 00:00:00 2001 From: Ahmed Mahmoud Date: Tue, 10 Sep 2024 11:08:04 +0300 Subject: [PATCH 05/13] chore: update pr numbers --- CHANGELOG.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index f8fc3bb94..735dd65b8 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -16,8 +16,8 @@ ### Changed -- Bump Instabug iOS SDK to v13.4.0 ([#1283](https://github.com/Instabug/Instabug-React-Native/pull/1283)). [See release notes](https://github.com/Instabug/Instabug-iOS/releases/tag/13.4.0). -- Bump Instabug Android SDK to v13.4.0 ([#1284](https://github.com/Instabug/Instabug-React-Native/pull/1284)). [See release notes](https://github.com/Instabug/Instabug-Android/releases/tag/v13.4.0). +- Bump Instabug iOS SDK to v13.4.0 ([#1285](https://github.com/Instabug/Instabug-React-Native/pull/1285)). [See release notes](https://github.com/Instabug/Instabug-iOS/releases/tag/13.4.0). +- Bump Instabug Android SDK to v13.4.0 ([#1285](https://github.com/Instabug/Instabug-React-Native/pull/1285)). [See release notes](https://github.com/Instabug/Instabug-Android/releases/tag/v13.4.0). ## [13.3.0](https://github.com/Instabug/Instabug-React-Native/compare/v13.2.0...v13.3.0) (August 4, 2024) From dacc19ba36c68926d6f4ef887417d449464d2869 Mon Sep 17 00:00:00 2001 From: Ahmed alaa Date: Wed, 18 Sep 2024 13:47:06 +0300 Subject: [PATCH 06/13] chore: bump android sdk to 13.4.1 --- CHANGELOG.md | 2 +- android/native.gradle | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 735dd65b8..0fa1ac9b9 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -17,7 +17,7 @@ ### Changed - Bump Instabug iOS SDK to v13.4.0 ([#1285](https://github.com/Instabug/Instabug-React-Native/pull/1285)). [See release notes](https://github.com/Instabug/Instabug-iOS/releases/tag/13.4.0). -- Bump Instabug Android SDK to v13.4.0 ([#1285](https://github.com/Instabug/Instabug-React-Native/pull/1285)). [See release notes](https://github.com/Instabug/Instabug-Android/releases/tag/v13.4.0). +- Bump Instabug Android SDK to v13.4.1 ([#1285](https://github.com/Instabug/Instabug-React-Native/pull/1285)). [See release notes](https://github.com/Instabug/Instabug-Android/releases/tag/v13.4.0). ## [13.3.0](https://github.com/Instabug/Instabug-React-Native/compare/v13.2.0...v13.3.0) (August 4, 2024) diff --git a/android/native.gradle b/android/native.gradle index 39034d603..ad47dccfe 100644 --- a/android/native.gradle +++ b/android/native.gradle @@ -1,5 +1,5 @@ project.ext.instabug = [ - version: '13.4.0' + version: '13.4.1' ] dependencies { From a49be485ee88f2c9b8483a58cd89736c9463c559 Mon Sep 17 00:00:00 2001 From: Ahmed Mahmoud Date: Sun, 22 Sep 2024 13:49:31 +0300 Subject: [PATCH 07/13] chore(ios): bump sdk to v13.4.1 --- examples/default/ios/Podfile.lock | 8 ++++---- ios/native.rb | 2 +- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/examples/default/ios/Podfile.lock b/examples/default/ios/Podfile.lock index 8a443ad4e..ef48cbdd6 100644 --- a/examples/default/ios/Podfile.lock +++ b/examples/default/ios/Podfile.lock @@ -38,7 +38,7 @@ PODS: - hermes-engine (0.72.3): - hermes-engine/Pre-built (= 0.72.3) - hermes-engine/Pre-built (0.72.3) - - Instabug (13.4.0) + - Instabug (13.4.1) - instabug-reactnative-ndk (0.1.0): - RCT-Folly (= 2021.07.22.00) - React-Core @@ -476,7 +476,7 @@ PODS: - RCT-Folly (= 2021.07.22.00) - React-Core - RNInstabug (13.4.0): - - Instabug (= 13.4.0) + - Instabug (= 13.4.1) - React-Core - RNReanimated (3.5.4): - DoubleConversion @@ -704,7 +704,7 @@ SPEC CHECKSUMS: Google-Maps-iOS-Utils: f77eab4c4326d7e6a277f8e23a0232402731913a GoogleMaps: 032f676450ba0779bd8ce16840690915f84e57ac hermes-engine: 10fbd3f62405c41ea07e71973ea61e1878d07322 - Instabug: 183aa1e038d01ddc000f06835f46a9ea1f6c992b + Instabug: 896a318fb64b282832e0eda6fce489dac74b5d48 instabug-reactnative-ndk: 960119a69380cf4cbe47ccd007c453f757927d17 libevent: 4049cae6c81cdb3654a443be001fb9bdceff7913 OCMock: 300b1b1b9155cb6378660b981c2557448830bdc6 @@ -748,7 +748,7 @@ SPEC CHECKSUMS: ReactCommon: 3ccb8fb14e6b3277e38c73b0ff5e4a1b8db017a9 RNCClipboard: 41d8d918092ae8e676f18adada19104fa3e68495 RNGestureHandler: 6e46dde1f87e5f018a54fe5d40cd0e0b942b49ee - RNInstabug: 082e4fc486a6f92e7db3d90623772660c0a3dc43 + RNInstabug: 6d31210aee551b97ee924979fb285a7f071d71c2 RNReanimated: ab2e96c6d5591c3dfbb38a464f54c8d17fb34a87 RNScreens: b21dc57dfa2b710c30ec600786a3fc223b1b92e7 RNSVG: 80584470ff1ffc7994923ea135a3e5ad825546b9 diff --git a/ios/native.rb b/ios/native.rb index c46209b91..0f24903b2 100644 --- a/ios/native.rb +++ b/ios/native.rb @@ -1,4 +1,4 @@ -$instabug = { :version => '13.4.0' } +$instabug = { :version => '13.4.1' } def use_instabug! (spec = nil) version = $instabug[:version] From d68368370840e5817ca73ae3a46b0c59ca4e8aa5 Mon Sep 17 00:00:00 2001 From: Ahmed Mahmoud Date: Sun, 22 Sep 2024 13:52:39 +0300 Subject: [PATCH 08/13] chore: update changelog --- CHANGELOG.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 0fa1ac9b9..9bd09c2b3 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -16,8 +16,8 @@ ### Changed -- Bump Instabug iOS SDK to v13.4.0 ([#1285](https://github.com/Instabug/Instabug-React-Native/pull/1285)). [See release notes](https://github.com/Instabug/Instabug-iOS/releases/tag/13.4.0). -- Bump Instabug Android SDK to v13.4.1 ([#1285](https://github.com/Instabug/Instabug-React-Native/pull/1285)). [See release notes](https://github.com/Instabug/Instabug-Android/releases/tag/v13.4.0). +- Bump Instabug iOS SDK to v13.4.1 ([#1286](https://github.com/Instabug/Instabug-React-Native/pull/1286)). See release notes for [13.4.0](https://github.com/Instabug/Instabug-iOS/releases/tag/13.4.0) and [13.4.1](https://github.com/Instabug/Instabug-iOS/releases/tag/13.4.1). +- Bump Instabug Android SDK to v13.4.0 ([#1285](https://github.com/Instabug/Instabug-React-Native/pull/1285)). [See release notes](https://github.com/Instabug/Instabug-Android/releases/tag/v13.4.0). ## [13.3.0](https://github.com/Instabug/Instabug-React-Native/compare/v13.2.0...v13.3.0) (August 4, 2024) From 3bca43e057b7dae1485a7dcd4a413dbfaed23167 Mon Sep 17 00:00:00 2001 From: Ahmed Mahmoud Date: Sun, 22 Sep 2024 13:58:47 +0300 Subject: [PATCH 09/13] chore: update changelog --- CHANGELOG.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 9bd09c2b3..5a39938e1 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -16,8 +16,8 @@ ### Changed -- Bump Instabug iOS SDK to v13.4.1 ([#1286](https://github.com/Instabug/Instabug-React-Native/pull/1286)). See release notes for [13.4.0](https://github.com/Instabug/Instabug-iOS/releases/tag/13.4.0) and [13.4.1](https://github.com/Instabug/Instabug-iOS/releases/tag/13.4.1). -- Bump Instabug Android SDK to v13.4.0 ([#1285](https://github.com/Instabug/Instabug-React-Native/pull/1285)). [See release notes](https://github.com/Instabug/Instabug-Android/releases/tag/v13.4.0). +- Bump Instabug iOS SDK to v13.4.1 ([#1285](https://github.com/Instabug/Instabug-React-Native/pull/1285)). See release notes for [13.4.0](https://github.com/Instabug/Instabug-iOS/releases/tag/13.4.0) and [13.4.1](https://github.com/Instabug/Instabug-iOS/releases/tag/13.4.1). +- Bump Instabug Android SDK to v13.4.1 ([#1285](https://github.com/Instabug/Instabug-React-Native/pull/1285)). See release notes for [13.4.0](https://github.com/Instabug/Instabug-Android/releases/tag/v13.4.0) and [13.4.1](https://github.com/Instabug/Instabug-Android/releases/tag/v13.4.1). ## [13.3.0](https://github.com/Instabug/Instabug-React-Native/compare/v13.2.0...v13.3.0) (August 4, 2024) From 42ea0ee5e7366e76a382c8673898cf6e78efce68 Mon Sep 17 00:00:00 2001 From: Ahmed Mahmoud Date: Wed, 25 Sep 2024 11:30:58 +0300 Subject: [PATCH 10/13] fix(ios): update network logging signature with empty w3c data --- .../ios/InstabugTests/InstabugSampleTests.m | 7 +++++- ios/RNInstabug/InstabugReactBridge.m | 7 +++++- ios/RNInstabug/Util/IBGNetworkLogger+CP.h | 23 +++++++++++-------- 3 files changed, 26 insertions(+), 11 deletions(-) diff --git a/examples/default/ios/InstabugTests/InstabugSampleTests.m b/examples/default/ios/InstabugTests/InstabugSampleTests.m index 70ef41025..51bbe182c 100644 --- a/examples/default/ios/InstabugTests/InstabugSampleTests.m +++ b/examples/default/ios/InstabugTests/InstabugSampleTests.m @@ -365,7 +365,12 @@ - (void)testNetworkLogIOS { startTime:startTime * 1000 duration:duration * 1000 gqlQueryName:gqlQueryName - serverErrorMessage:serverErrorMessage]); + serverErrorMessage:serverErrorMessage + isW3cCaughted:nil + partialID:nil + timestamp:nil + generatedW3CTraceparent:nil + caughtedW3CTraceparent:nil]); } - (void)testSetFileAttachment { diff --git a/ios/RNInstabug/InstabugReactBridge.m b/ios/RNInstabug/InstabugReactBridge.m index dd1851316..534b84908 100644 --- a/ios/RNInstabug/InstabugReactBridge.m +++ b/ios/RNInstabug/InstabugReactBridge.m @@ -314,7 +314,12 @@ - (dispatch_queue_t)methodQueue { startTime:startTime * 1000 duration:duration * 1000 gqlQueryName:gqlQueryName - serverErrorMessage:serverErrorMessage]; + serverErrorMessage:serverErrorMessage + isW3cCaughted:nil + partialID:nil + timestamp:nil + generatedW3CTraceparent:nil + caughtedW3CTraceparent:nil]; } RCT_EXPORT_METHOD(addPrivateView: (nonnull NSNumber *)reactTag) { diff --git a/ios/RNInstabug/Util/IBGNetworkLogger+CP.h b/ios/RNInstabug/Util/IBGNetworkLogger+CP.h index 5ae464785..436553620 100644 --- a/ios/RNInstabug/Util/IBGNetworkLogger+CP.h +++ b/ios/RNInstabug/Util/IBGNetworkLogger+CP.h @@ -5,22 +5,27 @@ NS_ASSUME_NONNULL_BEGIN @interface IBGNetworkLogger (CP) + (void)disableAutomaticCapturingOfNetworkLogs; -+ (void)addNetworkLogWithUrl:(NSString *)url - method:(NSString *)method - requestBody:(NSString *)request ++ (void)addNetworkLogWithUrl:(NSString *_Nonnull)url + method:(NSString *_Nonnull)method + requestBody:(NSString *_Nonnull)request requestBodySize:(int64_t)requestBodySize - responseBody:(NSString *)response + responseBody:(NSString *_Nonnull)response responseBodySize:(int64_t)responseBodySize responseCode:(int32_t)code - requestHeaders:(NSDictionary *)requestHeaders - responseHeaders:(NSDictionary *)responseHeaders - contentType:(NSString *)contentType - errorDomain:(NSString *)errorDomain + requestHeaders:(NSDictionary *_Nonnull)requestHeaders + responseHeaders:(NSDictionary *_Nonnull)responseHeaders + contentType:(NSString *_Nonnull)contentType + errorDomain:(NSString *_Nullable)errorDomain errorCode:(int32_t)errorCode startTime:(int64_t)startTime duration:(int64_t) duration gqlQueryName:(NSString * _Nullable)gqlQueryName - serverErrorMessage:(NSString * _Nullable)serverErrorMessage; + serverErrorMessage:(NSString * _Nullable)serverErrorMessage + isW3cCaughted:(NSNumber * _Nullable)isW3cCaughted + partialID:(NSNumber * _Nullable)partialID + timestamp:(NSNumber * _Nullable)timestamp + generatedW3CTraceparent:(NSString * _Nullable)generatedW3CTraceparent + caughtedW3CTraceparent:(NSString * _Nullable)caughtedW3CTraceparent; @end From 8375144883558f2cfda55f559840518fc974b0d3 Mon Sep 17 00:00:00 2001 From: Ahmed Mahmoud Date: Sun, 29 Sep 2024 15:25:51 +0300 Subject: [PATCH 11/13] chore: update changelog --- CHANGELOG.md | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 5a39938e1..9a88a5653 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -7,6 +7,11 @@ - Add support for Expo Router navigation tracking ([#1270](https://github.com/Instabug/Instabug-React-Native/pull/1270)). - Enhance the network interceptor to capture more client error messages ([#1257](https://github.com/Instabug/Instabug-React-Native/pull/1257)). +### Changed + +- Bump Instabug iOS SDK to v13.4.1 ([#1285](https://github.com/Instabug/Instabug-React-Native/pull/1285)). See release notes for [13.4.0](https://github.com/Instabug/Instabug-iOS/releases/tag/13.4.0) and [13.4.1](https://github.com/Instabug/Instabug-iOS/releases/tag/13.4.1). +- Bump Instabug Android SDK to v13.4.1 ([#1285](https://github.com/Instabug/Instabug-React-Native/pull/1285)). See release notes for [13.4.0](https://github.com/Instabug/Instabug-Android/releases/tag/v13.4.0) and [13.4.1](https://github.com/Instabug/Instabug-Android/releases/tag/v13.4.1). + ### Fixed - Fix an issue with JavaScript fatal crashes on iOS causing them to be reported as native iOS crashes instead. ([#1290](https://github.com/Instabug/Instabug-React-Native/pull/1290)). @@ -14,11 +19,6 @@ - Drop non-error objects reported as crashes since they don't have a stack trace ([#1279](https://github.com/Instabug/Instabug-React-Native/pull/1279)). - Fix APM network logging on iOS when the response body is missing or empty. ([#1273](https://github.com/Instabug/Instabug-React-Native/pull/1273)). -### Changed - -- Bump Instabug iOS SDK to v13.4.1 ([#1285](https://github.com/Instabug/Instabug-React-Native/pull/1285)). See release notes for [13.4.0](https://github.com/Instabug/Instabug-iOS/releases/tag/13.4.0) and [13.4.1](https://github.com/Instabug/Instabug-iOS/releases/tag/13.4.1). -- Bump Instabug Android SDK to v13.4.1 ([#1285](https://github.com/Instabug/Instabug-React-Native/pull/1285)). See release notes for [13.4.0](https://github.com/Instabug/Instabug-Android/releases/tag/v13.4.0) and [13.4.1](https://github.com/Instabug/Instabug-Android/releases/tag/v13.4.1). - ## [13.3.0](https://github.com/Instabug/Instabug-React-Native/compare/v13.2.0...v13.3.0) (August 4, 2024) ### Added From 645c16c4156a1e9d42d538f57a1334dae797265f Mon Sep 17 00:00:00 2001 From: Ahmed Mahmoud Date: Sun, 29 Sep 2024 15:37:59 +0300 Subject: [PATCH 12/13] chore(ios): bump sdk to v13.4.2 --- CHANGELOG.md | 2 +- examples/default/ios/Podfile.lock | 8 ++++---- ios/native.rb | 2 +- 3 files changed, 6 insertions(+), 6 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 9a88a5653..cbd509a65 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -9,7 +9,7 @@ ### Changed -- Bump Instabug iOS SDK to v13.4.1 ([#1285](https://github.com/Instabug/Instabug-React-Native/pull/1285)). See release notes for [13.4.0](https://github.com/Instabug/Instabug-iOS/releases/tag/13.4.0) and [13.4.1](https://github.com/Instabug/Instabug-iOS/releases/tag/13.4.1). +- Bump Instabug iOS SDK to v13.4.2 ([#1285](https://github.com/Instabug/Instabug-React-Native/pull/1285)). See release notes for [13.4.0](https://github.com/Instabug/Instabug-iOS/releases/tag/13.4.0), [13.4.1](https://github.com/Instabug/Instabug-iOS/releases/tag/13.4.1) and [13.4.2](https://github.com/Instabug/Instabug-iOS/releases/tag/13.4.2). - Bump Instabug Android SDK to v13.4.1 ([#1285](https://github.com/Instabug/Instabug-React-Native/pull/1285)). See release notes for [13.4.0](https://github.com/Instabug/Instabug-Android/releases/tag/v13.4.0) and [13.4.1](https://github.com/Instabug/Instabug-Android/releases/tag/v13.4.1). ### Fixed diff --git a/examples/default/ios/Podfile.lock b/examples/default/ios/Podfile.lock index ef48cbdd6..e59615769 100644 --- a/examples/default/ios/Podfile.lock +++ b/examples/default/ios/Podfile.lock @@ -38,7 +38,7 @@ PODS: - hermes-engine (0.72.3): - hermes-engine/Pre-built (= 0.72.3) - hermes-engine/Pre-built (0.72.3) - - Instabug (13.4.1) + - Instabug (13.4.2) - instabug-reactnative-ndk (0.1.0): - RCT-Folly (= 2021.07.22.00) - React-Core @@ -476,7 +476,7 @@ PODS: - RCT-Folly (= 2021.07.22.00) - React-Core - RNInstabug (13.4.0): - - Instabug (= 13.4.1) + - Instabug (= 13.4.2) - React-Core - RNReanimated (3.5.4): - DoubleConversion @@ -704,7 +704,7 @@ SPEC CHECKSUMS: Google-Maps-iOS-Utils: f77eab4c4326d7e6a277f8e23a0232402731913a GoogleMaps: 032f676450ba0779bd8ce16840690915f84e57ac hermes-engine: 10fbd3f62405c41ea07e71973ea61e1878d07322 - Instabug: 896a318fb64b282832e0eda6fce489dac74b5d48 + Instabug: 7a71890217b97b1e32dbca96661845396b66da2f instabug-reactnative-ndk: 960119a69380cf4cbe47ccd007c453f757927d17 libevent: 4049cae6c81cdb3654a443be001fb9bdceff7913 OCMock: 300b1b1b9155cb6378660b981c2557448830bdc6 @@ -748,7 +748,7 @@ SPEC CHECKSUMS: ReactCommon: 3ccb8fb14e6b3277e38c73b0ff5e4a1b8db017a9 RNCClipboard: 41d8d918092ae8e676f18adada19104fa3e68495 RNGestureHandler: 6e46dde1f87e5f018a54fe5d40cd0e0b942b49ee - RNInstabug: 6d31210aee551b97ee924979fb285a7f071d71c2 + RNInstabug: 8e7eb1df3f35b935dda661f5bb475f37cef595e6 RNReanimated: ab2e96c6d5591c3dfbb38a464f54c8d17fb34a87 RNScreens: b21dc57dfa2b710c30ec600786a3fc223b1b92e7 RNSVG: 80584470ff1ffc7994923ea135a3e5ad825546b9 diff --git a/ios/native.rb b/ios/native.rb index 0f24903b2..f4f01e1ae 100644 --- a/ios/native.rb +++ b/ios/native.rb @@ -1,4 +1,4 @@ -$instabug = { :version => '13.4.1' } +$instabug = { :version => '13.4.2' } def use_instabug! (spec = nil) version = $instabug[:version] From ea6cd2368e8b072edb7d655c3543ab98aa6b2a60 Mon Sep 17 00:00:00 2001 From: Ahmed Mahmoud Date: Wed, 2 Oct 2024 16:09:11 +0300 Subject: [PATCH 13/13] chore: update release date in changelog --- CHANGELOG.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index cbd509a65..85dd5f063 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,6 +1,6 @@ # Changelog -## [13.4.0](https://github.com/Instabug/Instabug-React-Native/compare/v13.3.0...v13.4.0) (September 10, 2024) +## [13.4.0](https://github.com/Instabug/Instabug-React-Native/compare/v13.3.0...v13.4.0) (October 2, 2024) ### Added