From 88991438b599df03b865b0385a9afc0649a413d7 Mon Sep 17 00:00:00 2001 From: Stuti Arya Date: Fri, 26 Aug 2022 15:19:19 +0530 Subject: [PATCH 1/3] Bump version to 0.5.1 --- HISTORY.rst | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/HISTORY.rst b/HISTORY.rst index bf6f259..d3cc58e 100644 --- a/HISTORY.rst +++ b/HISTORY.rst @@ -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)** ______________________ From a3be27ec9eb6aedeba8b0cb7e73002c3fb95cdc0 Mon Sep 17 00:00:00 2001 From: Stuti Arya Date: Mon, 29 Aug 2022 12:27:38 +0530 Subject: [PATCH 2/3] Wapi Version updated to 2.10 --- infoblox_client/connector.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/infoblox_client/connector.py b/infoblox_client/connector.py index bf3a3ac..c5f8885 100644 --- a/infoblox_client/connector.py +++ b/infoblox_client/connector.py @@ -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} From dc61c730255819d80ee637ca0ea2a7af829b0857 Mon Sep 17 00:00:00 2001 From: Stuti Arya Date: Mon, 29 Aug 2022 12:32:04 +0530 Subject: [PATCH 3/3] Fix test cases for wapi version update --- tests/test_connector.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/test_connector.py b/tests/test_connector.py index e888b7b..9a77c6e 100644 --- a/tests/test_connector.py +++ b/tests/test_connector.py @@ -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):