@appium/logger 1.7.1 → 2.0.0-rc.1
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 +18 -0
- package/package.json +7 -6
package/CHANGELOG.md
CHANGED
|
@@ -3,6 +3,24 @@
|
|
|
3
3
|
All notable changes to this project will be documented in this file.
|
|
4
4
|
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
|
|
5
5
|
|
|
6
|
+
## [2.0.0-rc.1](https://github.com/appium/appium/compare/@appium/logger@1.6.1...@appium/logger@2.0.0-rc.1) (2025-08-14)
|
|
7
|
+
|
|
8
|
+
|
|
9
|
+
### ⚠ BREAKING CHANGES
|
|
10
|
+
|
|
11
|
+
* set minimum Node.js version to v20.19.0 (#21394)
|
|
12
|
+
|
|
13
|
+
### Bug Fixes
|
|
14
|
+
|
|
15
|
+
* **appium:** Return hostname as web socket url for BiDi if a broadcast address is assigned to the server ([#20603](https://github.com/appium/appium/issues/20603)) ([f0de55d](https://github.com/appium/appium/commit/f0de55da0da2fc0305876a948704c1f0a2a5990f))
|
|
16
|
+
|
|
17
|
+
|
|
18
|
+
### Miscellaneous Chores
|
|
19
|
+
|
|
20
|
+
* set minimum Node.js version to v20.19.0 ([#21394](https://github.com/appium/appium/issues/21394)) ([37e22c4](https://github.com/appium/appium/commit/37e22c4f9c9920cea3f340841ab1b7c60e3147e9))
|
|
21
|
+
|
|
22
|
+
|
|
23
|
+
|
|
6
24
|
## [1.7.1](https://github.com/appium/appium/compare/@appium/logger@1.7.0...@appium/logger@1.7.1) (2025-06-01)
|
|
7
25
|
|
|
8
26
|
**Note:** Version bump only for package @appium/logger
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@appium/logger",
|
|
3
|
-
"version": "
|
|
3
|
+
"version": "2.0.0-rc.1",
|
|
4
4
|
"author": "https://github.com/appium",
|
|
5
5
|
"description": "A Universal Logger For The Appium Ecosystem",
|
|
6
6
|
"repository": {
|
|
@@ -29,22 +29,23 @@
|
|
|
29
29
|
"dependencies": {
|
|
30
30
|
"console-control-strings": "1.1.0",
|
|
31
31
|
"lodash": "4.17.21",
|
|
32
|
-
"lru-cache": "
|
|
32
|
+
"lru-cache": "11.1.0",
|
|
33
33
|
"set-blocking": "2.0.0"
|
|
34
34
|
},
|
|
35
35
|
"license": "ISC",
|
|
36
36
|
"engines": {
|
|
37
|
-
"node": "^
|
|
38
|
-
"npm": ">=
|
|
37
|
+
"node": "^20.19.0 || ^22.12.0 || >=24.0.0",
|
|
38
|
+
"npm": ">=10"
|
|
39
39
|
},
|
|
40
40
|
"bugs": {
|
|
41
41
|
"url": "https://github.com/appium/appium/issues"
|
|
42
42
|
},
|
|
43
43
|
"homepage": "https://appium.io",
|
|
44
44
|
"publishConfig": {
|
|
45
|
-
"access": "public"
|
|
45
|
+
"access": "public",
|
|
46
|
+
"tag": "rc"
|
|
46
47
|
},
|
|
47
|
-
"gitHead": "
|
|
48
|
+
"gitHead": "157425ce6aa01c009533f5bf6a56b14570222b00",
|
|
48
49
|
"keywords": [
|
|
49
50
|
"automation",
|
|
50
51
|
"javascript",
|