Skip to content

Releases: doronz88/pymobiledevice3

v4.1.4

18 Apr 06:07
1081b91
Compare
Choose a tag to compare

What's Changed

  • 20adc48 cli_common: fix closing of non-required tunnel connections (#940)
  • f2e0d74 cli: fix implicit connections to tunneld according to device serial

Full Changelog: v4.1.3...v4.1.4

v4.1.3

17 Apr 08:14
2b5621e
Compare
Choose a tag to compare

What's Changed

Full Changelog: v4.1.2...v4.1.3

v4.1.2

17 Apr 07:46
9713fab
Compare
Choose a tag to compare

What's Changed

Full Changelog: v4.1.1...v4.1.2

v4.1.1

16 Apr 16:50
4da8be8
Compare
Choose a tag to compare

What's Changed

  • remote: fix triggering of close() when endpoint isn't connected by @doronz88 in #942

Full Changelog: v4.1.0...v4.1.1

v4.1.0

15 Apr 17:46
3a6203c
Compare
Choose a tag to compare

What's Changed

  • Added optional random time offset for interval between points in GPX file by @basvdijk in #941

Full Changelog: v4.0.0...v4.1.0

v4.0.0

15 Apr 11:44
7df2de1
Compare
Choose a tag to compare

Highlights

This version refactors the whole RemoteXPC API stack to be fully asyncio.
For CLI users this change is completely transparent (except for being much faster! ⚡️)

For python API users, this means creating and connecting a RemoteServiceDiscoveryService clients will now require an active asyncio loop.

The project's README file was updated aswell to reflect this API change:

# Or you could connect manually to a specific tunnel created by `start-tunnel`
host = 'fded:c26b:3d2f::1'
port = 65177
async with RemoteServiceDiscoveryService((host, port)) as rsd:
    # you can now use this connection as any other LockdownClient connection
    pass

# Alternatively, you can use this API not in a context-manager
rsd = RemoteServiceDiscoveryService((host, port))
await rsd.connect()
await rsd.close()

What's Changed

Full Changelog: v3.4.4...v4.0.0

v3.4.4

15 Apr 11:38
6d2275c
Compare
Choose a tag to compare

What's Changed

  • 5f3ed28 activity_trace_tap: handle <private> strings
  • ac07e34 exceptions: add missing to __all__
  • d26500f lockdown: fix create_using_remote() docstring
  • 255889f accessibilityaudit: fix typings

Full Changelog: v3.4.3...v3.4.4

v3.4.3

14 Apr 14:28
b43c199
Compare
Choose a tag to compare

What's Changed

Full Changelog: v3.4.2...v3.4.3

v3.4.2

14 Apr 11:24
81daaf8
Compare
Choose a tag to compare

What's Changed

Full Changelog: v3.4.1...v3.4.2

v3.4.1

14 Apr 05:34
8d1d700
Compare
Choose a tag to compare

What's Changed

New Contributors

Full Changelog: v3.4.0...v3.4.1