Skip to content

Commit

Permalink
Release 1.21.0 (#441)
Browse files Browse the repository at this point in the history
* Add updates to changelog

* Bump version: 1.20.0 → 1.21.0

* fix typo in changelog

* Fix missing quote

* Update CHANGES.rst

Co-authored-by: Adrián Chaves <adrian@chaves.io>

* Change line order

* Update CHANGES.rst

Co-authored-by: Adrián Chaves <adrian@chaves.io>

* Update CHANGES.rst

Co-authored-by: Adrián Chaves <adrian@chaves.io>

* Update CHANGES.rst

Co-authored-by: Adrián Chaves <adrian@chaves.io>

---------

Co-authored-by: Adrián Chaves <adrian@chaves.io>
  • Loading branch information
VMRuiz and Gallaecio committed Apr 17, 2024
1 parent 1b2432b commit a7e195f
Show file tree
Hide file tree
Showing 5 changed files with 15 additions and 4 deletions.
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.20.0
current_version = 1.21.0
commit = True
tag = True
tag_name = {new_version}
Expand Down
11 changes: 11 additions & 0 deletions CHANGES.rst
Original file line number Diff line number Diff line change
@@ -1,6 +1,17 @@
Release notes
=============

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>`_)
- bug: Fix ``calculate_field_coverage`` incorrect handling of field names ending with _items (`PR#437 <https://github.com/scrapinghub/spidermon/pull/437>`_)
- bug: Fix monitor failing when operating offset-naive and offset-aware datetimes (`PR#439 <https://github.com/scrapinghub/spidermon/pull/439>`_)
- bug: Fix tests for minimum properties and items in JSON Schema validations (`PR#432 <https://github.com/scrapinghub/spidermon/pull/432>`_)
- feature: Add the ``SPIDERMON_DICT_FIELDS_COVERAGE_LEVELS`` setting to limit nested dict stats computation (`PR#433 <https://github.com/scrapinghub/spidermon/pull/433>`_)
- feature: Add ``SendSNSNotification`` to Spidermon Notifications (`PR#413 <https://github.com/scrapinghub/spidermon/pull/413>`_)
- feature: Change the format of the content of _validation from defaultdict to dict (`PR#431 <https://github.com/scrapinghub/spidermon/pull/431>`_)

1.20.0 (2023-09-01)
-------------------

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.20.0",
version="1.21.0",
url="https://github.com/scrapinghub/spidermon",
author="Zyte",
author_email="opensource@zyte.com",
Expand Down
2 changes: 1 addition & 1 deletion spidermon/VERSION
Original file line number Diff line number Diff line change
@@ -1 +1 @@
1.20.0
1.21.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.20.0"
__version__ = "1.21.0"

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

0 comments on commit a7e195f

Please sign in to comment.