Releases: danielpaulus/go-ios
Releases · danielpaulus/go-ios
v1.0.132
move initializing the buffered reader out of the loop (#440) having it inside the loop destroys the reader after every iteration and it may contain bytes at that point
v1.0.131
Added a buffered reader to dtx connections (#438) * Added a buffered reader to dtx connections * Simplified dtx decoder tests and added buffers to all readers in tests
v1.0.130
Rename argument (#426) Rename --enabletun to --userspace
v1.0.129
Use a userspace TUN device to enable running commands without sudo (#…
v1.0.128
remove screenshotr and fix screenshot service
v1.0.127
fix memory leaks (#424) * the defragmenter was not cleaned up completely after the last fragment * clone strings from the XCTAttachments object without cloning them the whole XCTAttachment and XCActivityRecord struct is being kept in memory
v1.0.126
ensure that the test listener channel gets closed only once the close call happens in multiple places and we can not be sure that only one of those methods is getting called during an execution
v1.0.125
This adds ios17+ support.
It fixes the image auto command so all you should need to do is:
- run sudo ios tunnel start
- use go-ios as normal
v1.0.124
move unzip util to ios.Utils, fix image auto command for 17+ (#420)
v1.0.123
send one packet at a time for the lockdown tunnel (#419) the TUN interface often returned an error when an incomplete IPv6 packet was sent (one IPv6 packet + parts of the next one) sending one packet at a time resolved this issue