3131 expiring_auth_has_expired ,
3232 ExpiringAuth ,
3333)
34- from .._meta import preview
3534
3635
3736if t .TYPE_CHECKING :
@@ -331,12 +330,6 @@ class AsyncRotatingClientCertificateProvider(AsyncClientCertificateProvider):
331330 From that point on, the new certificate will be used for all new
332331 connections until :meth:`update_certificate` is called again and so on.
333332
334- **This is a preview** (see :ref:`filter-warnings-ref`).
335- It might be changed without following the deprecation policy.
336-
337- See also
338- https://github.com/neo4j/neo4j-python-driver/wiki/preview-features
339-
340333 Example::
341334
342335 from neo4j import AsyncGraphDatabase
@@ -386,6 +379,8 @@ class AsyncRotatingClientCertificateProvider(AsyncClientCertificateProvider):
386379 implementation internal. This entails removing the possibility to
387380 directly instantiate this class. Please use the factory method
388381 :meth:`.AsyncClientCertificateProviders.rotating` instead.
382+
383+ .. versionchanged:: 5.27 Stabilized from preview.
389384 """
390385
391386 @abc .abstractmethod
@@ -414,17 +409,12 @@ class AsyncClientCertificateProviders:
414409 """
415410 A collection of :class:`.AsyncClientCertificateProvider` factories.
416411
417- **This is a preview** (see :ref:`filter-warnings-ref`).
418- It might be changed without following the deprecation policy.
419-
420- See also
421- https://github.com/neo4j/neo4j-python-driver/wiki/preview-features
422-
423412 .. versionadded:: 5.19
413+
414+ .. versionchanged:: 5.27 Stabilized from preview.
424415 """
425416
426417 @staticmethod
427- @preview ("Mutual TLS is a preview feature." )
428418 def static (cert : ClientCertificate ) -> AsyncClientCertificateProvider :
429419 """
430420 Create a static client certificate provider.
@@ -435,7 +425,6 @@ def static(cert: ClientCertificate) -> AsyncClientCertificateProvider:
435425 return _AsyncStaticClientCertificateProvider (cert )
436426
437427 @staticmethod
438- @preview ("Mutual TLS is a preview feature." )
439428 def rotating (
440429 initial_cert : ClientCertificate ,
441430 ) -> AsyncRotatingClientCertificateProvider :
0 commit comments