From 17f195101706db09446300ef17d95f3e975ec23a Mon Sep 17 00:00:00 2001 From: Erik Sundell Date: Thu, 26 Sep 2024 16:12:23 +0200 Subject: [PATCH 1/2] Bump default traefik version from 2.10.7 to 3.1.4 --- jupyterhub_traefik_proxy/install.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/jupyterhub_traefik_proxy/install.py b/jupyterhub_traefik_proxy/install.py index dd948c21..ad16ca9f 100644 --- a/jupyterhub_traefik_proxy/install.py +++ b/jupyterhub_traefik_proxy/install.py @@ -149,7 +149,7 @@ def main(): dest="traefik_version", # default version to install should be regularly updated, see # https://github.com/traefik/traefik/releases - default="2.10.7", + default="3.1.4", help=textwrap.dedent( """\ The version of traefik to download. From 5af1e47fa7b51acaa54455a4a10161fbceb81fa8 Mon Sep 17 00:00:00 2001 From: Erik Sundell Date: Thu, 26 Sep 2024 16:16:12 +0200 Subject: [PATCH 2/2] Test against python 3.x and the default traefik version installed --- .github/workflows/test.yml | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index b19ded2a..7e5b99e1 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -39,10 +39,13 @@ jobs: # Test against old and new python, and traefik v2 and v3 - python: "3.8" backend: file - traefik-version: "v2.11.2" + traefik-version: "v2.11.10" - python: "3.12" backend: file - traefik-version: "v3.0.0" + traefik-version: "v3.1.4" + - python: "3.x" + backend: file + traefik-version: "" # default value # Test each backend that requires a python client against a modern # version of python to ensure clients are compatible.