Skip to content

Commit 6868ca8

Browse files
authored
Merge pull request #1450 from Instabug/release/v16.0.1
Release:v16.0.3
2 parents d67d2a2 + 25f35d1 commit 6868ca8

File tree

5 files changed

+22
-12
lines changed

5 files changed

+22
-12
lines changed

CHANGELOG.md

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,17 @@
11
# Changelog
22

3+
## [16.0.3](https://github.com/Instabug/Instabug-React-Native/compare/v16.0.3...dev)
4+
5+
### Changed
6+
7+
- Bump Instabug iOS SDK to v16.0.3 ([#1452](https://github.com/Instabug/Instabug-React-Native/pull/1452)). [See release notes](https://github.com/Instabug/Instabug-iOS/releases/tag/16.0.3).
8+
9+
## [16.0.1](https://github.com/Instabug/Instabug-React-Native/compare/v16.0.0...dev)
10+
11+
### Fixed
12+
13+
- Reading `INSTABUG_APP_TOKEN` when upload sourcemap file ([#1448](https://github.com/Instabug/Instabug-React-Native/pull/1448))
14+
315
## [16.0.0](https://github.com/Instabug/Instabug-React-Native/compare/v15.0.3...dev)
416

517
### Added

android/sourcemaps.gradle

Lines changed: 3 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -42,20 +42,18 @@ Task createUploadSourcemapsTask(String flavor, String defaultVersionName, String
4242
def appProject = project(':app')
4343
def appDir = appProject.projectDir
4444
def sourceMapFile = getSourceMapFile(appDir, flavor,task)
45-
println "✅ Resolved sourcemap file path: ${sourceMapFile.absolutePath}"
4645

4746
def jsProjectDir = rootDir.parentFile
4847
def instabugDir = new File(['node', '-p', 'require.resolve("instabug-reactnative/package.json")'].execute(null, rootDir).text.trim()).getParentFile()
4948

5049
def tokenJsFile = new File(instabugDir, 'scripts/find-token.js')
5150
def inferredToken = executeNodeScript(tokenJsFile, jsProjectDir)
51+
X
52+
def appToken = resolveVar('App Token', 'INSTABUG_APP_TOKEN', inferredToken)
5253

53-
if (!inferredToken) {
54+
if (!appToken) {
5455
throw new GradleException("❌ Unable to infer Instabug token from script: ${tokenShellFile.absolutePath}")
5556
}
56-
57-
def appToken = resolveVar('App Token', 'INSTABUG_APP_TOKEN', inferredToken)
58-
5957
def versionName = resolveVar('Version Name', 'INSTABUG_VERSION_NAME', defaultVersionName)
6058
def versionCode = resolveVar('Version Code', 'INSTABUG_VERSION_CODE', defaultVersionCode)
6159

examples/default/ios/Podfile.lock

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ PODS:
3131
- hermes-engine (0.75.4):
3232
- hermes-engine/Pre-built (= 0.75.4)
3333
- hermes-engine/Pre-built (0.75.4)
34-
- Instabug (16.0.2)
34+
- Instabug (16.0.3)
3535
- instabug-reactnative-ndk (0.1.0):
3636
- DoubleConversion
3737
- glog
@@ -1625,8 +1625,8 @@ PODS:
16251625
- ReactCommon/turbomodule/bridging
16261626
- ReactCommon/turbomodule/core
16271627
- Yoga
1628-
- RNInstabug (16.0.0):
1629-
- Instabug (= 16.0.2)
1628+
- RNInstabug (16.0.2):
1629+
- Instabug (= 16.0.3)
16301630
- React-Core
16311631
- RNReanimated (3.16.1):
16321632
- DoubleConversion
@@ -2022,7 +2022,7 @@ SPEC CHECKSUMS:
20222022
Google-Maps-iOS-Utils: f77eab4c4326d7e6a277f8e23a0232402731913a
20232023
GoogleMaps: 032f676450ba0779bd8ce16840690915f84e57ac
20242024
hermes-engine: ea92f60f37dba025e293cbe4b4a548fd26b610a0
2025-
Instabug: 125f729dea4e4a43e815ae06f9db0332e2a5fd60
2025+
Instabug: b6290ceceb5d98966aa6f10fbd7970026a916f65
20262026
instabug-reactnative-ndk: d765ac289d56e8896398d02760d9abf2562fc641
20272027
OCMock: 589f2c84dacb1f5aaf6e4cec1f292551fe748e74
20282028
RCT-Folly: 4464f4d875961fce86008d45f4ecf6cef6de0740
@@ -2090,7 +2090,7 @@ SPEC CHECKSUMS:
20902090
ReactCommon: 6a952e50c2a4b694731d7682aaa6c79bc156e4ad
20912091
RNCClipboard: 2821ac938ef46f736a8de0c8814845dde2dcbdfb
20922092
RNGestureHandler: 511250b190a284388f9dd0d2e56c1df76f14cfb8
2093-
RNInstabug: f06cf043f071311456d3ad14b4f9da628f2cd29b
2093+
RNInstabug: 2cfa6de7b6509124ec15841c14869e030719309e
20942094
RNReanimated: f42a5044d121d68e91680caacb0293f4274228eb
20952095
RNScreens: c7ceced6a8384cb9be5e7a5e88e9e714401fd958
20962096
RNSVG: 8b1a777d54096b8c2a0fd38fc9d5a454332bbb4d

ios/native.rb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
$instabug = { :version => '16.0.2' }
1+
$instabug = { :version => '16.0.3' }
22

33
def use_instabug! (spec = nil)
44
version = $instabug[:version]

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": "16.0.0",
4+
"version": "16.0.2",
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)