Skip to content

Commit

Permalink
Merge pull request #344 from infobloxopen/bump_version_to_0.5.1
Browse files Browse the repository at this point in the history
Bump version to 0.5.1
  • Loading branch information
sarya-infoblox authored Aug 29, 2022
2 parents 8c6f967 + dc61c73 commit bff3a66
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 2 deletions.
4 changes: 4 additions & 0 deletions HISTORY.rst
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,10 @@ __________________
* Updated connector's urlencoding logic for proper array encoding #287;
* Updated InfobloxObject's fetch method to raise `InfobloxFetchGotMultipleObjects` exception #288;
* Fix a bug when calling abstracted class from_dict with V4 & V6 subclass #282;
* Fix a bug when updating DNSZone object exception was raised and field not allowed to update #331;
* Fix a bug when ARecord and AAAARecord object skips updating the updatable fields #334, #328;
* Raised an exception while searching with non searchable fields #339;
* Fix errors generated for the client using sphinx with make docs #343;

**0.5.0 (2020-05-14)**
______________________
Expand Down
2 changes: 1 addition & 1 deletion infoblox_client/connector.py
Original file line number Diff line number Diff line change
Expand Up @@ -72,7 +72,7 @@ class Connector(object):
'http_pool_connections': 10,
'http_pool_maxsize': 10,
'max_retries': 3,
'wapi_version': '2.7',
'wapi_version': '2.10',
'max_results': None,
'log_api_calls_as_info': False,
'paging': False}
Expand Down
2 changes: 1 addition & 1 deletion tests/test_connector.py
Original file line number Diff line number Diff line change
Expand Up @@ -701,7 +701,7 @@ def test_default_options(self):
self.assertEqual(10, conn.http_pool_connections)
self.assertEqual(10, conn.http_pool_maxsize)
self.assertEqual(3, conn.max_retries)
self.assertEqual('2.7', conn.wapi_version)
self.assertEqual('2.10', conn.wapi_version)
self.assertEqual(None, conn.max_results)

def test_blank_values_not_allowed(self):
Expand Down

0 comments on commit bff3a66

Please sign in to comment.