Skip to content
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
8 changes: 2 additions & 6 deletions src/neo4j/_api.py
Original file line number Diff line number Diff line change
Expand Up @@ -390,18 +390,14 @@ class NotificationClassification(str, Enum):
This alternative is provided for a consistent naming with
:attr:`.GqlStatusObject.classification`.

**This is a preview**.
It might be changed without following the deprecation policy.

See also
https://github.com/neo4j/neo4j-python-driver/wiki/preview-features

.. seealso:: :attr:`.GqlStatusObject.classification`

.. versionadded:: 5.22

.. versionchanged:: 5.24
Added classification :attr:`.SCHEMA`.

.. versionchanged:: 6.0 Stabilized from preview.
"""

HINT = "HINT"
Expand Down
15 changes: 5 additions & 10 deletions src/neo4j/warnings.py
Original file line number Diff line number Diff line change
Expand Up @@ -53,9 +53,6 @@ class Neo4jWarning(Warning):
Which notifications trigger a warning can be controlled by a
configuration option: :ref:`driver-warn-notification-severity-ref`

**This is a preview**.
It might be changed without following the deprecation policy.

See also
https://github.com/neo4j/neo4j-python-driver/wiki/preview-features

Expand All @@ -66,7 +63,9 @@ class Neo4jWarning(Warning):
.. versionadded:: 5.21

.. versionchanged:: 6.0
:attr:`.notification` is now of type :class:`.SummaryNotification`.
* :attr:`.notification` is now of type :class:`.GqlStatusObject`
instead of :class:`.SummaryNotification`.
* Stabilized from preview.

.. seealso:: :ref:`development-environment-ref`
"""
Expand All @@ -93,13 +92,9 @@ class Neo4jDeprecationWarning(Neo4jWarning, DeprecationWarning):
This warning is a subclass of :class:`DeprecationWarning`.
This means that Python will not show this warning by default.

**This is a preview**.
It might be changed without following the deprecation policy.

See also
https://github.com/neo4j/neo4j-python-driver/wiki/preview-features

:param notification: The notification that triggered the warning.

.. versionadded:: 5.21

.. versionchanged:: 6.0 Stabilized from preview.
"""