Script 'mail_helper' called by obssrc
Hello community,

here is the log from the commit of package python-mkdocs-material for 
openSUSE:Factory checked in at 2023-12-08 22:33:41
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Comparing /work/SRC/openSUSE:Factory/python-mkdocs-material (Old)
 and      /work/SRC/openSUSE:Factory/.python-mkdocs-material.new.25432 (New)
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++

Package is "python-mkdocs-material"

Fri Dec  8 22:33:41 2023 rev:35 rq:1132115 version:9.5.1

Changes:
--------
--- 
/work/SRC/openSUSE:Factory/python-mkdocs-material/python-mkdocs-material.changes
    2023-12-07 19:13:20.453756238 +0100
+++ 
/work/SRC/openSUSE:Factory/.python-mkdocs-material.new.25432/python-mkdocs-material.changes
 2023-12-08 22:34:32.241483590 +0100
@@ -1,0 +2,8 @@
+Fri Dec  8 09:12:29 UTC 2023 - Johannes Kastl <ka...@b1-systems.de>
+
+- update to 9.5.1:
+  * Updated Greek translations
+  * Fixed #6464: Privacy plugin cannot be enabled
+  * Fixed #6461: Sorting blog posts ignores time component in date
+
+-------------------------------------------------------------------

Old:
----
  mkdocs_material-9.5.0.tar.gz

New:
----
  mkdocs_material-9.5.1.tar.gz

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

Other differences:
------------------
++++++ python-mkdocs-material.spec ++++++
--- /var/tmp/diff_new_pack.Jrckrm/_old  2023-12-08 22:34:32.761502724 +0100
+++ /var/tmp/diff_new_pack.Jrckrm/_new  2023-12-08 22:34:32.765502871 +0100
@@ -18,7 +18,7 @@
 
 %{?sle15_python_module_pythons}
 Name:           python-mkdocs-material
-Version:        9.5.0
+Version:        9.5.1
 Release:        0
 Summary:        Material theme for mkdocs
 License:        MIT

++++++ mkdocs_material-9.5.0.tar.gz -> mkdocs_material-9.5.1.tar.gz ++++++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/mkdocs_material-9.5.0/PKG-INFO 
new/mkdocs_material-9.5.1/PKG-INFO
--- old/mkdocs_material-9.5.0/PKG-INFO  2020-02-02 01:00:00.000000000 +0100
+++ new/mkdocs_material-9.5.1/PKG-INFO  2020-02-02 01:00:00.000000000 +0100
@@ -1,6 +1,6 @@
 Metadata-Version: 2.1
 Name: mkdocs-material
-Version: 9.5.0
+Version: 9.5.1
 Summary: Documentation that simply works
 Project-URL: Homepage, https://squidfunk.github.io/mkdocs-material/
 Project-URL: Bug Tracker, https://github.com/squidfunk/mkdocs-material/issues
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/mkdocs_material-9.5.0/material/__init__.py 
new/mkdocs_material-9.5.1/material/__init__.py
--- old/mkdocs_material-9.5.0/material/__init__.py      2020-02-02 
01:00:00.000000000 +0100
+++ new/mkdocs_material-9.5.1/material/__init__.py      2020-02-02 
01:00:00.000000000 +0100
@@ -18,4 +18,4 @@
 # FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS
 # IN THE SOFTWARE.
 
-__version__ = "9.5.0"
+__version__ = "9.5.1"
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' 
old/mkdocs_material-9.5.0/material/plugins/blog/structure/options.py 
new/mkdocs_material-9.5.1/material/plugins/blog/structure/options.py
--- old/mkdocs_material-9.5.0/material/plugins/blog/structure/options.py        
2020-02-02 01:00:00.000000000 +0100
+++ new/mkdocs_material-9.5.1/material/plugins/blog/structure/options.py        
2020-02-02 01:00:00.000000000 +0100
@@ -62,6 +62,14 @@
 
         # Convert all date values to datetime
         for key, value in config[key_name].items():
+
+            # Handle datetime - since datetime is a subclass of date, we need
+            # to check it first, or we lose the time - see https://t.ly/-KG9N
+            if isinstance(value, datetime):
+                continue
+
+            # Handle date - we set 00:00:00 as the default time, if the author
+            # only supplied a date, and convert it to datetime
             if isinstance(value, date):
                 config[key_name][key] = datetime.combine(value, time())
 
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/mkdocs_material-9.5.0/material/templates/base.html 
new/mkdocs_material-9.5.1/material/templates/base.html
--- old/mkdocs_material-9.5.0/material/templates/base.html      2020-02-02 
01:00:00.000000000 +0100
+++ new/mkdocs_material-9.5.1/material/templates/base.html      2020-02-02 
01:00:00.000000000 +0100
@@ -32,7 +32,7 @@
         <link rel="alternate" type="application/rss+xml" title="{{ 
lang.t('rss.updated') }}" href="{{ 'feed_rss_updated.xml' | url }}">
       {% endif %}
       <link rel="icon" href="{{ config.theme.favicon | url }}">
-      <meta name="generator" content="mkdocs-{{ mkdocs_version }}, 
mkdocs-material-9.5.0">
+      <meta name="generator" content="mkdocs-{{ mkdocs_version }}, 
mkdocs-material-9.5.1">
     {% endblock %}
     {% block htmltitle %}
       {% if page.meta and page.meta.title %}
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' 
old/mkdocs_material-9.5.0/material/templates/partials/languages/el.html 
new/mkdocs_material-9.5.1/material/templates/partials/languages/el.html
--- old/mkdocs_material-9.5.0/material/templates/partials/languages/el.html     
2020-02-02 01:00:00.000000000 +0100
+++ new/mkdocs_material-9.5.1/material/templates/partials/languages/el.html     
2020-02-02 01:00:00.000000000 +0100
@@ -13,6 +13,7 @@
   "blog.continue": "Περισσότερα",
   "blog.draft": "Πρόχειρο",
   "blog.index": "Eπιστροφή",
+  "blog.meta": "Μεταδεδομένα",
   "blog.references": "Σχετικοί σύνδεσμοι",
   "clipboard.copy": "Αντιγραφή στο πρόχειρο",
   "clipboard.copied": "Αντιγράφηκε στο πρόχειρο",
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/mkdocs_material-9.5.0/package.json 
new/mkdocs_material-9.5.1/package.json
--- old/mkdocs_material-9.5.0/package.json      2020-02-02 01:00:00.000000000 
+0100
+++ new/mkdocs_material-9.5.1/package.json      2020-02-02 01:00:00.000000000 
+0100
@@ -1,6 +1,6 @@
 {
   "name": "mkdocs-material",
-  "version": "9.5.0",
+  "version": "9.5.1",
   "description": "Documentation that simply works",
   "keywords": [
     "mkdocs",
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/mkdocs_material-9.5.0/pyproject.toml 
new/mkdocs_material-9.5.1/pyproject.toml
--- old/mkdocs_material-9.5.0/pyproject.toml    2020-02-02 01:00:00.000000000 
+0100
+++ new/mkdocs_material-9.5.1/pyproject.toml    2020-02-02 01:00:00.000000000 
+0100
@@ -79,6 +79,7 @@
 "material/group" = "material.plugins.group.plugin:GroupPlugin"
 "material/info" = "material.plugins.info.plugin:InfoPlugin"
 "material/offline" = "material.plugins.offline.plugin:OfflinePlugin"
+"material/privacy" = "material.plugins.privacy.plugin:PrivacyPlugin"
 "material/search" = "material.plugins.search.plugin:SearchPlugin"
 "material/social" = "material.plugins.social.plugin:SocialPlugin"
 "material/tags" = "material.plugins.tags.plugin:TagsPlugin"

Reply via email to