Script 'mail_helper' called by obssrc
Hello community,

here is the log from the commit of package python-readthedocs-sphinx-ext for 
openSUSE:Factory checked in at 2022-10-14 15:40:17
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Comparing /work/SRC/openSUSE:Factory/python-readthedocs-sphinx-ext (Old)
 and      /work/SRC/openSUSE:Factory/.python-readthedocs-sphinx-ext.new.2275 
(New)
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++

Package is "python-readthedocs-sphinx-ext"

Fri Oct 14 15:40:17 2022 rev:11 rq:1010381 version:2.1.9

Changes:
--------
--- 
/work/SRC/openSUSE:Factory/python-readthedocs-sphinx-ext/python-readthedocs-sphinx-ext.changes
      2022-06-06 11:10:12.171279862 +0200
+++ 
/work/SRC/openSUSE:Factory/.python-readthedocs-sphinx-ext.new.2275/python-readthedocs-sphinx-ext.changes
    2022-10-14 15:40:28.379711375 +0200
@@ -1,0 +2,6 @@
+Wed Oct 12 15:50:12 UTC 2022 - Yogalakshmi Arunachalam <[email protected]>
+
+- Update to version 2.1.9 
+  * fix: Only add external version warning nodes on documents (#114)
+
+-------------------------------------------------------------------

Old:
----
  readthedocs-sphinx-ext-2.1.8.tar.gz

New:
----
  readthedocs-sphinx-ext-2.1.9.tar.gz

++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++

Other differences:
------------------
++++++ python-readthedocs-sphinx-ext.spec ++++++
--- /var/tmp/diff_new_pack.IaCrj2/_old  2022-10-14 15:40:28.931712297 +0200
+++ /var/tmp/diff_new_pack.IaCrj2/_new  2022-10-14 15:40:28.935712304 +0200
@@ -18,7 +18,7 @@
 
 %{?!python_module:%define python_module() python-%{**} python3-%{**}}
 Name:           python-readthedocs-sphinx-ext
-Version:        2.1.8
+Version:        2.1.9
 Release:        0
 Summary:        Sphinx extension for Read the Docs overrides
 License:        MIT

++++++ readthedocs-sphinx-ext-2.1.8.tar.gz -> 
readthedocs-sphinx-ext-2.1.9.tar.gz ++++++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/readthedocs-sphinx-ext-2.1.8/PKG-INFO 
new/readthedocs-sphinx-ext-2.1.9/PKG-INFO
--- old/readthedocs-sphinx-ext-2.1.8/PKG-INFO   2022-06-01 20:48:20.639508500 
+0200
+++ new/readthedocs-sphinx-ext-2.1.9/PKG-INFO   2022-09-15 00:34:22.603376900 
+0200
@@ -1,6 +1,6 @@
 Metadata-Version: 2.1
 Name: readthedocs-sphinx-ext
-Version: 2.1.8
+Version: 2.1.9
 Summary: Sphinx extension for Read the Docs overrides
 Home-page: http://github.com/readthedocs/readthedocs-sphinx-ext
 Author: Read the Docs, Inc
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' 
old/readthedocs-sphinx-ext-2.1.8/readthedocs_ext/external_version_warning.py 
new/readthedocs-sphinx-ext-2.1.9/readthedocs_ext/external_version_warning.py
--- 
old/readthedocs-sphinx-ext-2.1.8/readthedocs_ext/external_version_warning.py    
    2022-05-11 19:52:14.000000000 +0200
+++ 
new/readthedocs-sphinx-ext-2.1.9/readthedocs_ext/external_version_warning.py    
    2022-09-15 00:10:42.000000000 +0200
@@ -16,6 +16,15 @@
     If the version type is external this will show a warning banner
     at the top of each page of the documentation.
     """
+    # Sphinx itself always emits this with a document node,
+    # but extensions can also call `resolve_references` with other types
+    # of nodes, we don't want to inject the banner in those.
+    # Details:
+    # - https://github.com/readthedocs/readthedocs-sphinx-ext/issues/113
+    # - https://github.com/readthedocs/readthedocs-sphinx-ext/pull/114
+    if not isinstance(doctree, nodes.document):
+        return
+
     is_gitlab = app.config.html_context.get('display_gitlab')
     name = 'merge request' if is_gitlab else 'pull request'
 
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' 
old/readthedocs-sphinx-ext-2.1.8/readthedocs_sphinx_ext.egg-info/PKG-INFO 
new/readthedocs-sphinx-ext-2.1.9/readthedocs_sphinx_ext.egg-info/PKG-INFO
--- old/readthedocs-sphinx-ext-2.1.8/readthedocs_sphinx_ext.egg-info/PKG-INFO   
2022-06-01 20:48:19.000000000 +0200
+++ new/readthedocs-sphinx-ext-2.1.9/readthedocs_sphinx_ext.egg-info/PKG-INFO   
2022-09-15 00:34:22.000000000 +0200
@@ -1,6 +1,6 @@
 Metadata-Version: 2.1
 Name: readthedocs-sphinx-ext
-Version: 2.1.8
+Version: 2.1.9
 Summary: Sphinx extension for Read the Docs overrides
 Home-page: http://github.com/readthedocs/readthedocs-sphinx-ext
 Author: Read the Docs, Inc
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/readthedocs-sphinx-ext-2.1.8/setup.py 
new/readthedocs-sphinx-ext-2.1.9/setup.py
--- old/readthedocs-sphinx-ext-2.1.8/setup.py   2022-06-01 20:47:36.000000000 
+0200
+++ new/readthedocs-sphinx-ext-2.1.9/setup.py   2022-09-15 00:13:08.000000000 
+0200
@@ -4,7 +4,7 @@
 
 setup(
     name='readthedocs-sphinx-ext',
-    version='2.1.8',
+    version='2.1.9',
     author='Read the Docs, Inc',
     author_email='[email protected]',
     url='http://github.com/readthedocs/readthedocs-sphinx-ext',

Reply via email to