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 2024-12-02 16:59:37
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Comparing /work/SRC/openSUSE:Factory/python-mkdocs-material (Old)
 and      /work/SRC/openSUSE:Factory/.python-mkdocs-material.new.28523 (New)
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++

Package is "python-mkdocs-material"

Mon Dec  2 16:59:37 2024 rev:73 rq:1227682 version:9.5.47

Changes:
--------
--- 
/work/SRC/openSUSE:Factory/python-mkdocs-material/python-mkdocs-material.changes
    2024-11-26 20:57:40.846875077 +0100
+++ 
/work/SRC/openSUSE:Factory/.python-mkdocs-material.new.28523/python-mkdocs-material.changes
 2024-12-02 17:00:08.243730584 +0100
@@ -1,0 +2,8 @@
+Sun Dec  1 10:00:20 UTC 2024 - Johannes Kastl 
<[email protected]>
+
+- update to 9.5.47:
+  * Fixed #7750: Numeric tags break search
+  * Fixed #7748: Blog plugin breaks when using future drafts
+    (9.5.45 regression)
+
+-------------------------------------------------------------------

Old:
----
  mkdocs_material-9.5.46.tar.gz

New:
----
  mkdocs_material-9.5.47.tar.gz

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

Other differences:
------------------
++++++ python-mkdocs-material.spec ++++++
--- /var/tmp/diff_new_pack.wzCI3L/_old  2024-12-02 17:00:08.739751570 +0100
+++ /var/tmp/diff_new_pack.wzCI3L/_new  2024-12-02 17:00:08.743751739 +0100
@@ -18,7 +18,7 @@
 
 %{?sle15_python_module_pythons}
 Name:           python-mkdocs-material
-Version:        9.5.46
+Version:        9.5.47
 Release:        0
 Summary:        Material theme for mkdocs
 License:        MIT

++++++ mkdocs_material-9.5.46.tar.gz -> mkdocs_material-9.5.47.tar.gz ++++++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/mkdocs_material-9.5.46/PKG-INFO 
new/mkdocs_material-9.5.47/PKG-INFO
--- old/mkdocs_material-9.5.46/PKG-INFO 2020-02-02 01:00:00.000000000 +0100
+++ new/mkdocs_material-9.5.47/PKG-INFO 2020-02-02 01:00:00.000000000 +0100
@@ -1,6 +1,6 @@
 Metadata-Version: 2.3
 Name: mkdocs-material
-Version: 9.5.46
+Version: 9.5.47
 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.46/material/__init__.py 
new/mkdocs_material-9.5.47/material/__init__.py
--- old/mkdocs_material-9.5.46/material/__init__.py     2020-02-02 
01:00:00.000000000 +0100
+++ new/mkdocs_material-9.5.47/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.46"
+__version__ = "9.5.47"
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' 
old/mkdocs_material-9.5.46/material/plugins/blog/plugin.py 
new/mkdocs_material-9.5.47/material/plugins/blog/plugin.py
--- old/mkdocs_material-9.5.46/material/plugins/blog/plugin.py  2020-02-02 
01:00:00.000000000 +0100
+++ new/mkdocs_material-9.5.47/material/plugins/blog/plugin.py  2020-02-02 
01:00:00.000000000 +0100
@@ -26,7 +26,7 @@
 import yaml
 
 from babel.dates import format_date, format_datetime
-from datetime import datetime
+from datetime import datetime, timezone
 from jinja2 import pass_context
 from jinja2.runtime import Context
 from mkdocs.config.defaults import MkDocsConfig
@@ -370,7 +370,7 @@
         # and must be explicitly enabled by the author.
         if not isinstance(post.config.draft, bool):
             if self.config.draft_if_future_date:
-                return post.config.date.created > datetime.now()
+                return post.config.date.created > datetime.now(timezone.utc)
 
         # Post might be a draft
         return bool(post.config.draft)
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' 
old/mkdocs_material-9.5.46/material/plugins/search/plugin.py 
new/mkdocs_material-9.5.47/material/plugins/search/plugin.py
--- old/mkdocs_material-9.5.46/material/plugins/search/plugin.py        
2020-02-02 01:00:00.000000000 +0100
+++ new/mkdocs_material-9.5.47/material/plugins/search/plugin.py        
2020-02-02 01:00:00.000000000 +0100
@@ -215,7 +215,7 @@
             entry["tags"] = []
             for name in tags:
                 if name and isinstance(name, (str, int, float, bool)):
-                    entry["tags"].append(name)
+                    entry["tags"].append(str(name))
 
         # Set document boost
         search = page.meta.get("search") or {}
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/mkdocs_material-9.5.46/material/templates/base.html 
new/mkdocs_material-9.5.47/material/templates/base.html
--- old/mkdocs_material-9.5.46/material/templates/base.html     2020-02-02 
01:00:00.000000000 +0100
+++ new/mkdocs_material-9.5.47/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.46">
+      <meta name="generator" content="mkdocs-{{ mkdocs_version }}, 
mkdocs-material-9.5.47">
     {% 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.46/package.json 
new/mkdocs_material-9.5.47/package.json
--- old/mkdocs_material-9.5.46/package.json     2020-02-02 01:00:00.000000000 
+0100
+++ new/mkdocs_material-9.5.47/package.json     2020-02-02 01:00:00.000000000 
+0100
@@ -1,6 +1,6 @@
 {
   "name": "mkdocs-material",
-  "version": "9.5.46",
+  "version": "9.5.47",
   "description": "Documentation that simply works",
   "keywords": [
     "mkdocs",
@@ -62,11 +62,11 @@
     "@types/fuzzaldrin-plus": "^0.6.5",
     "@types/html-minifier-terser": "^7.0.2",
     "@types/lunr": "^2.3.7",
-    "@types/node": "^22.9.3",
+    "@types/node": "^22.10.1",
     "@types/resize-observer-browser": "^0.1.11",
     "@types/sass": "^1.45.0",
-    "@typescript-eslint/eslint-plugin": "^8.15.0",
-    "@typescript-eslint/parser": "^8.15.0",
+    "@typescript-eslint/eslint-plugin": "^8.16.0",
+    "@typescript-eslint/parser": "^8.16.0",
     "autoprefixer": "^10.4.20",
     "chokidar": "^4.0.1",
     "cssnano": "5.1.0",
@@ -74,7 +74,7 @@
     "eslint": "8.57.0",
     "eslint-plugin-eslint-comments": "^3.2.0",
     "eslint-plugin-import": "^2.31.0",
-    "eslint-plugin-jsdoc": "^50.5.0",
+    "eslint-plugin-jsdoc": "^50.6.0",
     "eslint-plugin-no-null": "^1.0.2",
     "github-types": "^1.0.0",
     "gitlab": "^14.2.2",
@@ -93,10 +93,10 @@
     "rimraf": "^6.0.1",
     "sass": "^1.81.0",
     "simple-icons": "^13.18.0",
-    "stylelint": "^16.10.0",
+    "stylelint": "^16.11.0",
     "stylelint-config-recess-order": "^5.1.1",
     "stylelint-config-recommended": "^14.0.1",
-    "stylelint-config-standard-scss": "^13.1.0",
+    "stylelint-config-standard-scss": "^14.0.0",
     "stylelint-scss": "^6.10.0",
     "svgo": "^3.3.2",
     "tiny-glob": "^0.2.9",

Reply via email to