Script 'mail_helper' called by obssrc
Hello community,

here is the log from the commit of package python-python-gitlab for 
openSUSE:Factory checked in at 2026-03-02 17:40:43
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Comparing /work/SRC/openSUSE:Factory/python-python-gitlab (Old)
 and      /work/SRC/openSUSE:Factory/.python-python-gitlab.new.29461 (New)
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++

Package is "python-python-gitlab"

Mon Mar  2 17:40:43 2026 rev:30 rq:1335735 version:8.1.0

Changes:
--------
--- 
/work/SRC/openSUSE:Factory/python-python-gitlab/python-python-gitlab.changes    
    2026-02-03 21:36:04.396145605 +0100
+++ 
/work/SRC/openSUSE:Factory/.python-python-gitlab.new.29461/python-python-gitlab.changes
     2026-03-02 17:41:30.066265083 +0100
@@ -1,0 +2,11 @@
+Mon Mar  2 06:20:48 UTC 2026 - Johannes Kastl 
<[email protected]>
+
+- update to 8.1.0:
+  * Bug Fixes
+    - types: Add explicit submodule import for pyright
+      compatibility (84ad3fd)
+  * Features
+    - api: Add support for order_by filter in runner jobs (d5dc73d)
+    - api: Add support for sort filter in runner jobs (b117ee3)
+
+-------------------------------------------------------------------

Old:
----
  python_gitlab-8.0.0.tar.gz

New:
----
  python_gitlab-8.1.0.tar.gz

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

Other differences:
------------------
++++++ python-python-gitlab.spec ++++++
--- /var/tmp/diff_new_pack.ZsU9S0/_old  2026-03-02 17:41:30.718292049 +0100
+++ /var/tmp/diff_new_pack.ZsU9S0/_new  2026-03-02 17:41:30.722292215 +0100
@@ -17,7 +17,7 @@
 
 
 Name:           python-python-gitlab
-Version:        8.0.0
+Version:        8.1.0
 Release:        0
 Summary:        Python module for interacting with the GitLab API
 License:        LGPL-3.0-only

++++++ python_gitlab-8.0.0.tar.gz -> python_gitlab-8.1.0.tar.gz ++++++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/python_gitlab-8.0.0/CHANGELOG.md 
new/python_gitlab-8.1.0/CHANGELOG.md
--- old/python_gitlab-8.0.0/CHANGELOG.md        2026-01-28 02:22:03.000000000 
+0100
+++ new/python_gitlab-8.1.0/CHANGELOG.md        2026-02-28 02:26:08.000000000 
+0100
@@ -2,6 +2,22 @@
 
 All versions below are listed in reverse chronological order.
 
+## v8.1.0 (2026-02-28)
+
+### Bug Fixes
+
+- **types**: Add explicit submodule import for pyright compatibility
+  
([`84ad3fd`](https://github.com/python-gitlab/python-gitlab/commit/84ad3fd19cfbc236e962ac77c910571b0888c000))
+
+### Features
+
+- **api**: Add support for order_by filter in runner jobs
+  
([`d5dc73d`](https://github.com/python-gitlab/python-gitlab/commit/d5dc73d0f82a15d96a956c1d868c253c9586e1bf))
+
+- **api**: Add support for sort filter in runner jobs
+  
([`b117ee3`](https://github.com/python-gitlab/python-gitlab/commit/b117ee3d139f422e463ebeb5007517a2052af8a4))
+
+
 ## v8.0.0 (2026-01-28)
 
 ### Bug Fixes
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/python_gitlab-8.0.0/PKG-INFO 
new/python_gitlab-8.1.0/PKG-INFO
--- old/python_gitlab-8.0.0/PKG-INFO    2026-01-28 02:22:09.971166400 +0100
+++ new/python_gitlab-8.1.0/PKG-INFO    2026-02-28 02:26:14.690398200 +0100
@@ -1,6 +1,6 @@
 Metadata-Version: 2.4
 Name: python-gitlab
-Version: 8.0.0
+Version: 8.1.0
 Summary: The python wrapper for the GitLab REST and GraphQL APIs.
 Author-email: Gauvain Pocentek <[email protected]>
 Maintainer-email: John Villalovos <[email protected]>, Max Wittig 
<[email protected]>, Nejc Habjan <[email protected]>, Roger Meier 
<[email protected]>
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/python_gitlab-8.0.0/gitlab/_version.py 
new/python_gitlab-8.1.0/gitlab/_version.py
--- old/python_gitlab-8.0.0/gitlab/_version.py  2026-01-28 02:22:03.000000000 
+0100
+++ new/python_gitlab-8.1.0/gitlab/_version.py  2026-02-28 02:26:08.000000000 
+0100
@@ -3,4 +3,4 @@
 __email__ = "[email protected]"
 __license__ = "LGPL3"
 __title__ = "python-gitlab"
-__version__ = "8.0.0"
+__version__ = "8.1.0"
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' 
old/python_gitlab-8.0.0/gitlab/v4/objects/repositories.py 
new/python_gitlab-8.1.0/gitlab/v4/objects/repositories.py
--- old/python_gitlab-8.0.0/gitlab/v4/objects/repositories.py   2026-01-28 
02:21:53.000000000 +0100
+++ new/python_gitlab-8.1.0/gitlab/v4/objects/repositories.py   2026-02-28 
02:25:57.000000000 +0100
@@ -17,6 +17,8 @@
 
 if TYPE_CHECKING:
     # When running mypy we use these as the base classes
+    import gitlab.base
+
     _RestObjectBase = gitlab.base.RESTObject
 else:
     _RestObjectBase = object
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/python_gitlab-8.0.0/gitlab/v4/objects/runners.py 
new/python_gitlab-8.1.0/gitlab/v4/objects/runners.py
--- old/python_gitlab-8.0.0/gitlab/v4/objects/runners.py        2026-01-28 
02:21:53.000000000 +0100
+++ new/python_gitlab-8.1.0/gitlab/v4/objects/runners.py        2026-02-28 
02:25:57.000000000 +0100
@@ -38,7 +38,7 @@
     _path = "/runners/{runner_id}/jobs"
     _obj_cls = RunnerJob
     _from_parent_attrs = {"runner_id": "id"}
-    _list_filters = ("status",)
+    _list_filters = ("status", "order_by", "sort")
 
 
 class Runner(SaveMixin, ObjectDeleteMixin, RESTObject):
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/python_gitlab-8.0.0/python_gitlab.egg-info/PKG-INFO 
new/python_gitlab-8.1.0/python_gitlab.egg-info/PKG-INFO
--- old/python_gitlab-8.0.0/python_gitlab.egg-info/PKG-INFO     2026-01-28 
02:22:09.000000000 +0100
+++ new/python_gitlab-8.1.0/python_gitlab.egg-info/PKG-INFO     2026-02-28 
02:26:14.000000000 +0100
@@ -1,6 +1,6 @@
 Metadata-Version: 2.4
 Name: python-gitlab
-Version: 8.0.0
+Version: 8.1.0
 Summary: The python wrapper for the GitLab REST and GraphQL APIs.
 Author-email: Gauvain Pocentek <[email protected]>
 Maintainer-email: John Villalovos <[email protected]>, Max Wittig 
<[email protected]>, Nejc Habjan <[email protected]>, Roger Meier 
<[email protected]>
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/python_gitlab-8.0.0/requirements-lint.txt 
new/python_gitlab-8.1.0/requirements-lint.txt
--- old/python_gitlab-8.0.0/requirements-lint.txt       2026-01-28 
02:21:53.000000000 +0100
+++ new/python_gitlab-8.1.0/requirements-lint.txt       2026-02-28 
02:25:57.000000000 +0100
@@ -1,14 +1,14 @@
 -r requirements.txt
 argcomplete==2.0.0
 black==26.1.0
-commitizen==4.12.1
+commitizen==4.13.8
 flake8==7.3.0
-isort==7.0.0
+isort==8.0.0
 mypy==1.19.1
-pylint==4.0.4
+pylint==4.0.5
 pytest==9.0.2
-responses==0.25.8
+responses==0.26.0
 respx==0.22.0
 types-PyYAML==6.0.12.20250915
 types-requests==2.32.4.20260107
-types-setuptools==80.10.0.20260124
+types-setuptools==82.0.0.20260210
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/python_gitlab-8.0.0/requirements-test.txt 
new/python_gitlab-8.1.0/requirements-test.txt
--- old/python_gitlab-8.0.0/requirements-test.txt       2026-01-28 
02:21:53.000000000 +0100
+++ new/python_gitlab-8.1.0/requirements-test.txt       2026-02-28 
02:25:57.000000000 +0100
@@ -1,13 +1,13 @@
 -r requirements.txt
 anyio==4.12.1
 build==1.4.0
-coverage==7.13.2
+coverage==7.13.4
 pytest-console-scripts==1.4.1
 pytest-cov==7.0.0
 pytest-github-actions-annotate-failures==0.3.0
 pytest==9.0.2
 PyYaml==6.0.3
-responses==0.25.8
+responses==0.26.0
 respx==0.22.0
-trio==0.32.0
+trio==0.33.0
 wheel==0.46.3
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/python_gitlab-8.0.0/tests/functional/fixtures/.env 
new/python_gitlab-8.1.0/tests/functional/fixtures/.env
--- old/python_gitlab-8.0.0/tests/functional/fixtures/.env      2026-01-28 
02:21:53.000000000 +0100
+++ new/python_gitlab-8.1.0/tests/functional/fixtures/.env      2026-02-28 
02:25:57.000000000 +0100
@@ -1,4 +1,4 @@
 GITLAB_IMAGE=gitlab/gitlab-ee
-GITLAB_TAG=18.8.2-ee.0
+GITLAB_TAG=18.9.0-ee.0
 GITLAB_RUNNER_IMAGE=gitlab/gitlab-runner
 GITLAB_RUNNER_TAG=96856197

Reply via email to