hypertrack-sdk-react-native 11.0.1 → 11.0.3
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/CHANGELOG.md +19 -2
- package/LICENSE +1 -3
- package/README.md +5 -4
- package/android/gradle.properties +1 -4
- package/hypertrack-sdk-react-native.podspec +1 -1
- package/package.json +156 -156
package/CHANGELOG.md
CHANGED
|
@@ -3,6 +3,19 @@
|
|
|
3
3
|
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
|
|
4
4
|
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
|
|
5
5
|
|
|
6
|
+
## [11.0.3] - 2023-10-04
|
|
7
|
+
|
|
8
|
+
### Changed
|
|
9
|
+
|
|
10
|
+
- Updated HyperTrack Android SDK to [7.0.4](https://github.com/hypertrack/sdk-android/releases/tag/7.0.4)
|
|
11
|
+
|
|
12
|
+
## [11.0.2] - 2023-09-28
|
|
13
|
+
|
|
14
|
+
### Changed
|
|
15
|
+
|
|
16
|
+
- Updated HyperTrack Android SDK to [7.0.3](https://github.com/hypertrack/sdk-android/releases/tag/7.0.3)
|
|
17
|
+
- Updated HyperTrack iOS SDK to [5.0.2](https://github.com/hypertrack/sdk-ios/releases/tag/5.0.2)
|
|
18
|
+
|
|
6
19
|
## [11.0.1] - 2023-09-20
|
|
7
20
|
|
|
8
21
|
### Fixed
|
|
@@ -24,9 +37,9 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
|
|
|
24
37
|
|
|
25
38
|
### Changed
|
|
26
39
|
|
|
27
|
-
- Updated HyperTrack Android SDK to 7.0.1
|
|
40
|
+
- Updated HyperTrack Android SDK to [7.0.1](https://github.com/hypertrack/sdk-android/releases/tag/7.0.1)
|
|
28
41
|
- Add Android SDK plugins (`location-services-google-19-0-1` and `push-service-firebase`)
|
|
29
|
-
- Updated HyperTrack iOS SDK to 5.0.1
|
|
42
|
+
- Updated HyperTrack iOS SDK to [5.0.1](https://github.com/hypertrack/sdk-ios/releases/tag/5.0.2)
|
|
30
43
|
- The whole HyperTrack API is now static
|
|
31
44
|
- Changed the way to provide publishableKey (you need to add `HyperTrackPublishableKey` `meta-data` item to your `AndroidManifest.xml`)
|
|
32
45
|
- Renamed HyperTrackError types:
|
|
@@ -586,6 +599,10 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
|
|
|
586
599
|
|
|
587
600
|
Initial release.
|
|
588
601
|
|
|
602
|
+
[11.0.3]: https://github.com/hypertrack/sdk-react-native/releases/tag/11.0.3
|
|
603
|
+
[11.0.2]: https://github.com/hypertrack/sdk-react-native/releases/tag/11.0.2
|
|
604
|
+
[11.0.1]: https://github.com/hypertrack/sdk-react-native/releases/tag/11.0.1
|
|
605
|
+
[11.0.0]: https://github.com/hypertrack/sdk-react-native/releases/tag/11.0.0
|
|
589
606
|
[10.0.3]: https://github.com/hypertrack/sdk-react-native/releases/tag/10.0.3
|
|
590
607
|
[10.0.2]: https://github.com/hypertrack/sdk-react-native/releases/tag/10.0.2
|
|
591
608
|
[10.0.1]: https://github.com/hypertrack/sdk-react-native/releases/tag/10.0.1
|
package/LICENSE
CHANGED
package/README.md
CHANGED
|
@@ -1,9 +1,9 @@
|
|
|
1
1
|
# React Native HyperTrack SDK
|
|
2
2
|
|
|
3
|
-

|
|
5
|
-
](./LICENSE)
|
|
4
|
+
[](https://www.npmjs.com/package/hypertrack-sdk-react-native)
|
|
5
|
+
[](https://github.com/hypertrack/sdk-ios)
|
|
6
|
+
[](https://github.com/hypertrack/sdk-android)
|
|
7
7
|
|
|
8
8
|
[HyperTrack](https://www.hypertrack.com) lets you add live location tracking to your mobile app. Live location is made available along with ongoing activity, tracking controls and tracking outage with reasons.
|
|
9
9
|
|
|
@@ -29,6 +29,7 @@ For information about how to get started with React Native HyperTrack SDK, pleas
|
|
|
29
29
|
|
|
30
30
|
- Gradle version 6.7.1+
|
|
31
31
|
- compileSdkVersion 31+
|
|
32
|
+
- minSdkVersion 19+
|
|
32
33
|
|
|
33
34
|
### iOS
|
|
34
35
|
|
|
@@ -18,7 +18,7 @@ Pod::Spec.new do |s|
|
|
|
18
18
|
s.source_files = "ios/**/*.{h,m,mm,swift}"
|
|
19
19
|
|
|
20
20
|
s.dependency "React-Core"
|
|
21
|
-
s.dependency 'HyperTrack', '5.0.
|
|
21
|
+
s.dependency 'HyperTrack', '5.0.2'
|
|
22
22
|
|
|
23
23
|
# Don't install the dependencies when we run `pod install` in the old architecture.
|
|
24
24
|
if ENV['RCT_NEW_ARCH_ENABLED'] == '1' then
|
package/package.json
CHANGED
|
@@ -1,163 +1,163 @@
|
|
|
1
1
|
{
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
|
|
31
|
-
|
|
32
|
-
|
|
33
|
-
|
|
34
|
-
|
|
35
|
-
|
|
36
|
-
|
|
37
|
-
|
|
38
|
-
|
|
39
|
-
|
|
40
|
-
|
|
41
|
-
|
|
42
|
-
|
|
43
|
-
|
|
44
|
-
|
|
45
|
-
|
|
46
|
-
|
|
47
|
-
|
|
48
|
-
|
|
49
|
-
|
|
50
|
-
|
|
51
|
-
|
|
52
|
-
|
|
53
|
-
|
|
2
|
+
"name": "hypertrack-sdk-react-native",
|
|
3
|
+
"version": "11.0.3",
|
|
4
|
+
"description": "React Native HyperTrack SDK is a wrapper around native iOS and Android SDKs that allows to integrate HyperTrack into React Native apps.",
|
|
5
|
+
"main": "lib/commonjs/index",
|
|
6
|
+
"module": "lib/module/index",
|
|
7
|
+
"types": "lib/typescript/index.d.ts",
|
|
8
|
+
"react-native": "src/index",
|
|
9
|
+
"source": "src/index",
|
|
10
|
+
"files": [
|
|
11
|
+
"src",
|
|
12
|
+
"lib",
|
|
13
|
+
"android",
|
|
14
|
+
"ios",
|
|
15
|
+
"cpp",
|
|
16
|
+
"hypertrack-sdk-react-native.podspec",
|
|
17
|
+
"LICENSE.txt",
|
|
18
|
+
"README.md",
|
|
19
|
+
"CHANGELOG.md",
|
|
20
|
+
"CONTRIBUTING.md",
|
|
21
|
+
"!lib/typescript/example",
|
|
22
|
+
"!android/build",
|
|
23
|
+
"!ios/build",
|
|
24
|
+
"!**/__tests__",
|
|
25
|
+
"!**/__fixtures__",
|
|
26
|
+
"!**/__mocks__"
|
|
27
|
+
],
|
|
28
|
+
"scripts": {
|
|
29
|
+
"test": "jest",
|
|
30
|
+
"typescript": "tsc --noEmit",
|
|
31
|
+
"lint": "eslint \"**/*.{js,ts,tsx}\"",
|
|
32
|
+
"prepare": "bob build",
|
|
33
|
+
"release": "release-it",
|
|
34
|
+
"docs": "typedoc --options typedoc.json",
|
|
35
|
+
"bootstrap": "yarn && yarn docs"
|
|
36
|
+
},
|
|
37
|
+
"keywords": [
|
|
38
|
+
"react-native",
|
|
39
|
+
"ios",
|
|
40
|
+
"android",
|
|
41
|
+
"hypertrack",
|
|
42
|
+
"location",
|
|
43
|
+
"tracking"
|
|
44
|
+
],
|
|
45
|
+
"repository": "https://github.com/hypertrack/sdk-react-native",
|
|
46
|
+
"author": "HyperTrack <help@hypertrack.com> (https://hypertrack.com)",
|
|
47
|
+
"license": "MIT",
|
|
48
|
+
"bugs": {
|
|
49
|
+
"url": "https://github.com/hypertrack/sdk-react-native/issues"
|
|
50
|
+
},
|
|
51
|
+
"homepage": "https://github.com/hypertrack/sdk-react-native#readme",
|
|
52
|
+
"publishConfig": {
|
|
53
|
+
"registry": "https://registry.npmjs.org/"
|
|
54
|
+
},
|
|
55
|
+
"devDependencies": {
|
|
56
|
+
"@babel/eslint-parser": "^7.18.2",
|
|
57
|
+
"@commitlint/config-conventional": "^17.0.2",
|
|
58
|
+
"@react-native-community/eslint-config": "^3.0.2",
|
|
59
|
+
"@release-it/bumper": "^4.0.0",
|
|
60
|
+
"@release-it/conventional-changelog": "^5.1.0",
|
|
61
|
+
"@types/jest": "^28.1.2",
|
|
62
|
+
"@types/react": "~17.0.21",
|
|
63
|
+
"@types/react-native": "0.68.0",
|
|
64
|
+
"@typescript-eslint/parser": "^5.30.5",
|
|
65
|
+
"auto-changelog": "^2.4.0",
|
|
66
|
+
"commitlint": "^17.0.2",
|
|
67
|
+
"eslint": "^8.4.1",
|
|
68
|
+
"eslint-config-prettier": "^8.5.0",
|
|
69
|
+
"eslint-plugin-prettier": "^4.0.0",
|
|
70
|
+
"jest": "^28.1.1",
|
|
71
|
+
"pod-install": "^0.1.0",
|
|
72
|
+
"prettier": "^2.0.5",
|
|
73
|
+
"react": "^18.0.0",
|
|
74
|
+
"react-native": "^0.70.0",
|
|
75
|
+
"react-native-builder-bob": "^0.18.3",
|
|
76
|
+
"release-it": "^15.4.1",
|
|
77
|
+
"typedoc": "^0.23.14",
|
|
78
|
+
"typedoc-plugin-merge-modules": "^4.0.0",
|
|
79
|
+
"typedoc-plugin-rename-defaults": "^0.6.1",
|
|
80
|
+
"typescript": "^4.5.2"
|
|
81
|
+
},
|
|
82
|
+
"resolutions": {
|
|
83
|
+
"@types/react": "17.0.21"
|
|
84
|
+
},
|
|
85
|
+
"peerDependencies": {
|
|
86
|
+
"react": "*",
|
|
87
|
+
"react-native": "*"
|
|
88
|
+
},
|
|
89
|
+
"jest": {
|
|
90
|
+
"preset": "react-native",
|
|
91
|
+
"modulePathIgnorePatterns": [
|
|
92
|
+
"<rootDir>/lib/"
|
|
93
|
+
]
|
|
94
|
+
},
|
|
95
|
+
"commitlint": {
|
|
96
|
+
"extends": [
|
|
97
|
+
"@commitlint/config-conventional"
|
|
98
|
+
]
|
|
99
|
+
},
|
|
100
|
+
"release-it": {
|
|
101
|
+
"git": {
|
|
102
|
+
"changelog": "auto-changelog --stdout --commit-limit false --unreleased --template https://raw.githubusercontent.com/release-it/release-it/master/templates/changelog-compact.hbs",
|
|
103
|
+
"commitMessage": "Release ${version}",
|
|
104
|
+
"requireCleanWorkingDir": false,
|
|
105
|
+
"tagName": "${version}",
|
|
106
|
+
"requireCommits": true
|
|
54
107
|
},
|
|
55
|
-
"
|
|
56
|
-
|
|
57
|
-
"@commitlint/config-conventional": "^17.0.2",
|
|
58
|
-
"@react-native-community/eslint-config": "^3.0.2",
|
|
59
|
-
"@release-it/bumper": "^4.0.0",
|
|
60
|
-
"@release-it/conventional-changelog": "^5.1.0",
|
|
61
|
-
"@types/jest": "^28.1.2",
|
|
62
|
-
"@types/react": "~17.0.21",
|
|
63
|
-
"@types/react-native": "0.68.0",
|
|
64
|
-
"@typescript-eslint/parser": "^5.30.5",
|
|
65
|
-
"auto-changelog": "^2.4.0",
|
|
66
|
-
"commitlint": "^17.0.2",
|
|
67
|
-
"eslint": "^8.4.1",
|
|
68
|
-
"eslint-config-prettier": "^8.5.0",
|
|
69
|
-
"eslint-plugin-prettier": "^4.0.0",
|
|
70
|
-
"jest": "^28.1.1",
|
|
71
|
-
"pod-install": "^0.1.0",
|
|
72
|
-
"prettier": "^2.0.5",
|
|
73
|
-
"react": "^18.0.0",
|
|
74
|
-
"react-native": "^0.70.0",
|
|
75
|
-
"react-native-builder-bob": "^0.18.3",
|
|
76
|
-
"release-it": "^15.4.1",
|
|
77
|
-
"typedoc": "^0.23.14",
|
|
78
|
-
"typedoc-plugin-merge-modules": "^4.0.0",
|
|
79
|
-
"typedoc-plugin-rename-defaults": "^0.6.1",
|
|
80
|
-
"typescript": "^4.5.2"
|
|
108
|
+
"github": {
|
|
109
|
+
"release": true
|
|
81
110
|
},
|
|
82
|
-
"
|
|
83
|
-
|
|
111
|
+
"hooks": {
|
|
112
|
+
"after:bump": "auto-changelog --package --commit-limit false --template https://raw.githubusercontent.com/release-it/release-it/master/templates/keepachangelog.hbs"
|
|
84
113
|
},
|
|
85
|
-
"
|
|
86
|
-
|
|
87
|
-
|
|
88
|
-
|
|
89
|
-
|
|
90
|
-
|
|
91
|
-
|
|
92
|
-
|
|
93
|
-
|
|
94
|
-
|
|
95
|
-
"commitlint": {
|
|
96
|
-
"extends": [
|
|
97
|
-
"@commitlint/config-conventional"
|
|
98
|
-
]
|
|
99
|
-
},
|
|
100
|
-
"release-it": {
|
|
101
|
-
"git": {
|
|
102
|
-
"changelog": "auto-changelog --stdout --commit-limit false --unreleased --template https://raw.githubusercontent.com/release-it/release-it/master/templates/changelog-compact.hbs",
|
|
103
|
-
"commitMessage": "Release ${version}",
|
|
104
|
-
"requireCleanWorkingDir": false,
|
|
105
|
-
"tagName": "${version}",
|
|
106
|
-
"requireCommits": true
|
|
107
|
-
},
|
|
108
|
-
"github": {
|
|
109
|
-
"release": true
|
|
110
|
-
},
|
|
111
|
-
"hooks": {
|
|
112
|
-
"after:bump": "auto-changelog --package --commit-limit false --template https://raw.githubusercontent.com/release-it/release-it/master/templates/keepachangelog.hbs"
|
|
113
|
-
},
|
|
114
|
-
"npm": {
|
|
115
|
-
"publish": true
|
|
116
|
-
}
|
|
117
|
-
},
|
|
118
|
-
"eslintConfig": {
|
|
119
|
-
"root": true,
|
|
120
|
-
"parser": "@typescript-eslint/parser",
|
|
121
|
-
"extends": [
|
|
122
|
-
"@react-native-community",
|
|
123
|
-
"prettier"
|
|
124
|
-
],
|
|
125
|
-
"rules": {
|
|
126
|
-
"prettier/prettier": [
|
|
127
|
-
"error",
|
|
128
|
-
{
|
|
129
|
-
"quoteProps": "consistent",
|
|
130
|
-
"singleQuote": true,
|
|
131
|
-
"tabWidth": 2,
|
|
132
|
-
"trailingComma": "es5",
|
|
133
|
-
"useTabs": false
|
|
134
|
-
}
|
|
135
|
-
]
|
|
136
|
-
}
|
|
137
|
-
},
|
|
138
|
-
"eslintIgnore": [
|
|
139
|
-
"node_modules/",
|
|
140
|
-
"lib/"
|
|
114
|
+
"npm": {
|
|
115
|
+
"publish": true
|
|
116
|
+
}
|
|
117
|
+
},
|
|
118
|
+
"eslintConfig": {
|
|
119
|
+
"root": true,
|
|
120
|
+
"parser": "@typescript-eslint/parser",
|
|
121
|
+
"extends": [
|
|
122
|
+
"@react-native-community",
|
|
123
|
+
"prettier"
|
|
141
124
|
],
|
|
142
|
-
"
|
|
143
|
-
|
|
144
|
-
"
|
|
145
|
-
|
|
146
|
-
|
|
147
|
-
|
|
148
|
-
|
|
149
|
-
|
|
150
|
-
|
|
151
|
-
|
|
152
|
-
|
|
153
|
-
"commonjs",
|
|
154
|
-
"module",
|
|
155
|
-
[
|
|
156
|
-
"typescript",
|
|
157
|
-
{
|
|
158
|
-
"project": "tsconfig.build.json"
|
|
159
|
-
}
|
|
160
|
-
]
|
|
161
|
-
]
|
|
125
|
+
"rules": {
|
|
126
|
+
"prettier/prettier": [
|
|
127
|
+
"error",
|
|
128
|
+
{
|
|
129
|
+
"quoteProps": "consistent",
|
|
130
|
+
"singleQuote": true,
|
|
131
|
+
"tabWidth": 2,
|
|
132
|
+
"trailingComma": "es5",
|
|
133
|
+
"useTabs": false
|
|
134
|
+
}
|
|
135
|
+
]
|
|
162
136
|
}
|
|
137
|
+
},
|
|
138
|
+
"eslintIgnore": [
|
|
139
|
+
"node_modules/",
|
|
140
|
+
"lib/"
|
|
141
|
+
],
|
|
142
|
+
"prettier": {
|
|
143
|
+
"quoteProps": "consistent",
|
|
144
|
+
"singleQuote": true,
|
|
145
|
+
"tabWidth": 2,
|
|
146
|
+
"trailingComma": "es5",
|
|
147
|
+
"useTabs": false
|
|
148
|
+
},
|
|
149
|
+
"react-native-builder-bob": {
|
|
150
|
+
"source": "src",
|
|
151
|
+
"output": "lib",
|
|
152
|
+
"targets": [
|
|
153
|
+
"commonjs",
|
|
154
|
+
"module",
|
|
155
|
+
[
|
|
156
|
+
"typescript",
|
|
157
|
+
{
|
|
158
|
+
"project": "tsconfig.build.json"
|
|
159
|
+
}
|
|
160
|
+
]
|
|
161
|
+
]
|
|
162
|
+
}
|
|
163
163
|
}
|