appium-ios-remotexpc 0.5.1 → 0.5.2
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
CHANGED
|
@@ -1,3 +1,9 @@
|
|
|
1
|
+
## [0.5.2](https://github.com/appium/appium-ios-remotexpc/compare/v0.5.1...v0.5.2) (2025-10-04)
|
|
2
|
+
|
|
3
|
+
### Bug Fixes
|
|
4
|
+
|
|
5
|
+
* use binary plist for removeProfile profileIdentifier ([8848c03](https://github.com/appium/appium-ios-remotexpc/commit/8848c0327b1720c7680c9be60f83aeafde9f3c32))
|
|
6
|
+
|
|
1
7
|
## [0.5.1](https://github.com/appium/appium-ios-remotexpc/compare/v0.5.0...v0.5.1) (2025-10-04)
|
|
2
8
|
|
|
3
9
|
### Bug Fixes
|
|
@@ -133,7 +133,7 @@ class MobileConfigService extends BaseService {
|
|
|
133
133
|
};
|
|
134
134
|
const req = {
|
|
135
135
|
RequestType: 'RemoveProfile',
|
|
136
|
-
ProfileIdentifier: createPlist(payloadData),
|
|
136
|
+
ProfileIdentifier: createPlist(payloadData, true),
|
|
137
137
|
};
|
|
138
138
|
log.info(req);
|
|
139
139
|
await this._sendPlistAndReceive(req);
|
package/package.json
CHANGED