Skip to content

Releases: bimmerconnected/bimmer_connected

0.9.3

29 May 18:19
f1b6557
Compare
Choose a tag to compare

What’s Changed

Breaking changes

  • bimmerconnected.vehicle.models has been moved to bimmerconnected.models

0.9.2

28 May 16:45
a5384f5
Compare
Choose a tag to compare

What’s Changed

0.9.1

24 May 19:43
fb40735
Compare
Choose a tag to compare

What’s Changed

0.9.0

23 May 05:53
5303fa5
Compare
Choose a tag to compare

What’s Changed

Breaking change

  • All network-related functions are now async, requiring the await keyword or similar functionality. If you are using this library in your custom code, it will most likely affect you in one of the following functions:
    • bimmer_connected.account.ConnectedDriveAccount.get_vehicles()
    • bimmer_connected.remote_services.RemoteServices.trigger_[any-remote-service]()
    • bimmer_connected.vehicle.ConnectedDriveVehicle.get_vehicle_image()
  • Initialization of MyBMWAccount does not automatically get the vehicles from the API, use get_vehicles():
    account = MyBMWAccount(USERNAME, PASSWORD, REGION)
    await account.get_vehicles()  # if executing in async function
    asyncio.run(account.get_vehicles())  # if executing in synchronous function
  • All ConnectedDrive... objects have been deprecated and renamed to MyBMW.... You will see a logged DeprecationWarning everytime your code accesses a deprecated property.
  • VehicleStatus is now deprecated. All of the information is available via MyBMWVehicle attributes. You will see a logged DeprecationWarning everytime your code accesses a deprecated property.
  • bimmer_connected.country_selector has been removed in favor of bimmer_connected.api.regions
  • While not offically supported before, Python<3.6 is now broken

Changes

0.8.12

21 Apr 16:14
3d71a53
Compare
Choose a tag to compare

What’s Changed

0.8.11 🚘

20 Feb 15:41
b00ef21
Compare
Choose a tag to compare

What’s Changed

  • Don't store GCJ02 converted position to VehicleStatus (#421) @rikroe

0.8.10 🚘

14 Jan 07:46
Compare
Choose a tag to compare

What’s Changed

  • Always send user-agent header (fixes login to china) (#409) @rikroe

0.8.9 🚘

09 Jan 19:18
Compare
Choose a tag to compare

What’s Changed

0.8.8

09 Jan 16:01
Compare
Choose a tag to compare

What’s Changed

0.8.7

19 Dec 17:21
Compare
Choose a tag to compare

What’s Changed

  • Switch lat & lon for China GPS conversion (#381) @rikroe
  • Fixes around charging_end_time and fuelIndicators
    • Fix charging_end_time by sending local time in milliseconds (#382) @rikroe
    • Separate function for parsing charging_end_time (#384) @rikroe
    • Get charging_status and charging_start_time from fuelIndicators (#385) @rikroe

See full changelog for details: https://github.com/bimmerconnected/bimmer_connected/compare/0.8.6..0.8.7