Skip to content

Releases: danielpaulus/go-ios

v1.0.105

01 Mar 20:27
1ea17e8
Compare
Choose a tag to compare
Fix npm release for latest versions (#241)

Co-authored-by: Daniel Paulus <[email protected]>

v1.0.104

28 Feb 07:11
f9b4c4c
Compare
Choose a tag to compare
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

27 Feb 19:01
88021e0
Compare
Choose a tag to compare
Developer disc image for iOS 16.4 added (#237)

Co-authored-by: Milica Kostic <[email protected]>

v1.0.102

20 Feb 14:48
5a7b837
Compare
Choose a tag to compare
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

14 Feb 09:20
0c0800d
Compare
Choose a tag to compare
Developer Disk Image 16.1, 16.2 and 16.3 added (#226)

v1.0.100

14 Feb 06:41
a26d735
Compare
Choose a tag to compare
Fix: Parse time information from unknown fields (#219)

v1.0.99

05 Jan 08:08
fe46efe
Compare
Choose a tag to compare
be able to pass --env to runtest (#217)

'

Co-authored-by: Cédric Couton <[email protected]>

v1.0.98

29 Nov 12:51
fc943b9
Compare
Choose a tag to compare
fix Errorf (#214)

v1.0.97

29 Nov 06:48
22eff63
Compare
Choose a tag to compare
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

28 Nov 22:19
8660f03
Compare
Choose a tag to compare
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