From d56bf28d8d00f56a9aaa4521e4e63b7a24b7071c Mon Sep 17 00:00:00 2001 From: "dependabot-preview[bot]" <27856297+dependabot-preview[bot]@users.noreply.github.com> Date: Sat, 11 Jan 2020 17:42:18 +0000 Subject: [PATCH 1/3] Bump botocore from 1.10.5 to 1.14.0 Bumps [botocore](https://github.com/boto/botocore) from 1.10.5 to 1.14.0. - [Release notes](https://github.com/boto/botocore/releases) - [Changelog](https://github.com/boto/botocore/blob/develop/CHANGELOG.rst) - [Commits](https://github.com/boto/botocore/compare/1.10.5...1.14.0) Signed-off-by: dependabot-preview[bot] --- requirements.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/requirements.txt b/requirements.txt index f063d26..e627537 100644 --- a/requirements.txt +++ b/requirements.txt @@ -2,7 +2,7 @@ PyYaml==4.2b1 azure-common==1.1.23 azure-mgmt-dns==3.0.0 boto3==1.7.5 -botocore==1.10.5 +botocore==1.14.0 dnspython==1.15.0 docutils==0.14 dyn==1.8.1 From eb890f02148aba0593bb5b7e8d57be6f616cc3b9 Mon Sep 17 00:00:00 2001 From: Ross McFarland Date: Sat, 11 Jan 2020 10:16:22 -0800 Subject: [PATCH 2/3] Bump boto3 to 1.11.0 --- requirements.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/requirements.txt b/requirements.txt index e627537..20db7f8 100644 --- a/requirements.txt +++ b/requirements.txt @@ -1,7 +1,7 @@ PyYaml==4.2b1 azure-common==1.1.23 azure-mgmt-dns==3.0.0 -boto3==1.7.5 +boto3==1.11.0 botocore==1.14.0 dnspython==1.15.0 docutils==0.14 From 60ec6e9a288921c8140c3c06d7706e33b322eb73 Mon Sep 17 00:00:00 2001 From: Ross McFarland Date: Sat, 11 Jan 2020 10:16:31 -0800 Subject: [PATCH 3/3] Update Route53 test that pokes at boto internals --- tests/test_octodns_provider_route53.py | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/tests/test_octodns_provider_route53.py b/tests/test_octodns_provider_route53.py index 7691804..60da3b8 100644 --- a/tests/test_octodns_provider_route53.py +++ b/tests/test_octodns_provider_route53.py @@ -1930,9 +1930,8 @@ class TestRoute53Provider(TestCase): provider = Route53Provider('test', 'abc', '123', client_max_attempts=42) # NOTE: this will break if boto ever changes the impl details... - self.assertEquals(43, provider._conn.meta.events - ._unique_id_handlers['retry-config-route53'] - ['handler']._checker.__dict__['_max_attempts']) + self.assertEquals(42, provider._conn._client_config + .retries['max_attempts']) def test_data_for_dynamic(self): provider = Route53Provider('test', 'abc', '123')