From 6f116e7bbd6ed5e948f0c4791c2f647029054e35 Mon Sep 17 00:00:00 2001 From: Alessio Bogon <778703+youtux@users.noreply.github.com> Date: Sat, 30 Nov 2024 18:17:56 +0100 Subject: [PATCH] Fix changelog --- CHANGES.rst | 13 ++++++------- 1 file changed, 6 insertions(+), 7 deletions(-) diff --git a/CHANGES.rst b/CHANGES.rst index 75dd79c8..a304e72f 100644 --- a/CHANGES.rst +++ b/CHANGES.rst @@ -8,13 +8,6 @@ and this project adheres to `Semantic Versioning `_ Added +++++ @@ -31,6 +24,12 @@ Removed Fixed +++++ * Fixed an issue with the upcoming pytest release related to the use of ``@pytest.mark.usefixtures`` with an empty list. +* Address many ``mypy`` warnings. The following private attributes are not available anymore: + * ``_pytest.reports.TestReport.scenario`` (replaced by ``pytest_bdd.reporting.test_report_context`` WeakKeyDictionary) + * ``__scenario__`` attribute of test functions generated by the ``@scenario`` (and ``@scenarios``) decorator (replaced by ``pytest_bdd.scenario.scenario_wrapper_template_registry`` WeakKeyDictionary) + * ``_pytest.nodes.Item.__scenario_report__`` (replaced by ``pytest_bdd.reporting.scenario_reports_registry`` WeakKeyDictionary) + * ``_pytest_bdd_step_context`` attribute of internal test function markers (replaced by ``pytest_bdd.steps.step_function_context_registry`` WeakKeyDictionary) + `#658 `_ Security ++++++++