Skip to content

Commit

Permalink
Release 1.20.0 (#418)
Browse files Browse the repository at this point in the history
* Release 1.20.0

* Apply suggestions from code review

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

* Fixed nesting level of Backward-incompatible changes section and rename it

* Bump version: 1.19.0 → 1.20.0

---------

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

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

- feature: Add support for nested fields in the ``SPIDERMON_VALIDATION_ERRORS_FIELD`` setting (`PR#416 <https://github.com/scrapinghub/spidermon/pull/417>`_)
- bug: Fix ItemValidationPipeline using the ``__setitem__`` method without ItemAdaper (`PR#415 <https://github.com/scrapinghub/spidermon/pull/415>`_)
- feature: Improve test coverage for the item validation pipeline (`PR#414 <https://github.com/scrapinghub/spidermon/pull/414>`_)
- bug: Fix ``spidermon.utils.zyte.Client`` not following crawler settings (`PR#411 <https://github.com/scrapinghub/spidermon/pull/411>`_)
- chore: Migrate ReadTheDocs to config file v2 (`PR#408 <https://github.com/scrapinghub/spidermon/pull/408>`_)
- chore: Refactor package requirements (`PR#407 <https://github.com/scrapinghub/spidermon/pull/407>`_)

Backward-incompatible changes
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~

- The ``SPIDERMON_VALIDATION_ERRORS_FIELD`` setting no longer supports a field
name that contains a dot (``.``). Dots are now be treated as field
separators, to support specifying a nested field.

1.19.0 (2023-07-07)
-------------------

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.19.0",
version="1.20.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.19.0
1.20.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.19.0"
__version__ = "1.20.0"

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

0 comments on commit 0cbb563

Please sign in to comment.