Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Feature/release 1.22.0 #449

Merged
merged 2 commits into from
May 8, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .bumpversion.cfg
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
[bumpversion]
current_version = 1.21.0
current_version = 1.22.0
commit = True
tag = True
tag_name = {new_version}
Expand Down
10 changes: 10 additions & 0 deletions CHANGES.rst
Original file line number Diff line number Diff line change
@@ -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 <https://github.com/scrapinghub/spidermon/pull/446>`_)
- bugs: Fix ``_get_jobs`` method returning an incorrect number of jobs in ``ZyteJobsComparisonMonitor`` (`PR#444 <https://github.com/scrapinghub/spidermon/pull/444>`_)
- docs: Add ``SPIDERMON_MONITOR_SKIPPING_RULES`` documentation and examples on settings page (`PR#447 <https://github.com/scrapinghub/spidermon/pull/447>`_)
- chore: Add Python 3.12 support (`PR#443 <https://github.com/scrapinghub/spidermon/pull/443>`_) (`PR#448 <https://github.com/scrapinghub/spidermon/pull/448>`_)


1.21.0 (2024-04-18)
-------------------

- bug: Fix CI/CD pipelines not working due to changes on Scrapy (`PR#426 <https://github.com/scrapinghub/spidermon/pull/426>`_)
- bug: Fix TypeError in ``PeriodicItemCountMonitor`` when item_scraped_count was not defined the first time it was checked (`PR#436 <https://github.com/scrapinghub/spidermon/pull/436>`_)
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -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="[email protected]",
Expand Down
2 changes: 1 addition & 1 deletion spidermon/VERSION
Original file line number Diff line number Diff line change
@@ -1 +1 @@
1.21.0
1.22.0
2 changes: 1 addition & 1 deletion spidermon/__init__.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
__version__ = "1.21.0"
__version__ = "1.22.0"

from .core.monitors import Monitor
from .core.suites import MonitorSuite
Expand Down
Loading