Releases: danielpaulus/go-ios
Releases · danielpaulus/go-ios
v1.0.105
Fix npm release for latest versions (#241) Co-authored-by: Daniel Paulus <[email protected]>
v1.0.104
Add 15.7 (#238) * Add 15.7 developer image ./go-ios image auto {"level":"info","msg":"no udid specified using first device in list","time":"2023-02-26T18:17:22-08:00","udid":"redacted"} {"level":"info","msg":"device iOS version: 15.7.2, getting developer image for iOS 15.7","time":"2023-02-26T18:17:22-08:00"} {"level":"info","msg":"downloading from: ","time":"2023-02-26T18:17:22-08:00"} {"level":"info","msg":"thank you github.com/mspvirajpatel for making these images available :-)","time":"2023-02-26T18:17:22-08:00"} {"level":"info","msg":"downloading 'https://github.com/mspvirajpatel/Xcode_Developer_Disk_Images/blob/master/Developer%20Disk%20Image/15.7/DeveloperDiskImage.dmg?raw=true' to path 'devimages/15.7/DeveloperDiskImage.dmg'","time":"2023-02-26T18:17:22-08:00"} {"level":"info","msg":"installing downloaded image 'devimages/15.7/DeveloperDiskImage.dmg'","time":"2023-02-26T18:17:26-08:00"} {"basedir":"./devimages","level":"info","msg":"success mounting image","time":"2023-02-26T18:17:27-08:00","udid":"redacted"} * remove 16.3 that was removed in another commit. --------- Co-authored-by: danielpaulus <[email protected]>
v1.0.103
Developer disc image for iOS 16.4 added (#237) Co-authored-by: Milica Kostic <[email protected]>
v1.0.102
Update runtest to accept additional arguments (#229) * Updated `runtest` command to accept 3 arguments so users can fine tune the test execution based on their own configuration - #224 * Added `--bundle-id`, `test-runner-bundle-id` and `xctest-config` arguments to `runtest` * `test-runner-bundle-id` and `xctest-config` can be omitted which will use the initial logic of building them dynamically
v1.0.101
Developer Disk Image 16.1, 16.2 and 16.3 added (#226)
v1.0.100
Fix: Parse time information from unknown fields (#219)
v1.0.99
be able to pass --env to runtest (#217) ' Co-authored-by: Cédric Couton <[email protected]>
v1.0.98
fix Errorf (#214)
v1.0.97
Add pairing endpoint to REST API (#208) * Added a new endpoint to REST API that allows to pair (un)supervised devices * For supervised devices it needs p12 file in form-data and `Supervision-Password` header with the password for the p12 file
v1.0.96
Add mjpeg server to screenshotr (#213) start a simple mjpeg server by running `ios screenshot --stream` on 0.0.0.0:3333. If you provide the port argument like so: `ios screenshot --stream --port=8082` the server will run on your specified port. Then watch a slow stream in your browser. This is only a fun feature or to use in debugging if all else fails. Screenshotr is too slow to be really useable on Retina/High Res devices because it sends huge PNG files. Those reach memory bandwith limits on the device. Also it is too unstable to be used in production scenarios. For useable mjpeg streams, use WebDriverAgent's built in server. On older devices, this works quite well though :-D