From 1f86e8ae9e8be9217765b4e7f66ead8706196c29 Mon Sep 17 00:00:00 2001 From: Oleksandr Kuzminskyi Date: Thu, 25 Jul 2024 09:06:22 -0700 Subject: [PATCH 1/2] Pin cryptography to < 43.0.0 Version 43 produces a deprecation warning. certbot project is unlikely to migrate to `this_update_utc` any time soon. See discussion in https://github.com/certbot/certbot/issues/9967 Pinning the cryptography version as a temporary measure to mute the cron noise. --- requirements.txt | 1 + 1 file changed, 1 insertion(+) diff --git a/requirements.txt b/requirements.txt index 8e7d9c8..91e7a41 100644 --- a/requirements.txt +++ b/requirements.txt @@ -5,6 +5,7 @@ botocore ~= 1.29 certbot ~= 2.9 certbot-dns-route53 ~= 2.9 click ~= 8.1 +cryptography < 43.0.0 # Pinning until https://github.com/certbot/certbot/issues/9967 is fixed. diskcache ~= 5.6 elasticsearch ~= 8.12.0 pyhcl ~= 0.4 From e631f6100b6ece7ec972f863d208048ab59ff6d4 Mon Sep 17 00:00:00 2001 From: Oleksandr Kuzminskyi Date: Thu, 25 Jul 2024 09:12:57 -0700 Subject: [PATCH 2/2] =?UTF-8?q?Bump=20version:=202.28.0=20=E2=86=92=202.28?= =?UTF-8?q?.1?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- infrahouse_toolkit/__init__.py | 4 ++-- .../config/projects/infrahouse-toolkit.rb | 2 +- setup.cfg | 2 +- setup.py | 2 +- 4 files changed, 5 insertions(+), 5 deletions(-) diff --git a/infrahouse_toolkit/__init__.py b/infrahouse_toolkit/__init__.py index 5768e01..790d6eb 100644 --- a/infrahouse_toolkit/__init__.py +++ b/infrahouse_toolkit/__init__.py @@ -2,13 +2,13 @@ Top-level package for InfraHouse Toolkit. :Author: Oleksandr Kuzminskyi -:Version: 2.28.0 +:Version: 2.28.1 :Email: aleks@infrahouse.com """ __author__ = """Oleksandr Kuzminskyi""" __email__ = "aleks@infrahouse.com" -__version__ = "2.28.0" +__version__ = "2.28.1" DEFAULT_OPEN_ENCODING = "utf8" DEFAULT_ENCODING = DEFAULT_OPEN_ENCODING diff --git a/omnibus-infrahouse-toolkit/config/projects/infrahouse-toolkit.rb b/omnibus-infrahouse-toolkit/config/projects/infrahouse-toolkit.rb index f8529b7..934419a 100644 --- a/omnibus-infrahouse-toolkit/config/projects/infrahouse-toolkit.rb +++ b/omnibus-infrahouse-toolkit/config/projects/infrahouse-toolkit.rb @@ -12,7 +12,7 @@ # and /opt/infrahouse-toolkit on all other platforms install_dir "#{default_root}/#{name}" -build_version '2.28.0' +build_version '2.28.1' build_iteration 1 override :openssl, version: '1.1.1t' diff --git a/setup.cfg b/setup.cfg index 36e881d..bdc8b84 100644 --- a/setup.cfg +++ b/setup.cfg @@ -1,5 +1,5 @@ [bumpversion] -current_version = 2.28.0 +current_version = 2.28.1 commit = True [bumpversion:file:setup.py] diff --git a/setup.py b/setup.py index 1fe793b..9bf2ccd 100644 --- a/setup.py +++ b/setup.py @@ -71,6 +71,6 @@ def parse_requirements(req_file): test_suite="tests", tests_require=test_requirements, url="https://github.com/infrahouse/infrahouse-toolkit", - version="2.28.0", + version="2.28.1", zip_safe=False, )