From 3777f131fbf23581e4dcc2f7c7d480595d7328a4 Mon Sep 17 00:00:00 2001 From: "dependabot-preview[bot]" <27856297+dependabot-preview[bot]@users.noreply.github.com> Date: Mon, 17 Feb 2020 19:25:54 +0000 Subject: [PATCH 1/2] Bump botocore from 1.14.13 to 1.15.0 Bumps [botocore](https://github.com/boto/botocore) from 1.14.13 to 1.15.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.14.13...1.15.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 a928d99..bfc8f2f 100644 --- a/requirements.txt +++ b/requirements.txt @@ -2,7 +2,7 @@ PyYaml==5.3 azure-common==1.1.24 azure-mgmt-dns==3.0.0 boto3==1.12.0 -botocore==1.14.13 +botocore==1.15.0 dnspython==1.16.0 docutils==0.16 dyn==1.8.1 From 413ddef2a68b9d3fc2031911dae3ce60fb719a41 Mon Sep 17 00:00:00 2001 From: Ross McFarland Date: Tue, 18 Feb 2020 15:26:10 -0800 Subject: [PATCH 2/2] Yet another round of Route53 retry internals changing --- tests/test_octodns_provider_route53.py | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/tests/test_octodns_provider_route53.py b/tests/test_octodns_provider_route53.py index 6a079dd..385b82a 100644 --- a/tests/test_octodns_provider_route53.py +++ b/tests/test_octodns_provider_route53.py @@ -2026,8 +2026,10 @@ 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(42, provider._conn._client_config - .retries['max_attempts']) + self.assertEquals({ + 'mode': 'legacy', + 'total_max_attempts': 43, + }, provider._conn._client_config.retries) def test_data_for_dynamic(self): provider = Route53Provider('test', 'abc', '123')