appium-ios-remotexpc 5.10.1 → 5.11.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 +6 -0
- package/README.md +14 -1
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -1,3 +1,9 @@
|
|
|
1
|
+
## [5.11.0](https://github.com/appium/appium-ios-remotexpc/compare/v5.10.1...v5.11.0) (2026-07-10)
|
|
2
|
+
|
|
3
|
+
### Features
|
|
4
|
+
|
|
5
|
+
* Add codegraph ([#271](https://github.com/appium/appium-ios-remotexpc/issues/271)) ([25045d0](https://github.com/appium/appium-ios-remotexpc/commit/25045d068e6842b3b9b05cd9e79b9d114ea5fa77))
|
|
6
|
+
|
|
1
7
|
## [5.10.1](https://github.com/appium/appium-ios-remotexpc/compare/v5.10.0...v5.10.1) (2026-07-08)
|
|
2
8
|
|
|
3
9
|
### Bug Fixes
|
package/README.md
CHANGED
|
@@ -22,9 +22,22 @@ This library provides functionality for:
|
|
|
22
22
|
npm install appium-ios-remotexpc
|
|
23
23
|
```
|
|
24
24
|
|
|
25
|
+
### Optional: CodeGraph for local code navigation
|
|
26
|
+
|
|
27
|
+
If you want a local semantic index for this repository, you can install [CodeGraph](https://github.com/colbymchenry/codegraph) locally and initialize it in the repo:
|
|
28
|
+
|
|
29
|
+
```bash
|
|
30
|
+
curl -fsSL https://raw.githubusercontent.com/colbymchenry/codegraph/main/install.sh | sh
|
|
31
|
+
cd "<project folder>"
|
|
32
|
+
codegraph install
|
|
33
|
+
codegraph init
|
|
34
|
+
```
|
|
35
|
+
|
|
36
|
+
CodeGraph builds a local knowledge graph of symbols and call paths so AI coding agents, like Cursor or Claude, can answer questions and navigate the codebase faster with fewer file reads and reduced token consumption.
|
|
37
|
+
|
|
25
38
|
## Requirements
|
|
26
39
|
|
|
27
|
-
- Node.js
|
|
40
|
+
- Node.js 20 or later
|
|
28
41
|
- iOS device for testing
|
|
29
42
|
- Proper device pairing and trust setup
|
|
30
43
|
- Root/sudo privileges for tunnel creation (TUN/TAP interface requires elevated permissions)
|