Skip to content

Releases: wavefrontHQ/python-client

Version 2.3.2

15 Aug 01:23
Compare
Choose a tag to compare
  • Upgrade to API definition compatible with 2018-26.x release
  • Support Python 3.7 (replace 'async' With 'async_req')

Version 2.3.1

29 Mar 15:29
355698b
Compare
Choose a tag to compare

Upgrade to API definition compatible with 2018-10.x release

Note: a minor code modification is required when upgrading from v2.1.x (or earlier) due to breaking changes introduced by swagger-codegen.

Before:

client = wave_api.ApiClient(host=base_url, header_name='Authorization', header_value='Bearer ' + api_key)

After:

config = wave_api.Configuration()
config.host = base_url
client = wave_api.ApiClient(configuration=config, header_name='Authorization', header_value='Bearer ' + api_key)

Version 2.2.1

04 Oct 03:13
Compare
Choose a tag to compare

Upgrade to API definition compatible with 2017-32.x release

Note: v2.2.x libraries require a minor code modification to be compatible with v2.1.x and earlier versions due to breaking changes introduced by swagger-codegen.

Before:

client = wave_api.ApiClient(host=base_url, header_name='Authorization', header_value='Bearer ' + api_key)

After:

config = wave_api.Configuration()
config.host = base_url
client = wave_api.ApiClient(configuration=config, header_name='Authorization', header_value='Bearer ' + api_key)