Skip to content

Releases: bimmerconnected/bimmer_connected

0.10.1

15 Jul 20:08
6c5e911
Compare
Choose a tag to compare

What’s Changed

0.10.0

26 Jun 09:35
a1e6c36
Compare
Choose a tag to compare

Breaking change

  • vehicle.doors_and_windows.convertible_top has been removed as we don't know how it is represented in the new API. It could be part of vehicle.doors_and_windows.lids if located similarly to the sunroof.

What’s Changed

  • Migrate to vehicles v2 API (#462) @rikroe
    • This fixes HTTP 429 errors caused by rate-limiting on the older API endpoints

This release is identical to 0.9.6 but got its own minor version bump due to the amount of changes.

0.9.6

25 Jun 07:44
a1e6c36
Compare
Choose a tag to compare

Breaking change

  • vehicle.doors_and_windows.convertible_top has been removed as we don't know how it is represented in the new API. It could be part of vehicle.doors_and_windows.lids if located similarly to the sunroof.

What’s Changed

  • Migrate to vehicles v2 API (#462) @rikroe
    • This fixes HTTP 429 errors caused by rate-limiting on the older API endpoints

This release is identical to 0.10.0 which got its own minor version bump due to the amount of changes.

0.9.5

22 Jun 11:54
d751fea
Compare
Choose a tag to compare

What’s Changed

0.9.4

03 Jun 10:08
3803bd8
Compare
Choose a tag to compare

What’s Changed

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