From 7bf8cf5ef4458e396ac057c8201b30f4b787fa6e Mon Sep 17 00:00:00 2001 From: Serban Teodorescu Date: Tue, 27 Aug 2024 11:16:22 +0300 Subject: [PATCH 1/3] [HDX-10076] add dependabot customisation --- .github/dependabot.yml | 7 +++++++ 1 file changed, 7 insertions(+) create mode 100644 .github/dependabot.yml diff --git a/.github/dependabot.yml b/.github/dependabot.yml new file mode 100644 index 0000000..43b9089 --- /dev/null +++ b/.github/dependabot.yml @@ -0,0 +1,7 @@ +version: 2 +updates: + - package-ecosystem: "pip" + directory: "/" + schedule: + interval: "weekly" + open-pull-requests-limit: 10 From 8cd4d193416ae562a691551379cc420343124783 Mon Sep 17 00:00:00 2001 From: Dan Mihaila Date: Fri, 25 Oct 2024 12:20:48 +0300 Subject: [PATCH 2/3] HDX-10173 --- requirements.txt | 2 +- setup.cfg | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/requirements.txt b/requirements.txt index ecd27ed..11ee983 100644 --- a/requirements.txt +++ b/requirements.txt @@ -3,7 +3,7 @@ requests_cache ckanapi>=3.5 flask==3.0.3 #git+https://github.com/HXLStandard/libhxl-python.git@dev#egg=libhxl # for development -libhxl==5.2.1 # for release +libhxl==5.2.2 # for release flask-caching redis requests diff --git a/setup.cfg b/setup.cfg index 1c41dfa..a36e44e 100644 --- a/setup.cfg +++ b/setup.cfg @@ -26,7 +26,7 @@ install_requires = ckanapi>=3.5 flask>=2.2.5<2.3 # 2.3 messes up pip dependencies #libhxl @ git+https://github.com/HXLStandard/libhxl-python.git@dev # for development - libhxl==5.2.1 # for release + libhxl==5.2.2 # for release flask-caching redis structlog From 29cff47d635f2c942e5e516e6a2416ff71a0acb8 Mon Sep 17 00:00:00 2001 From: Dan Mihaila Date: Mon, 28 Oct 2024 14:26:54 +0200 Subject: [PATCH 3/3] HDX-10173 update libhxl version --- CHANGELOG | 3 +++ hxl_proxy/__init__.py | 2 +- 2 files changed, 4 insertions(+), 1 deletion(-) diff --git a/CHANGELOG b/CHANGELOG index 60565c7..50f7317 100644 --- a/CHANGELOG +++ b/CHANGELOG @@ -1,3 +1,6 @@ +2024-10-28 Release 2.2.4: + - update libhxl-python version + 2024-08-21 Release 2.2.3: - update docker base image - remove legacy deps specifiers diff --git a/hxl_proxy/__init__.py b/hxl_proxy/__init__.py index 7548e42..b7d3e47 100644 --- a/hxl_proxy/__init__.py +++ b/hxl_proxy/__init__.py @@ -8,7 +8,7 @@ """ -__version__="2.2.3" +__version__="2.2.4" """Module version number See https://www.python.org/dev/peps/pep-0396/