Releases: danielpaulus/go-ios
Releases · danielpaulus/go-ios
v1.0.148
Support app install and uninstall (#496) * support uninstall * adding swagger doc for uninstall * adding install ednpoint * make install endpoint os independent --------- Co-authored-by: danielpaulus <[email protected]>
v1.0.147
allow passing args and envs to app launch (#498) * allow passing args and envs to app launch * add integration test
v1.0.146
fixes TestXcuiTest after #464 was merged (#476) Co-authored-by: dmissmann <[email protected]>
v1.0.145
fix restapi (#490) * fix restapi by upgrading swag, fixing the workspace and replacing screenshottr * Close ScreenshotService Co-authored-by: dmissmann <[email protected]> --------- Co-authored-by: dmissmann <[email protected]>
v1.0.144
add missing conn.Close for imagemounter #483 Co-authored-by: 孙圣翔²⁰₂₁ <[email protected]>
v1.0.143
fix: add back the "image unmount" command removed by mistake (#470)
v1.0.142
fix: avoid panic due to sending on closed channel (#455) the channel is not closed anymore and before sending results on the channel, we check if the context hasn't terminated yet Co-authored-by: dmissmann <[email protected]>
v1.0.141
add userspace port option (#451) * When trying to run a command while manually supplying `rsd-port` and `address` and using userspace tunnels, also the userspace tunnel port has to be supplied or it doesn't work Thanks Nikola!
v1.0.140
Add Support for XCTest (#464) Provide the ability to run an XCTEST by passing the flag --xctest to ios runtest Test the ability to run a XCUITEST on a Real Device Test the ability to run a XCTEST on a Real Device by the default, if the flag --xctest is not provided we will run XCUITEST. so to be able to run an XCTEST we need the flag to be present. Thanks bahrimootaz! --------- Co-authored-by: David Missmann <[email protected]>
v1.0.139
Automatically connect to os TUN device without constructing a device …