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 2025-08-04 15:25:52
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Comparing /work/SRC/openSUSE:Factory/python-python-gitlab (Old)
 and      /work/SRC/openSUSE:Factory/.python-python-gitlab.new.1085 (New)
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++

Package is "python-python-gitlab"

Mon Aug  4 15:25:52 2025 rev:23 rq:1297486 version:6.2.0

Changes:
--------
--- 
/work/SRC/openSUSE:Factory/python-python-gitlab/python-python-gitlab.changes    
    2025-07-17 17:20:59.005293434 +0200
+++ 
/work/SRC/openSUSE:Factory/.python-python-gitlab.new.1085/python-python-gitlab.changes
      2025-08-04 15:26:59.631465309 +0200
@@ -1,0 +2,24 @@
+Sun Aug  3 14:52:35 UTC 2025 - Johannes Kastl 
<opensuse_buildserv...@ojkastl.de>
+
+- update to 6.2.0:
+  * Build System
+    - release: Use correct python-semantic-release/publish-action
+      (2f20634)
+  * Chores
+    - deps: Update all non-major dependencies (3b8fbf4)
+    - deps: Update all non-major dependencies (be25c16)
+    - deps: Update all non-major dependencies (9c095bd)
+    - deps: Update all non-major dependencies (d25b33f)
+    - deps: Update dependency furo to v2025 (b483ece)
+    - deps: Update pre-commit hook maxbrunet/pre-commit-renovate to
+      v41 (d3f31a2)
+  * Continuous Integration
+    - stale: Improve formatting of stale message (0ef20d1)
+    - stale: Increase operations-per-run to 500 (326e1a4)
+  * Features
+    - api: Add ListMixin to ProjectIssueDiscussionNoteManager
+      (f908f0e)
+    - api: Add ListMixin to
+      ProjectMergeRequestDiscussionNoteManager (865339a)
+
+-------------------------------------------------------------------

Old:
----
  python_gitlab-6.1.0.tar.gz

New:
----
  python_gitlab-6.2.0.tar.gz

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

Other differences:
------------------
++++++ python-python-gitlab.spec ++++++
--- /var/tmp/diff_new_pack.xhH9ng/_old  2025-08-04 15:27:00.527502929 +0200
+++ /var/tmp/diff_new_pack.xhH9ng/_new  2025-08-04 15:27:00.531503098 +0200
@@ -1,7 +1,7 @@
 #
 # spec file for package python-python-gitlab
 #
-# Copyright (c) 2025 SUSE LLC
+# Copyright (c) 2025 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-python-gitlab
-Version:        6.1.0
+Version:        6.2.0
 Release:        0
 Summary:        Python module for interacting with the GitLab API
 License:        LGPL-3.0-only

++++++ python_gitlab-6.1.0.tar.gz -> python_gitlab-6.2.0.tar.gz ++++++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/python_gitlab-6.1.0/PKG-INFO 
new/python_gitlab-6.2.0/PKG-INFO
--- old/python_gitlab-6.1.0/PKG-INFO    2025-06-28 03:13:51.195393000 +0200
+++ new/python_gitlab-6.2.0/PKG-INFO    2025-07-28 03:25:35.385414800 +0200
@@ -1,6 +1,6 @@
 Metadata-Version: 2.4
 Name: python-gitlab
-Version: 6.1.0
+Version: 6.2.0
 Summary: The python wrapper for the GitLab REST and GraphQL APIs.
 Author-email: Gauvain Pocentek <gauv...@pocentek.net>
 Maintainer-email: John Villalovos <j...@sodarock.com>, Max Wittig 
<max.wit...@siemens.com>, Nejc Habjan <nejc.hab...@siemens.com>, Roger Meier 
<r.me...@siemens.com>
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/python_gitlab-6.1.0/gitlab/_version.py 
new/python_gitlab-6.2.0/gitlab/_version.py
--- old/python_gitlab-6.1.0/gitlab/_version.py  2025-06-28 03:13:44.000000000 
+0200
+++ new/python_gitlab-6.2.0/gitlab/_version.py  2025-07-28 03:25:29.000000000 
+0200
@@ -3,4 +3,4 @@
 __email__ = "gauvainpocen...@gmail.com"
 __license__ = "LGPL3"
 __title__ = "python-gitlab"
-__version__ = "6.1.0"
+__version__ = "6.2.0"
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/python_gitlab-6.1.0/gitlab/v4/objects/notes.py 
new/python_gitlab-6.2.0/gitlab/v4/objects/notes.py
--- old/python_gitlab-6.1.0/gitlab/v4/objects/notes.py  2025-06-28 
03:13:34.000000000 +0200
+++ new/python_gitlab-6.2.0/gitlab/v4/objects/notes.py  2025-07-28 
03:25:18.000000000 +0200
@@ -128,12 +128,7 @@
     pass
 
 
-class ProjectIssueDiscussionNoteManager(
-    GetMixin[ProjectIssueDiscussionNote],
-    CreateMixin[ProjectIssueDiscussionNote],
-    UpdateMixin[ProjectIssueDiscussionNote],
-    DeleteMixin[ProjectIssueDiscussionNote],
-):
+class ProjectIssueDiscussionNoteManager(CRUDMixin[ProjectIssueDiscussionNote]):
     _path = (
         
"/projects/{project_id}/issues/{issue_iid}/discussions/{discussion_id}/notes"
     )
@@ -164,10 +159,7 @@
 
 
 class ProjectMergeRequestDiscussionNoteManager(
-    GetMixin[ProjectMergeRequestDiscussionNote],
-    CreateMixin[ProjectMergeRequestDiscussionNote],
-    UpdateMixin[ProjectMergeRequestDiscussionNote],
-    DeleteMixin[ProjectMergeRequestDiscussionNote],
+    CRUDMixin[ProjectMergeRequestDiscussionNote]
 ):
     _path = (
         "/projects/{project_id}/merge_requests/{mr_iid}/"
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/python_gitlab-6.1.0/python_gitlab.egg-info/PKG-INFO 
new/python_gitlab-6.2.0/python_gitlab.egg-info/PKG-INFO
--- old/python_gitlab-6.1.0/python_gitlab.egg-info/PKG-INFO     2025-06-28 
03:13:51.000000000 +0200
+++ new/python_gitlab-6.2.0/python_gitlab.egg-info/PKG-INFO     2025-07-28 
03:25:35.000000000 +0200
@@ -1,6 +1,6 @@
 Metadata-Version: 2.4
 Name: python-gitlab
-Version: 6.1.0
+Version: 6.2.0
 Summary: The python wrapper for the GitLab REST and GraphQL APIs.
 Author-email: Gauvain Pocentek <gauv...@pocentek.net>
 Maintainer-email: John Villalovos <j...@sodarock.com>, Max Wittig 
<max.wit...@siemens.com>, Nejc Habjan <nejc.hab...@siemens.com>, Roger Meier 
<r.me...@siemens.com>
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/python_gitlab-6.1.0/requirements-docker.txt 
new/python_gitlab-6.2.0/requirements-docker.txt
--- old/python_gitlab-6.1.0/requirements-docker.txt     2025-06-28 
03:13:34.000000000 +0200
+++ new/python_gitlab-6.2.0/requirements-docker.txt     2025-07-28 
03:25:18.000000000 +0200
@@ -1,3 +1,3 @@
 -r requirements.txt
 -r requirements-test.txt
-pytest-docker==3.2.2
+pytest-docker==3.2.3
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/python_gitlab-6.1.0/requirements-docs.txt 
new/python_gitlab-6.2.0/requirements-docs.txt
--- old/python_gitlab-6.1.0/requirements-docs.txt       2025-06-28 
03:13:34.000000000 +0200
+++ new/python_gitlab-6.2.0/requirements-docs.txt       2025-07-28 
03:25:18.000000000 +0200
@@ -1,5 +1,5 @@
 -r requirements.txt
-furo==2024.8.6
+furo==2025.7.19
 jinja2==3.1.6
 myst-parser==4.0.1
 sphinx==8.2.3
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/python_gitlab-6.1.0/requirements-lint.txt 
new/python_gitlab-6.2.0/requirements-lint.txt
--- old/python_gitlab-6.1.0/requirements-lint.txt       2025-06-28 
03:13:34.000000000 +0200
+++ new/python_gitlab-6.2.0/requirements-lint.txt       2025-07-28 
03:25:18.000000000 +0200
@@ -2,11 +2,11 @@
 argcomplete==2.0.0
 black==25.1.0
 commitizen==4.8.3
-flake8==7.2.0
+flake8==7.3.0
 isort==6.0.1
-mypy==1.16.0
+mypy==1.17.0
 pylint==3.3.7
-pytest==8.4.0
+pytest==8.4.1
 responses==0.25.7
 respx==0.22.0
 types-PyYAML==6.0.12.20250516
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/python_gitlab-6.1.0/requirements-test.txt 
new/python_gitlab-6.2.0/requirements-test.txt
--- old/python_gitlab-6.1.0/requirements-test.txt       2025-06-28 
03:13:34.000000000 +0200
+++ new/python_gitlab-6.2.0/requirements-test.txt       2025-07-28 
03:25:18.000000000 +0200
@@ -1,11 +1,11 @@
 -r requirements.txt
 anyio==4.9.0
 build==1.2.2.post1
-coverage==7.9.1
+coverage==7.9.2
 pytest-console-scripts==1.4.1
 pytest-cov==6.2.1
 pytest-github-actions-annotate-failures==0.3.0
-pytest==8.4.0
+pytest==8.4.1
 PyYaml==6.0.2
 responses==0.25.7
 respx==0.22.0

Reply via email to