node-simctl 8.2.6 → 8.2.8

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.
Files changed (2) hide show
  1. package/CHANGELOG.md +12 -0
  2. package/package.json +4 -7
package/CHANGELOG.md CHANGED
@@ -1,3 +1,15 @@
1
+ ## [8.2.8](https://github.com/appium/node-simctl/compare/v8.2.7...v8.2.8) (2026-07-05)
2
+
3
+ ### Miscellaneous Chores
4
+
5
+ * Drop mocha ([#305](https://github.com/appium/node-simctl/issues/305)) ([42eff0e](https://github.com/appium/node-simctl/commit/42eff0e5319f1972798aac842579b48c93e8fffc))
6
+
7
+ ## [8.2.7](https://github.com/appium/node-simctl/compare/v8.2.6...v8.2.7) (2026-07-01)
8
+
9
+ ### Miscellaneous Chores
10
+
11
+ * downgrade conventional-changelog-conventionalcommits to v9 ([#303](https://github.com/appium/node-simctl/issues/303)) ([22f17da](https://github.com/appium/node-simctl/commit/22f17daf18416219ca4c47fd4d176a9d9eb2e1dc))
12
+
1
13
  ## [8.2.6](https://github.com/appium/node-simctl/compare/v8.2.5...v8.2.6) (2026-07-01)
2
14
 
3
15
  ## [8.2.5](https://github.com/appium/node-simctl/compare/v8.2.4...v8.2.5) (2026-06-29)
package/package.json CHANGED
@@ -6,7 +6,7 @@
6
6
  "ios",
7
7
  "simctl"
8
8
  ],
9
- "version": "8.2.6",
9
+ "version": "8.2.8",
10
10
  "author": "Appium Contributors",
11
11
  "license": "Apache-2.0",
12
12
  "repository": {
@@ -48,8 +48,8 @@
48
48
  "format": "prettier -w ./lib ./test",
49
49
  "format:check": "prettier --check ./lib ./test",
50
50
  "prepare": "npm run build",
51
- "test": "mocha --exit --timeout 1m \"./test/unit/**/*-specs.ts\"",
52
- "e2e-test": "mocha --exit --timeout 5m \"./test/e2e/**/*-specs.ts\""
51
+ "test": "node --test --test-timeout=60000 \"./build/test/unit/**/*.spec.js\"",
52
+ "e2e-test": "node --test --test-force-exit --test-concurrency=1 --test-timeout=300000 \"./build/test/e2e/**/*.spec.js\""
53
53
  },
54
54
  "prettier": {
55
55
  "bracketSpacing": false,
@@ -64,7 +64,6 @@
64
64
  "@semantic-release/git": "^10.0.1",
65
65
  "@types/chai": "^5.2.3",
66
66
  "@types/chai-as-promised": "^8.0.2",
67
- "@types/mocha": "^10.0.1",
68
67
  "@types/node": "^26.0.0",
69
68
  "@types/semver": "^7.7.1",
70
69
  "@types/sinon": "^22.0.0",
@@ -72,12 +71,10 @@
72
71
  "appium-xcode": "^6.0.0",
73
72
  "chai": "^6.0.0",
74
73
  "chai-as-promised": "^8.0.0",
75
- "conventional-changelog-conventionalcommits": "^10.2.0",
76
- "mocha": "^11.0.1",
74
+ "conventional-changelog-conventionalcommits": "^9.3.1",
77
75
  "prettier": "^3.0.0",
78
76
  "semantic-release": "^25.0.2",
79
77
  "sinon": "^22.0.0",
80
- "ts-node": "^10.9.1",
81
78
  "typescript": "^6.0.2"
82
79
  },
83
80
  "types": "./build/lib/index.d.ts"