Script 'mail_helper' called by obssrc Hello community, here is the log from the commit of package python-django-silk for openSUSE:Factory checked in at 2026-03-23 17:11:40 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Comparing /work/SRC/openSUSE:Factory/python-django-silk (Old) and /work/SRC/openSUSE:Factory/.python-django-silk.new.8177 (New) ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Package is "python-django-silk" Mon Mar 23 17:11:40 2026 rev:17 rq:1341709 version:5.3.2 Changes: -------- --- /work/SRC/openSUSE:Factory/python-django-silk/python-django-silk.changes 2024-11-12 19:23:54.877724146 +0100 +++ /work/SRC/openSUSE:Factory/.python-django-silk.new.8177/python-django-silk.changes 2026-03-23 17:11:59.766249816 +0100 @@ -1,0 +2,8 @@ +Sun Mar 23 16:38:30 UTC 2025 - Dirk Müller <[email protected]> + +- update to 5.3.2: + * Fix missing image from jQuery UI 1.13.2 + * Adds updated documentation on middleware ordering + * Updated python dependencies + +------------------------------------------------------------------- Old: ---- django_silk-5.3.1.tar.gz New: ---- django_silk-5.3.2.tar.gz ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Other differences: ------------------ ++++++ python-django-silk.spec ++++++ --- /var/tmp/diff_new_pack.e0JTnc/_old 2026-03-23 17:12:00.338273641 +0100 +++ /var/tmp/diff_new_pack.e0JTnc/_new 2026-03-23 17:12:00.338273641 +0100 @@ -1,7 +1,7 @@ # # spec file for package python-django-silk # -# Copyright (c) 2024 SUSE LLC +# Copyright (c) 2026 SUSE LLC and contributors # # All modifications and additions to the file contributed by third parties # remain the property of their copyright owners, unless otherwise agreed @@ -17,7 +17,7 @@ Name: python-django-silk -Version: 5.3.1 +Version: 5.3.2 Release: 0 Summary: Profiling for the Django Framework License: MIT @@ -41,8 +41,8 @@ BuildRequires: %{python_module factory_boy >= 3.3} BuildRequires: %{python_module freezegun} BuildRequires: %{python_module gprof2dot >= 2017.09.19} -BuildRequires: %{python_module networkx >= 2.6} -BuildRequires: %{python_module pydot >= 1.4} +BuildRequires: %{python_module networkx >= 3.2.1} +BuildRequires: %{python_module pydot >= 3.0.3} BuildRequires: %{python_module pytest-cov} BuildRequires: %{python_module pytest-django} BuildRequires: %{python_module pytest} ++++++ django_silk-5.3.1.tar.gz -> django_silk-5.3.2.tar.gz ++++++ diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/django_silk-5.3.1/.pre-commit-config.yaml new/django_silk-5.3.2/.pre-commit-config.yaml --- old/django_silk-5.3.1/.pre-commit-config.yaml 2024-11-09 22:01:05.000000000 +0100 +++ new/django_silk-5.3.2/.pre-commit-config.yaml 2024-12-14 06:53:50.000000000 +0100 @@ -52,7 +52,7 @@ - id: pyupgrade args: ['--keep-mock'] - repo: https://github.com/adamchainz/django-upgrade - rev: '1.22.1' + rev: '1.22.2' hooks: - id: django-upgrade args: [--target-version, '4.2'] diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/django_silk-5.3.1/CHANGELOG.md new/django_silk-5.3.2/CHANGELOG.md --- old/django_silk-5.3.1/CHANGELOG.md 2024-11-09 22:01:05.000000000 +0100 +++ new/django_silk-5.3.2/CHANGELOG.md 2024-12-14 06:53:50.000000000 +0100 @@ -1,6 +1,20 @@ # Change Log ## Unreleased +## [5.3.2](https://github.com/jazzband/django-silk/tree/5.3.2) (2024-12-05) +:release-by: Albert Wang (@albertyw) +[Full Changelog](https://github.com/jazzband/django-silk/compare/5.3.1..5.3.2) + +**Fixes:** + + - Fix missing image from jQuery UI 1.13.2 (#757) @Tatsh + +**Maintenance and Cleanup:** + + - Adds updated documentation on middleware ordering (#758) @SoyJoseC + - Updated python dependencies (#761, #760) @albertyw + + ## [5.3.1](https://github.com/jazzband/django-silk/tree/5.3.1) (2024-11-08) :release-by: Albert Wang (@albertyw) [Full Changelog](https://github.com/jazzband/django-silk/compare/5.3.0..5.3.1) diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/django_silk-5.3.1/PKG-INFO new/django_silk-5.3.2/PKG-INFO --- old/django_silk-5.3.1/PKG-INFO 2024-11-09 22:01:23.220239900 +0100 +++ new/django_silk-5.3.2/PKG-INFO 2024-12-14 06:54:07.738027600 +0100 @@ -1,6 +1,6 @@ Metadata-Version: 2.1 Name: django-silk -Version: 5.3.1 +Version: 5.3.2 Summary: Silky smooth profiling for the Django Framework Home-page: https://github.com/jazzband/django-silk Author: Michael Ford @@ -88,7 +88,7 @@ ) ``` -**Note:** The middleware placement is sensitive. If the middleware before `silk.middleware.SilkyMiddleware` returns from `process_request` then `SilkyMiddleware` will never get the chance to execute. Therefore you must ensure that any middleware placed before never returns anything from `process_request`. See the [django docs](https://docs.djangoproject.com/en/dev/topics/http/middleware/#process-request) for more information on this. +**Note:** The order of middleware is sensitive. If any middleware placed before `silk.middleware.SilkyMiddleware` returns a response without invoking its `get_response`, the `SilkyMiddleware` won’t run. To avoid this, ensure that middleware preceding `SilkyMiddleware` does not bypass or return a response without calling its `get_response`. For further details, check out the [Django documentation](https://docs.djangoproject.com/en/dev/topics/http/middleware/#middleware-order-and-layering). **Note:** If you are using `django.middleware.gzip.GZipMiddleware`, place that **before** `silk.middleware.SilkyMiddleware`, otherwise you will get an encoding error. diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/django_silk-5.3.1/README.md new/django_silk-5.3.2/README.md --- old/django_silk-5.3.1/README.md 2024-11-09 22:01:05.000000000 +0100 +++ new/django_silk-5.3.2/README.md 2024-12-14 06:53:50.000000000 +0100 @@ -56,7 +56,7 @@ ) ``` -**Note:** The middleware placement is sensitive. If the middleware before `silk.middleware.SilkyMiddleware` returns from `process_request` then `SilkyMiddleware` will never get the chance to execute. Therefore you must ensure that any middleware placed before never returns anything from `process_request`. See the [django docs](https://docs.djangoproject.com/en/dev/topics/http/middleware/#process-request) for more information on this. +**Note:** The order of middleware is sensitive. If any middleware placed before `silk.middleware.SilkyMiddleware` returns a response without invoking its `get_response`, the `SilkyMiddleware` won’t run. To avoid this, ensure that middleware preceding `SilkyMiddleware` does not bypass or return a response without calling its `get_response`. For further details, check out the [Django documentation](https://docs.djangoproject.com/en/dev/topics/http/middleware/#middleware-order-and-layering). **Note:** If you are using `django.middleware.gzip.GZipMiddleware`, place that **before** `silk.middleware.SilkyMiddleware`, otherwise you will get an encoding error. diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/django_silk-5.3.1/django_silk.egg-info/PKG-INFO new/django_silk-5.3.2/django_silk.egg-info/PKG-INFO --- old/django_silk-5.3.1/django_silk.egg-info/PKG-INFO 2024-11-09 22:01:23.000000000 +0100 +++ new/django_silk-5.3.2/django_silk.egg-info/PKG-INFO 2024-12-14 06:54:07.000000000 +0100 @@ -1,6 +1,6 @@ Metadata-Version: 2.1 Name: django-silk -Version: 5.3.1 +Version: 5.3.2 Summary: Silky smooth profiling for the Django Framework Home-page: https://github.com/jazzband/django-silk Author: Michael Ford @@ -88,7 +88,7 @@ ) ``` -**Note:** The middleware placement is sensitive. If the middleware before `silk.middleware.SilkyMiddleware` returns from `process_request` then `SilkyMiddleware` will never get the chance to execute. Therefore you must ensure that any middleware placed before never returns anything from `process_request`. See the [django docs](https://docs.djangoproject.com/en/dev/topics/http/middleware/#process-request) for more information on this. +**Note:** The order of middleware is sensitive. If any middleware placed before `silk.middleware.SilkyMiddleware` returns a response without invoking its `get_response`, the `SilkyMiddleware` won’t run. To avoid this, ensure that middleware preceding `SilkyMiddleware` does not bypass or return a response without calling its `get_response`. For further details, check out the [Django documentation](https://docs.djangoproject.com/en/dev/topics/http/middleware/#middleware-order-and-layering). **Note:** If you are using `django.middleware.gzip.GZipMiddleware`, place that **before** `silk.middleware.SilkyMiddleware`, otherwise you will get an encoding error. diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/django_silk-5.3.1/django_silk.egg-info/SOURCES.txt new/django_silk-5.3.2/django_silk.egg-info/SOURCES.txt --- old/django_silk-5.3.1/django_silk.egg-info/SOURCES.txt 2024-11-09 22:01:23.000000000 +0100 +++ new/django_silk-5.3.2/django_silk.egg-info/SOURCES.txt 2024-12-14 06:54:07.000000000 +0100 @@ -245,6 +245,7 @@ silk/static/silk/lib/images/ui-bg_glass_95_fef1ec_1x400.png silk/static/silk/lib/images/ui-bg_gloss-wave_35_f6a828_500x100.png silk/static/silk/lib/images/ui-bg_highlight-soft_100_eeeeee_1x100.png +silk/static/silk/lib/images/ui-bg_highlight-soft_75_cccccc_1x100.png silk/static/silk/lib/images/ui-bg_highlight-soft_75_ffe45c_1x100.png silk/static/silk/lib/images/ui-icons_222222_256x240.png silk/static/silk/lib/images/ui-icons_228ef1_256x240.png diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/django_silk-5.3.1/docs/troubleshooting.rst new/django_silk-5.3.2/docs/troubleshooting.rst --- old/django_silk-5.3.1/docs/troubleshooting.rst 2024-11-09 22:01:05.000000000 +0100 +++ new/django_silk-5.3.2/docs/troubleshooting.rst 2024-12-14 06:53:50.000000000 +0100 @@ -21,9 +21,7 @@ Middleware ---------- -The middleware is placement sensitive. If the middleware before ``silk.middleware.SilkyMiddleware`` returns from ``process_request`` then ``SilkyMiddleware`` will never get the chance to execute. Therefore you must ensure that any middleware placed before never returns anything from ``process_request``. See the `django docs <https://docs.djangoproject.com/en/dev/topics/http/middleware/#process-request>`_ for more information on this. - -This `GitHub issue <https://github.com/jazzband/django-silk/issues/12>`_ also has information on dealing with middleware problems. +The order of middleware is sensitive. If any middleware placed before ``silk.middleware.SilkyMiddleware`` returns a response without invoking its ``get_response``, the ``SilkyMiddleware`` won’t run. To avoid this, ensure that middleware preceding ``SilkyMiddleware`` does not bypass or return a response without calling its ``get_response``. For further details, check out the `Django documentation <https://docs.djangoproject.com/en/dev/topics/http/middleware/#middleware-order-and-layering>`. Garbage Collection ------------------ diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/django_silk-5.3.1/package.json new/django_silk-5.3.2/package.json --- old/django_silk-5.3.1/package.json 2024-11-09 22:01:05.000000000 +0100 +++ new/django_silk-5.3.2/package.json 2024-12-14 06:53:50.000000000 +0100 @@ -1,6 +1,6 @@ { "name": "silk", - "version": "5.3.1", + "version": "5.3.2", "description": "https://github.com/jazzband/django-silk", "main": "index.js", "directories": { diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/django_silk-5.3.1/requirements.txt new/django_silk-5.3.2/requirements.txt --- old/django_silk-5.3.1/requirements.txt 2024-11-09 22:01:05.000000000 +0100 +++ new/django_silk-5.3.2/requirements.txt 2024-12-14 06:53:50.000000000 +0100 @@ -1,8 +1,9 @@ -coverage==7.6.1 +coverage==7.6.8 factory-boy==3.3.1 freezegun==1.5.1 -networkx==2.6 -pydot==1.4.2 +networkx==3.2.1 +pillow==11.0.0 +pydot==3.0.3 pygments==2.18.0 -pytest-cov==5.0.0 +pytest-cov==6.0.0 pytest-django==4.9.0 Binary files old/django_silk-5.3.1/silk/static/silk/lib/images/ui-bg_highlight-soft_75_cccccc_1x100.png and new/django_silk-5.3.2/silk/static/silk/lib/images/ui-bg_highlight-soft_75_cccccc_1x100.png differ
