From db4ac6dc3672c33eb8a5eb2262dbdef02be55026 Mon Sep 17 00:00:00 2001 From: Bastien Gerard Date: Thu, 20 Aug 2026 10:04:44 +0200 Subject: [PATCH 1/2] Bump jinja (vulnerable version) --- docs/changelog.rst | 2 +- docs/conf.py | 2 +- docs/requirements.txt | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/docs/changelog.rst b/docs/changelog.rst index 10623bb9e..a82063111 100644 --- a/docs/changelog.rst +++ b/docs/changelog.rst @@ -9,7 +9,7 @@ Development - (Fill this out as you fix issues and develop your features). Changes in 1.0.0 -=========== +================ - Add support for transaction through run_in_transaction (kudos to juannyG for this) #2569 Some considerations: diff --git a/docs/conf.py b/docs/conf.py index 7bd30bf09..edcdf3815 100644 --- a/docs/conf.py +++ b/docs/conf.py @@ -119,7 +119,7 @@ # The name of an image file (within the static path) to use as favicon of the # docs. This file should be a Windows icon file (.ico) being 16x16 or 32x32 # pixels large. -html_favicon = "favicon.ico" +html_favicon = "" # Add any paths that contain custom static files (such as style sheets) here, # relative to this directory. They are copied after the builtin static files, diff --git a/docs/requirements.txt b/docs/requirements.txt index 4d4be826b..416f48e40 100644 --- a/docs/requirements.txt +++ b/docs/requirements.txt @@ -2,4 +2,4 @@ Sphinx==7.4.7 sphinx-rtd-theme==2.1.0rc2 readthedocs-sphinx-ext==2.2.5 docutils==0.20.1 -Jinja2==3.1.4 +Jinja2==3.1.6 From eefd46f185133ab4e257fd627856493166a75b7c Mon Sep 17 00:00:00 2001 From: Bastien Gerard Date: Thu, 20 Aug 2026 10:59:20 +0200 Subject: [PATCH 2/2] Address parallel coveralls call (2 jobs) --- .github/workflows/github-actions.yml | 9 ++++++++- 1 file changed, 8 insertions(+), 1 deletion(-) diff --git a/.github/workflows/github-actions.yml b/.github/workflows/github-actions.yml index 47c705050..ea4e4d336 100644 --- a/.github/workflows/github-actions.yml +++ b/.github/workflows/github-actions.yml @@ -27,6 +27,8 @@ env: PYMONGO_4_17: "4.17.0" MAIN_PYTHON_VERSION: "3.14" + MAIN_MONGODB_VERSION: $MONGODB_8_0 + MAIN_PYMONGO_VERSION: $PYMONGO_4_17 jobs: linting: @@ -88,7 +90,12 @@ jobs: env: GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} COVERALLS_SERVICE_NAME: github-actions - if: ${{ matrix.python-version == env.MAIN_PYTHON_VERSION }} + if: >- + ${{ + matrix.python-version == env.MAIN_PYTHON_VERSION && + matrix.MONGODB == env.MAIN_MONGODB_VERSION && + matrix.PYMONGO == env.MAIN_PYMONGO_VERSION + }} run: coveralls build_doc_dryrun: