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
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "appium-ios-remotexpc",
3
- "version": "0.5.1",
3
+ "version": "0.5.2",
4
4
  "main": "build/src/index.js",
5
5
  "types": "build/src/index.d.ts",
6
6
  "type": "module",
@@ -159,7 +159,7 @@ class MobileConfigService
159
159
 
160
160
  const req = {
161
161
  RequestType: 'RemoveProfile',
162
- ProfileIdentifier: createPlist(payloadData),
162
+ ProfileIdentifier: createPlist(payloadData, true),
163
163
  };
164
164
 
165
165
  log.info(req);