io.appium.settings 5.14.15 → 6.0.0
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 +11 -0
- package/apks/settings_apk-debug.apk +0 -0
- package/package.json +10 -10
package/CHANGELOG.md
CHANGED
|
@@ -1,3 +1,14 @@
|
|
|
1
|
+
## [6.0.0](https://github.com/appium/io.appium.settings/compare/v5.14.15...v6.0.0) (2025-08-16)
|
|
2
|
+
|
|
3
|
+
### ⚠ BREAKING CHANGES
|
|
4
|
+
|
|
5
|
+
* Required Node.js version has been bumped to ^20.19.0 || ^22.12.0 || >=24.0.0
|
|
6
|
+
* Required npm version has been bumped to >=10
|
|
7
|
+
|
|
8
|
+
### Features
|
|
9
|
+
|
|
10
|
+
* Bump Node.js version ([#232](https://github.com/appium/io.appium.settings/issues/232)) ([e818433](https://github.com/appium/io.appium.settings/commit/e818433ea7ecd8c902f64d71a468fd5f127fa9c0))
|
|
11
|
+
|
|
1
12
|
## [5.14.15](https://github.com/appium/io.appium.settings/compare/v5.14.14...v5.14.15) (2025-08-01)
|
|
2
13
|
|
|
3
14
|
### Miscellaneous Chores
|
|
Binary file
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "io.appium.settings",
|
|
3
|
-
"version": "
|
|
3
|
+
"version": "6.0.0",
|
|
4
4
|
"description": "App for dealing with Android settings",
|
|
5
5
|
"main": "./build/lib/index.js",
|
|
6
6
|
"types": "./build/lib/index.d.ts",
|
|
@@ -21,8 +21,8 @@
|
|
|
21
21
|
"url": "https://github.com/appium/io.appium.settings.git"
|
|
22
22
|
},
|
|
23
23
|
"engines": {
|
|
24
|
-
"node": ">=
|
|
25
|
-
"npm": ">=
|
|
24
|
+
"node": "^20.19.0 || ^22.12.0 || >=24.0.0",
|
|
25
|
+
"npm": ">=10"
|
|
26
26
|
},
|
|
27
27
|
"keywords": [
|
|
28
28
|
"appium",
|
|
@@ -44,26 +44,26 @@
|
|
|
44
44
|
},
|
|
45
45
|
"homepage": "https://github.com/appium/io.appium.settings",
|
|
46
46
|
"dependencies": {
|
|
47
|
-
"@appium/logger": "^
|
|
47
|
+
"@appium/logger": "^2.0.0-rc.1",
|
|
48
48
|
"asyncbox": "^3.0.0",
|
|
49
49
|
"bluebird": "^3.5.1",
|
|
50
50
|
"lodash": "^4.2.1",
|
|
51
51
|
"semver": "^7.5.4",
|
|
52
52
|
"source-map-support": "^0.x",
|
|
53
|
-
"teen_process": "^
|
|
53
|
+
"teen_process": "^3.0.0"
|
|
54
54
|
},
|
|
55
55
|
"devDependencies": {
|
|
56
|
-
"@appium/
|
|
57
|
-
"@appium/
|
|
58
|
-
"@appium/tsconfig": "^0.
|
|
59
|
-
"@appium/types": "^0.
|
|
56
|
+
"@appium/eslint-config-appium-ts": "^2.0.0-rc.1",
|
|
57
|
+
"@appium/test-support": "^4.0.0-rc.1",
|
|
58
|
+
"@appium/tsconfig": "^1.0.0-rc.1",
|
|
59
|
+
"@appium/types": "^1.0.0-rc.1",
|
|
60
60
|
"@semantic-release/changelog": "^6.0.1",
|
|
61
61
|
"@semantic-release/git": "^10.0.1",
|
|
62
62
|
"@types/bluebird": "^3.5.38",
|
|
63
63
|
"@types/lodash": "^4.14.196",
|
|
64
64
|
"@types/node": "^24.0.0",
|
|
65
65
|
"@types/teen_process": "^2.0.2",
|
|
66
|
-
"appium-adb": "^
|
|
66
|
+
"appium-adb": "^13.0.0",
|
|
67
67
|
"chai": "^5.1.1",
|
|
68
68
|
"chai-as-promised": "^8.0.0",
|
|
69
69
|
"conventional-changelog-conventionalcommits": "^9.0.0",
|