Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Commit 63c9b49

Browse files
authored
Merge branch 'master' into master
2 parents 75a3191 + bb7aefd commit 63c9b49

File tree

120 files changed

+906
-1216
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

120 files changed

+906
-1216
lines changed

.circleci/config.yml

Lines changed: 3 additions & 35 deletions
Original file line numberDiff line numberDiff line change
@@ -14,23 +14,7 @@ jobs:
1414
- checkout:
1515
path: ~/project
1616

17-
- restore_cache:
18-
key: yarn-v1-{{ checksum "yarn.lock" }}-{{ arch }}
19-
20-
- restore_cache:
21-
key: node-v1-{{ checksum "package.json" }}-{{ arch }}
22-
23-
- run: yarn install
24-
25-
- save_cache:
26-
key: yarn-v1-{{ checksum "yarn.lock" }}-{{ arch }}
27-
paths:
28-
- ~/.cache/yarn
29-
30-
- save_cache:
31-
key: node-v1-{{ checksum "package.json" }}-{{ arch }}
32-
paths:
33-
- node_modules
17+
- run: yarn
3418

3519
- run:
3620
name: jest tests
@@ -59,24 +43,8 @@ jobs:
5943
- checkout:
6044
path: ~/project
6145

62-
- restore_cache:
63-
key: yarn-v1-{{ checksum "InstabugSample/yarn.lock" }}-{{ arch }}
64-
65-
- restore_cache:
66-
key: node-v1-{{ checksum "InstabugSample/package.json" }}-{{ arch }}
67-
6846
- run: cd InstabugSample && yarn install
6947

70-
- save_cache:
71-
key: yarn-v1-{{ checksum "InstabugSample/yarn.lock" }}-{{ arch }}
72-
paths:
73-
- ~/.cache/yarn
74-
75-
- save_cache:
76-
key: node-v1-{{ checksum "InstabugSample/package.json" }}-{{ arch }}
77-
paths:
78-
- InstabugSample/node_modules
79-
8048
- run:
8149
name: jest tests
8250
command: |
@@ -100,13 +68,13 @@ jobs:
10068
test_android:
10169
working_directory: ~/project/InstabugSample
10270
docker:
103-
- image: circleci/android:api-28-node
71+
- image: circleci/android@sha256:793ae9aa1777ba7fc375109978b307ed03a49be468295a8778d588eba0670e4b
10472
environment:
10573
JVM_OPTS: -Xmx3200m
10674
steps:
10775
- checkout:
10876
path: ~/project
109-
- run: yarn install
77+
- run: yarn
11078
- run:
11179
name: chmod permissions
11280
command: cd android && chmod +x ./gradlew

.github/pull_request_template.md

Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,15 @@
1+
## Description of the change
2+
> Description goes here
3+
## Type of change
4+
- [ ] Bug fix (non-breaking change that fixes an issue)
5+
- [ ] New feature (non-breaking change that adds functionality)
6+
- [ ] Breaking change (fix or feature that would cause existing functionality to not work as expected)
7+
## Related issues
8+
> Issue links go here
9+
## Checklists
10+
### Development
11+
- [ ] Lint rules pass locally
12+
- [ ] The code changed/added as part of this pull request has been covered with tests
13+
### Code review
14+
- [ ] This pull request has a descriptive title and information useful to a reviewer
15+
- [ ] Issue from task tracker has a link to this pull request

CHANGELOG.md

Lines changed: 29 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,31 @@
1+
## v9.1.10 (2020-12-02)
2+
3+
* Fixes a crash caused by the network logger when the object passed is too large
4+
* Adds source map upload script support for environment variables use inside Info.plist
5+
* Fixes a crash when using `getUserAttribute` on an attribute that does not exist
6+
* Fixes a crash when calling `setSdkDebugLogsLevel` on Android
7+
8+
## v9.1.9 (2020-10-01)
9+
10+
* Bumps Instabug native Android SDK to v9.1.8
11+
12+
## v9.1.8 (2020-09-16)
13+
14+
* Adds support for react-navigation v5
15+
* Adds support for the Azerbaijani locale
16+
* Bumps Instabug native SDKs to v9.1.7
17+
* Fixes an issue with `onReportSubmitHandler` on iOS
18+
19+
## v9.1.7 (2020-08-10)
20+
21+
* Fixes missing typescript definitions
22+
23+
## v9.1.6 (2020-07-16)
24+
25+
* Fixes an issue that caused XHR Response not to be logged.
26+
* Adds support for Repro Steps. Repro Steps list all of the actions an app user took before reporting a bug or crash, grouped by the screens they visited in your app.
27+
* Bump Native SDKs to v9.1.6
28+
129
## v9.1.1 (2020-04-06)
230

331
* Fixes an issue with the version name while uploading the sourcemap on Android.
@@ -46,6 +74,7 @@
4674
* Updates native iOS SDK to v8.7.2
4775
* Fixes `Warning: Require cycle` warnings.
4876

77+
4978
## v8.7.0 (2019-09-19)
5079

5180
* Updates native SDKs to v8.7

InstabugSample/__tests__/instabugUtils.spec.js

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,6 @@
33
* @lint-ignore-every XPLATJSCOPYRIGHT1
44
*/
55

6-
import 'react-native';
76
import { NativeModules, Platform } from 'react-native';
87
import '../../jest/mockInstabug';
98
import Instabug from 'instabug-reactnative';
@@ -77,4 +76,4 @@ describe('Test global error handler', () => {
7776
// });
7877

7978

80-
});
79+
});

InstabugSample/android/build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ buildscript {
1414
jcenter()
1515
}
1616
dependencies {
17-
classpath("com.android.tools.build:gradle:3.4.1")
17+
classpath('com.android.tools.build:gradle:3.6.0')
1818
classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:$kotlinVersion"
1919

2020
// NOTE: Do not place your application dependencies here; they belong
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
distributionBase=GRADLE_USER_HOME
22
distributionPath=wrapper/dists
3-
distributionUrl=https\://services.gradle.org/distributions/gradle-5.4.1-all.zip
3+
distributionUrl=https\://services.gradle.org/distributions/gradle-5.6.4-all.zip
44
zipStoreBase=GRADLE_USER_HOME
55
zipStorePath=wrapper/dists

InstabugSample/yarn.lock

Lines changed: 13 additions & 30 deletions
Original file line numberDiff line numberDiff line change
@@ -1560,7 +1560,7 @@ combined-stream@^1.0.6, combined-stream@~1.0.6:
15601560
dependencies:
15611561
delayed-stream "~1.0.0"
15621562

1563-
commander@^2.19.0, commander@~2.20.0:
1563+
commander@^2.19.0:
15641564
version "2.20.0"
15651565
resolved "https://registry.yarnpkg.com/commander/-/commander-2.20.0.tgz#d58bb2b5c1ee8f87b0d340027e9e94e222c5a422"
15661566

@@ -2561,12 +2561,13 @@ growly@^1.3.0:
25612561
resolved "https://registry.yarnpkg.com/growly/-/growly-1.3.0.tgz#f10748cbe76af964b7c96c93c6bcc28af120c081"
25622562

25632563
handlebars@^4.1.2:
2564-
version "4.1.2"
2565-
resolved "https://registry.yarnpkg.com/handlebars/-/handlebars-4.1.2.tgz#b6b37c1ced0306b221e094fc7aca3ec23b131b67"
2564+
version "4.7.6"
2565+
resolved "https://registry.yarnpkg.com/handlebars/-/handlebars-4.7.6.tgz#d4c05c1baf90e9945f77aa68a7a219aa4a7df74e"
25662566
dependencies:
2567+
minimist "^1.2.5"
25672568
neo-async "^2.6.0"
2568-
optimist "^0.6.1"
25692569
source-map "^0.6.1"
2570+
wordwrap "^1.0.0"
25702571
optionalDependencies:
25712572
uglify-js "^3.1.4"
25722573

@@ -2756,7 +2757,7 @@ inquirer@^6.4.1:
27562757
through "^2.3.6"
27572758

27582759
instabug-reactnative@../:
2759-
version "8.7.1"
2760+
version "9.1.7"
27602761

27612762
invariant@^2.2.4:
27622763
version "2.2.4"
@@ -3936,13 +3937,9 @@ [email protected]:
39363937
version "0.0.8"
39373938
resolved "https://registry.yarnpkg.com/minimist/-/minimist-0.0.8.tgz#857fcabfc3397d2625b8228262e86aa7a011b05d"
39383939

3939-
minimist@^1.1.1, minimist@^1.2.0:
3940-
version "1.2.0"
3941-
resolved "https://registry.yarnpkg.com/minimist/-/minimist-1.2.0.tgz#a35008b20f41383eec1fb914f4cd5df79a264284"
3942-
3943-
minimist@~0.0.1:
3944-
version "0.0.10"
3945-
resolved "https://registry.yarnpkg.com/minimist/-/minimist-0.0.10.tgz#de3f98543dbf96082be48ad1a0c7cda836301dcf"
3940+
minimist@^1.1.1, minimist@^1.2.0, minimist@^1.2.5:
3941+
version "1.2.5"
3942+
resolved "https://registry.yarnpkg.com/minimist/-/minimist-1.2.5.tgz#67d66014b66a6a8aaa0c083c5fd58df4e4e97602"
39463943

39473944
minipass@^2.2.1, minipass@^2.3.5:
39483945
version "2.5.0"
@@ -4049,8 +4046,8 @@ [email protected]:
40494046
resolved "https://registry.yarnpkg.com/negotiator/-/negotiator-0.6.2.tgz#feacf7ccf525a77ae9634436a64883ffeca346fb"
40504047

40514048
neo-async@^2.6.0:
4052-
version "2.6.1"
4053-
resolved "https://registry.yarnpkg.com/neo-async/-/neo-async-2.6.1.tgz#ac27ada66167fa8849a6addd837f6b189ad2081c"
4049+
version "2.6.2"
4050+
resolved "https://registry.yarnpkg.com/neo-async/-/neo-async-2.6.2.tgz#b4aafb93e3aeb2d8174ca53cf163ab7d7308305f"
40544051

40554052
nice-try@^1.0.4:
40564053
version "1.0.5"
@@ -4249,13 +4246,6 @@ open@^6.2.0:
42494246
dependencies:
42504247
is-wsl "^1.1.0"
42514248

4252-
optimist@^0.6.1:
4253-
version "0.6.1"
4254-
resolved "https://registry.yarnpkg.com/optimist/-/optimist-0.6.1.tgz#da3ea74686fa21a19a111c326e90eb15a0196686"
4255-
dependencies:
4256-
minimist "~0.0.1"
4257-
wordwrap "~0.0.2"
4258-
42594249
optionator@^0.8.1, optionator@^0.8.2:
42604250
version "0.8.2"
42614251
resolved "https://registry.yarnpkg.com/optionator/-/optionator-0.8.2.tgz#364c5e409d3f4d6301d6c0b4c05bba50180aeb64"
@@ -5553,11 +5543,8 @@ uglify-es@^3.1.9:
55535543
source-map "~0.6.1"
55545544

55555545
uglify-js@^3.1.4:
5556-
version "3.6.0"
5557-
resolved "https://registry.yarnpkg.com/uglify-js/-/uglify-js-3.6.0.tgz#704681345c53a8b2079fb6cec294b05ead242ff5"
5558-
dependencies:
5559-
commander "~2.20.0"
5560-
source-map "~0.6.1"
5546+
version "3.10.3"
5547+
resolved "https://registry.yarnpkg.com/uglify-js/-/uglify-js-3.10.3.tgz#f0d2f99736c14de46d2d24649ba328be3e71c3bf"
55615548

55625549
55635550
version "1.0.2"
@@ -5742,10 +5729,6 @@ wordwrap@^1.0.0, wordwrap@~1.0.0:
57425729
version "1.0.0"
57435730
resolved "https://registry.yarnpkg.com/wordwrap/-/wordwrap-1.0.0.tgz#27584810891456a4171c8d0226441ade90cbcaeb"
57445731

5745-
wordwrap@~0.0.2:
5746-
version "0.0.3"
5747-
resolved "https://registry.yarnpkg.com/wordwrap/-/wordwrap-0.0.3.tgz#a3d5da6cd5c0bc0008d37234bbaf1bed63059107"
5748-
57495732
wrap-ansi@^2.0.0:
57505733
version "2.1.0"
57515734
resolved "https://registry.yarnpkg.com/wrap-ansi/-/wrap-ansi-2.1.0.tgz#d8fc3d284dd05794fe84973caecdd1cf824fdd85"

0 commit comments

Comments
 (0)