Skip to content

Releases: danielpaulus/go-ios

v1.0.142

21 Aug 08:51
682b4f4
Compare
Choose a tag to compare
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

20 Aug 21:24
4ba4207
Compare
Choose a tag to compare
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

20 Aug 21:18
89cbe52
Compare
Choose a tag to compare
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

20 Aug 10:47
bc47af1
Compare
Choose a tag to compare
Automatically connect to os TUN device without constructing a device …

v1.0.138

19 Aug 22:16
d8bb278
Compare
Choose a tag to compare
New release (#468)

A new release with the following changes:
- ios image unmount to remove developer images
- ios rsd ls for listing RSD services on ios17+
- adds a public method for removing a tunnel based on the serial number, basically bringing the recent /tunnel DELETE HTTP endpoint addition for use directly from go code importing go-iOS.
- ios runwda .. [--log-output=<file>] is now able to log to a file
- numerous fixes for unexpected panics
Big thanks to nicolasbouffard!

v1.0.137

19 Aug 21:20
c2832f0
Compare
Choose a tag to compare
feat: allow unmounting disk images (#454)

New command to remove developer disk images
- ios image unmount

v1.0.136

18 Aug 21:14
27ad5e0
Compare
Choose a tag to compare
Fix proxy for image auto (#466)

* add tests for proxy use and fix tss.go to use the default transports proxy
Image Auto will respect proxy settings now

v1.0.135

05 Aug 20:02
5403671
Compare
Choose a tag to compare
fix: launch app with options (#445)

Adds launch options to ios launch
Co-authored-by: sam80180 <[email protected]>

v1.0.134

03 Aug 19:21
7cc64c8
Compare
Choose a tag to compare
fix version comparison (#446)

Fixes a bug that made iOS18 use the old tunnel and fail.

v1.0.133

02 Aug 08:11
ca42376
Compare
Choose a tag to compare
set an error on the test run when we lose DTX connectivity (#441)

* set an error on the test run when we lose DTX connectivity

in most coses this is due to the test runner crashing (or it can also be closed
manually through the UI)

* use errors.Is for comparison