Skip to content

Commit 4346969

Browse files
Merge remote-tracking branch 'origin/dev' into feat/suppot-app-variant
# Conflicts: # examples/default/ios/Podfile # examples/default/ios/Podfile.lock
2 parents 1c8cc1e + 5c8f2cf commit 4346969

File tree

7 files changed

+16
-11
lines changed

7 files changed

+16
-11
lines changed

CHANGELOG.md

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

3-
## [Unreleased](https://github.com/Instabug/Instabug-React-Native/compare/v14.3.0...dev)
3+
## [15.0.1](https://github.com/Instabug/Instabug-React-Native/compare/v14.3.0...v15.0.1)
44

55
### Added
66

@@ -16,6 +16,12 @@
1616

1717
- Add respect to backend network body limit. ([#1397](https://github.com/Instabug/Instabug-React-Native/pull/1397))
1818

19+
### Changed
20+
21+
- Bump Instabug iOS SDK to v15.1.1 ([#1402](https://github.com/Instabug/Instabug-React-Native/pull/1402)). [See release notes](https://github.com/Instabug/Instabug-iOS/releases/tag/15.1.1).
22+
23+
- Bump Instabug Android SDK to v15.0.1 ([#1402](https://github.com/Instabug/Instabug-React-Native/pull/1402)). [See release notes](https://github.com/Instabug/Instabug-Android/releases/tag/v15.0.1).
24+
1925
### Fixed
2026

2127
- Not sending the inComplete xhrRequest. ([#1365](https://github.com/Instabug/Instabug-React-Native/pull/1365))

RNInstabug.podspec

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,6 @@ Pod::Spec.new do |s|
1616
s.source_files = "ios/**/*.{h,m,mm}"
1717

1818
s.dependency 'React-Core'
19-
# use_instabug!(s)
20-
s.dependency 'Instabug'
19+
use_instabug!(s)
2120

2221
end

android/build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -57,7 +57,7 @@ android {
5757
minSdkVersion getExtOrDefault('minSdkVersion').toInteger()
5858
targetSdkVersion getExtOrDefault('targetSdkVersion').toInteger()
5959
versionCode 1
60-
versionName "14.3.0"
60+
versionName "15.0.1"
6161
multiDexEnabled true
6262
ndk {
6363
abiFilters "armeabi-v7a", "x86"

examples/default/android/build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ buildscript {
2424
classpath("com.android.tools.build:gradle:8.1.0")
2525
classpath("com.facebook.react:react-native-gradle-plugin")
2626
classpath("org.jetbrains.kotlin:kotlin-gradle-plugin:$kotlinVersion")
27-
classpath("com.instabug.library:instabug-plugin:14.3.0.6760192-SNAPSHOT")
27+
classpath("com.instabug.library:instabug-plugin:15.0.1")
2828
}
2929
}
3030

examples/default/ios/Podfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ target 'InstabugExample' do
1515
config = use_native_modules!
1616
rn_maps_path = '../node_modules/react-native-maps'
1717
pod 'react-native-google-maps', :path => rn_maps_path
18-
# add this line
18+
1919
# Flags change depending on the env values.
2020
flags = get_default_flags()
2121

examples/default/ios/Podfile.lock

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1625,8 +1625,8 @@ PODS:
16251625
- ReactCommon/turbomodule/bridging
16261626
- ReactCommon/turbomodule/core
16271627
- Yoga
1628-
- RNInstabug (14.3.0):
1629-
- Instabug
1628+
- RNInstabug (15.0.1):
1629+
- Instabug (= 15.1.1)
16301630
- React-Core
16311631
- RNReanimated (3.16.1):
16321632
- DoubleConversion
@@ -2090,14 +2090,14 @@ SPEC CHECKSUMS:
20902090
ReactCommon: 6a952e50c2a4b694731d7682aaa6c79bc156e4ad
20912091
RNCClipboard: 2821ac938ef46f736a8de0c8814845dde2dcbdfb
20922092
RNGestureHandler: 511250b190a284388f9dd0d2e56c1df76f14cfb8
2093-
RNInstabug: a038636a8fb8e078e69d3c51fca38396fa1ffdab
2093+
RNInstabug: f17d4e6c679fbc921f2692c223a1c21395589cc5
20942094
RNReanimated: f42a5044d121d68e91680caacb0293f4274228eb
20952095
RNScreens: c7ceced6a8384cb9be5e7a5e88e9e714401fd958
20962096
RNSVG: 8b1a777d54096b8c2a0fd38fc9d5a454332bbb4d
20972097
RNVectorIcons: 6382277afab3c54658e9d555ee0faa7a37827136
20982098
SocketRocket: abac6f5de4d4d62d24e11868d7a2f427e0ef940d
20992099
Yoga: 055f92ad73f8c8600a93f0e25ac0b2344c3b07e6
21002100

2101-
PODFILE CHECKSUM: 42f74b36b91ffedd1a4b69bf9b72165f04090424
2101+
PODFILE CHECKSUM: 837b933596e1616ff02cc206bb17dee4f611fdbc
21022102

21032103
COCOAPODS: 1.14.0

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "instabug-reactnative",
33
"description": "React Native plugin for integrating the Instabug SDK",
4-
"version": "14.3.0",
4+
"version": "15.0.1",
55
"author": "Instabug (https://instabug.com)",
66
"repository": "github:Instabug/Instabug-React-Native",
77
"homepage": "https://www.instabug.com/platforms/react-native",

0 commit comments

Comments
 (0)