From 6ea9f67c66407640032f63d717e193002a031b3e Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?V=C3=ADctor=20Ruiz?= Date: Wed, 8 May 2024 11:00:31 +0200 Subject: [PATCH] Feature/release 1.22.0 (#449) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit * Add changes for 1.22.0 release * Bump version: 1.21.0 → 1.22.0 --- .bumpversion.cfg | 2 +- CHANGES.rst | 10 ++++++++++ setup.py | 2 +- spidermon/VERSION | 2 +- spidermon/__init__.py | 2 +- 5 files changed, 14 insertions(+), 4 deletions(-) diff --git a/.bumpversion.cfg b/.bumpversion.cfg index 457f6599..8496fdb6 100644 --- a/.bumpversion.cfg +++ b/.bumpversion.cfg @@ -1,5 +1,5 @@ [bumpversion] -current_version = 1.21.0 +current_version = 1.22.0 commit = True tag = True tag_name = {new_version} diff --git a/CHANGES.rst b/CHANGES.rst index 7b2b77e1..deeee203 100644 --- a/CHANGES.rst +++ b/CHANGES.rst @@ -1,7 +1,17 @@ Release notes ============= +1.22.0 (2024-05-08) +------------------- + +- bugs: Fix ``_get_jobs`` to use the proper parameter for tag filtering in ``ZyteJobsComparisonMonitor`` (`PR#446 `_) +- bugs: Fix ``_get_jobs`` method returning an incorrect number of jobs in ``ZyteJobsComparisonMonitor`` (`PR#444 `_) +- docs: Add ``SPIDERMON_MONITOR_SKIPPING_RULES`` documentation and examples on settings page (`PR#447 `_) +- chore: Add Python 3.12 support (`PR#443 `_) (`PR#448 `_) + + 1.21.0 (2024-04-18) +------------------- - bug: Fix CI/CD pipelines not working due to changes on Scrapy (`PR#426 `_) - bug: Fix TypeError in ``PeriodicItemCountMonitor`` when item_scraped_count was not defined the first time it was checked (`PR#436 `_) diff --git a/setup.py b/setup.py index 0db6faf2..e64f748c 100644 --- a/setup.py +++ b/setup.py @@ -2,7 +2,7 @@ setup( name="spidermon", - version="1.21.0", + version="1.22.0", url="https://github.com/scrapinghub/spidermon", author="Zyte", author_email="opensource@zyte.com", diff --git a/spidermon/VERSION b/spidermon/VERSION index 3500250a..57807d6d 100644 --- a/spidermon/VERSION +++ b/spidermon/VERSION @@ -1 +1 @@ -1.21.0 +1.22.0 diff --git a/spidermon/__init__.py b/spidermon/__init__.py index 277a5b27..01f6c5bf 100644 --- a/spidermon/__init__.py +++ b/spidermon/__init__.py @@ -1,4 +1,4 @@ -__version__ = "1.21.0" +__version__ = "1.22.0" from .core.monitors import Monitor from .core.suites import MonitorSuite