Script 'mail_helper' called by obssrc
Hello community,

here is the log from the commit of package python-traitlets for 
openSUSE:Factory checked in at 2024-04-02 16:37:41
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Comparing /work/SRC/openSUSE:Factory/python-traitlets (Old)
 and      /work/SRC/openSUSE:Factory/.python-traitlets.new.1905 (New)
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++

Package is "python-traitlets"

Tue Apr  2 16:37:41 2024 rev:22 rq:1163584 version:5.14.2

Changes:
--------
--- /work/SRC/openSUSE:Factory/python-traitlets/python-traitlets.changes        
2024-01-21 23:07:41.320045322 +0100
+++ 
/work/SRC/openSUSE:Factory/.python-traitlets.new.1905/python-traitlets.changes  
    2024-04-02 16:37:47.771023978 +0200
@@ -1,0 +2,6 @@
+Fri Mar 29 19:09:27 UTC 2024 - Ben Greiner <[email protected]>
+
+- Update to 5.14.2
+  * Maintenance and upkeep improvements
+
+-------------------------------------------------------------------

Old:
----
  traitlets-5.14.1.tar.gz

New:
----
  traitlets-5.14.2.tar.gz

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

Other differences:
------------------
++++++ python-traitlets.spec ++++++
--- /var/tmp/diff_new_pack.C9mexx/_old  2024-04-02 16:37:48.647056261 +0200
+++ /var/tmp/diff_new_pack.C9mexx/_new  2024-04-02 16:37:48.647056261 +0200
@@ -18,7 +18,7 @@
 
 %{?sle15_python_module_pythons}
 Name:           python-traitlets
-Version:        5.14.1
+Version:        5.14.2
 Release:        0
 Summary:        Traitlets Python configuration system
 License:        BSD-3-Clause
@@ -29,7 +29,7 @@
 BuildRequires:  %{python_module base >= 3.8}
 BuildRequires:  %{python_module hatchling >= 1.5}
 BuildRequires:  %{python_module pip}
-BuildRequires:  %{python_module pytest >= 7}
+BuildRequires:  %{python_module pytest >= 7 with %python-pytest < 8.1}
 BuildRequires:  %{python_module pytest-mock}
 BuildRequires:  fdupes
 BuildRequires:  python-rpm-macros

++++++ traitlets-5.14.1.tar.gz -> traitlets-5.14.2.tar.gz ++++++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/traitlets-5.14.1/.github/workflows/prep-release.yml 
new/traitlets-5.14.2/.github/workflows/prep-release.yml
--- old/traitlets-5.14.1/.github/workflows/prep-release.yml     2020-02-02 
01:00:00.000000000 +0100
+++ new/traitlets-5.14.2/.github/workflows/prep-release.yml     2020-02-02 
01:00:00.000000000 +0100
@@ -12,6 +12,10 @@
       post_version_spec:
         description: "Post Version Specifier"
         required: false
+      silent:
+        description: "Set a placeholder in the changelog and don't publish the 
release."
+        required: false
+        type: boolean
       since:
         description: "Use PRs with activity since this date or git reference"
         required: false
@@ -22,6 +26,8 @@
 jobs:
   prep_release:
     runs-on: ubuntu-latest
+    permissions:
+      contents: write
     steps:
       - uses: jupyterlab/maintainer-tools/.github/actions/base-setup@v1
 
@@ -29,8 +35,9 @@
         id: prep-release
         uses: jupyter-server/jupyter_releaser/.github/actions/prep-release@v2
         with:
-          token: ${{ secrets.ADMIN_GITHUB_TOKEN }}
+          token: ${{ secrets.GITHUB_TOKEN }}
           version_spec: ${{ github.event.inputs.version_spec }}
+          silent: ${{ github.event.inputs.silent }}
           post_version_spec: ${{ github.event.inputs.post_version_spec }}
           target: ${{ github.event.inputs.target }}
           branch: ${{ github.event.inputs.branch }}
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' 
old/traitlets-5.14.1/.github/workflows/publish-changelog.yml 
new/traitlets-5.14.2/.github/workflows/publish-changelog.yml
--- old/traitlets-5.14.1/.github/workflows/publish-changelog.yml        
1970-01-01 01:00:00.000000000 +0100
+++ new/traitlets-5.14.2/.github/workflows/publish-changelog.yml        
2020-02-02 01:00:00.000000000 +0100
@@ -0,0 +1,34 @@
+name: "Publish Changelog"
+on:
+  release:
+    types: [published]
+
+  workflow_dispatch:
+    inputs:
+      branch:
+        description: "The branch to target"
+        required: false
+
+jobs:
+  publish_changelog:
+    runs-on: ubuntu-latest
+    environment: release
+    steps:
+      - uses: jupyterlab/maintainer-tools/.github/actions/base-setup@v1
+
+      - uses: actions/create-github-app-token@v1
+        id: app-token
+        with:
+          app-id: ${{ vars.APP_ID }}
+          private-key: ${{ secrets.APP_PRIVATE_KEY }}
+
+      - name: Publish changelog
+        id: publish-changelog
+        uses: 
jupyter-server/jupyter_releaser/.github/actions/publish-changelog@v2
+        with:
+          token: ${{ steps.app-token.outputs.token }}
+          branch: ${{ github.event.inputs.branch }}
+
+      - name: "** Next Step **"
+        run: |
+          echo "Merge the changelog update PR: ${{ 
steps.publish-changelog.outputs.pr_url }}"
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' 
old/traitlets-5.14.1/.github/workflows/publish-release.yml 
new/traitlets-5.14.2/.github/workflows/publish-release.yml
--- old/traitlets-5.14.1/.github/workflows/publish-release.yml  2020-02-02 
01:00:00.000000000 +0100
+++ new/traitlets-5.14.2/.github/workflows/publish-release.yml  2020-02-02 
01:00:00.000000000 +0100
@@ -15,30 +15,32 @@
 jobs:
   publish_release:
     runs-on: ubuntu-latest
+    environment: release
+    permissions:
+      id-token: write
     steps:
       - uses: jupyterlab/maintainer-tools/.github/actions/base-setup@v1
 
+      - uses: actions/create-github-app-token@v1
+        id: app-token
+        with:
+          app-id: ${{ vars.APP_ID }}
+          private-key: ${{ secrets.APP_PRIVATE_KEY }}
+
       - name: Populate Release
         id: populate-release
         uses: 
jupyter-server/jupyter_releaser/.github/actions/populate-release@v2
         with:
-          token: ${{ secrets.ADMIN_GITHUB_TOKEN }}
-          target: ${{ github.event.inputs.target }}
+          token: ${{ steps.app-token.outputs.token }}
           branch: ${{ github.event.inputs.branch }}
           release_url: ${{ github.event.inputs.release_url }}
           steps_to_skip: ${{ github.event.inputs.steps_to_skip }}
 
       - name: Finalize Release
         id: finalize-release
-        env:
-          PYPI_TOKEN: ${{ secrets.PYPI_TOKEN }}
-          PYPI_TOKEN_MAP: ${{ secrets.PYPI_TOKEN_MAP }}
-          TWINE_USERNAME: __token__
-          NPM_TOKEN: ${{ secrets.NPM_TOKEN }}
-        uses: 
jupyter-server/jupyter-releaser/.github/actions/finalize-release@v2
+        uses: 
jupyter-server/jupyter_releaser/.github/actions/finalize-release@v2
         with:
-          token: ${{ secrets.ADMIN_GITHUB_TOKEN }}
-          target: ${{ github.event.inputs.target }}
+          token: ${{ steps.app-token.outputs.token }}
           release_url: ${{ steps.populate-release.outputs.release_url }}
 
       - name: "** Next Step **"
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/traitlets-5.14.1/.pre-commit-config.yaml 
new/traitlets-5.14.2/.pre-commit-config.yaml
--- old/traitlets-5.14.1/.pre-commit-config.yaml        2020-02-02 
01:00:00.000000000 +0100
+++ new/traitlets-5.14.2/.pre-commit-config.yaml        2020-02-02 
01:00:00.000000000 +0100
@@ -21,7 +21,7 @@
       - id: trailing-whitespace
 
   - repo: https://github.com/python-jsonschema/check-jsonschema
-    rev: 0.27.3
+    rev: 0.27.4
     hooks:
       - id: check-github-workflows
 
@@ -67,7 +67,7 @@
       - id: rst-inline-touching-normal
 
   - repo: https://github.com/astral-sh/ruff-pre-commit
-    rev: v0.1.9
+    rev: v0.2.0
     hooks:
       - id: ruff
         types_or: [python, jupyter]
@@ -76,7 +76,7 @@
         types_or: [python, jupyter]
 
   - repo: https://github.com/scientific-python/cookie
-    rev: "2023.12.21"
+    rev: "2024.01.24"
     hooks:
       - id: sp-repo-review
         additional_dependencies: ["repo-review[cli]"]
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/traitlets-5.14.1/CHANGELOG.md 
new/traitlets-5.14.2/CHANGELOG.md
--- old/traitlets-5.14.1/CHANGELOG.md   2020-02-02 01:00:00.000000000 +0100
+++ new/traitlets-5.14.2/CHANGELOG.md   2020-02-02 01:00:00.000000000 +0100
@@ -2,13 +2,31 @@
 
 <!-- <START NEW CHANGELOG ENTRY> -->
 
+## 5.14.2
+
+([Full 
Changelog](https://github.com/ipython/traitlets/compare/v5.14.1...2d0fb91f39a71c5528860e23bf9c2138e441b319))
+
+### Maintenance and upkeep improvements
+
+- Update Release Scripts [#900](https://github.com/ipython/traitlets/pull/900) 
([@blink1073](https://github.com/blink1073))
+- chore: update pre-commit hooks 
[#897](https://github.com/ipython/traitlets/pull/897) 
([@pre-commit-ci](https://github.com/pre-commit-ci))
+- Bump the actions group with 1 update 
[#896](https://github.com/ipython/traitlets/pull/896) 
([@dependabot](https://github.com/dependabot))
+
+### Contributors to this release
+
+([GitHub contributors page for this 
release](https://github.com/ipython/traitlets/graphs/contributors?from=2024-01-02&to=2024-03-12&type=c))
+
+[@blink1073](https://github.com/search?q=repo%3Aipython%2Ftraitlets+involves%3Ablink1073+updated%3A2024-01-02..2024-03-12&type=Issues)
 | 
[@dependabot](https://github.com/search?q=repo%3Aipython%2Ftraitlets+involves%3Adependabot+updated%3A2024-01-02..2024-03-12&type=Issues)
 | 
[@pre-commit-ci](https://github.com/search?q=repo%3Aipython%2Ftraitlets+involves%3Apre-commit-ci+updated%3A2024-01-02..2024-03-12&type=Issues)
+
+<!-- <END NEW CHANGELOG ENTRY> -->
+
 ## 5.14.1
 
 ([Full 
Changelog](https://github.com/ipython/traitlets/compare/v5.14.0...a1108c92013f9da56a9dccb79f7a5453ffe8d1db))
 
 ### Bugs fixed
 
-- FIX: map - to _ for environement variable prefix. 
[#895](https://github.com/ipython/traitlets/pull/895) 
([@Carreau](https://github.com/Carreau))
+- FIX: map - to _ for environment variable prefix. 
[#895](https://github.com/ipython/traitlets/pull/895) 
([@Carreau](https://github.com/Carreau))
 
 ### Maintenance and upkeep improvements
 
@@ -21,8 +39,6 @@
 
 
[@blink1073](https://github.com/search?q=repo%3Aipython%2Ftraitlets+involves%3Ablink1073+updated%3A2023-11-27..2024-01-02&type=Issues)
 | 
[@Carreau](https://github.com/search?q=repo%3Aipython%2Ftraitlets+involves%3ACarreau+updated%3A2023-11-27..2024-01-02&type=Issues)
 | 
[@pre-commit-ci](https://github.com/search?q=repo%3Aipython%2Ftraitlets+involves%3Apre-commit-ci+updated%3A2023-11-27..2024-01-02&type=Issues)
 
-<!-- <END NEW CHANGELOG ENTRY> -->
-
 ## 5.14.0
 
 ([Full 
Changelog](https://github.com/ipython/traitlets/compare/v5.13.0...4d7504601b9db9eb6f31dfc102b9c469c8517496))
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/traitlets-5.14.1/PKG-INFO 
new/traitlets-5.14.2/PKG-INFO
--- old/traitlets-5.14.1/PKG-INFO       2020-02-02 01:00:00.000000000 +0100
+++ new/traitlets-5.14.2/PKG-INFO       2020-02-02 01:00:00.000000000 +0100
@@ -1,6 +1,6 @@
 Metadata-Version: 2.1
 Name: traitlets
-Version: 5.14.1
+Version: 5.14.2
 Summary: Traitlets Python configuration system
 Project-URL: Homepage, https://github.com/ipython/traitlets
 Project-URL: Documentation, https://traitlets.readthedocs.io
@@ -60,7 +60,7 @@
 Requires-Dist: pre-commit; extra == 'test'
 Requires-Dist: pytest-mock; extra == 'test'
 Requires-Dist: pytest-mypy-testing; extra == 'test'
-Requires-Dist: pytest<7.5,>=7.0; extra == 'test'
+Requires-Dist: pytest<8.1,>=7.0; extra == 'test'
 Description-Content-Type: text/markdown
 
 # Traitlets
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/traitlets-5.14.1/pyproject.toml 
new/traitlets-5.14.2/pyproject.toml
--- old/traitlets-5.14.1/pyproject.toml 2020-02-02 01:00:00.000000000 +0100
+++ new/traitlets-5.14.2/pyproject.toml 2020-02-02 01:00:00.000000000 +0100
@@ -37,7 +37,7 @@
     "pre-commit",
     "pytest-mock",
     "pytest-mypy-testing",
-    "pytest>=7.0,<7.5",
+    "pytest>=7.0,<8.1",
 ]
 docs = [
     "myst-parser",
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/traitlets-5.14.1/traitlets/_version.py 
new/traitlets-5.14.2/traitlets/_version.py
--- old/traitlets-5.14.1/traitlets/_version.py  2020-02-02 01:00:00.000000000 
+0100
+++ new/traitlets-5.14.2/traitlets/_version.py  2020-02-02 01:00:00.000000000 
+0100
@@ -7,7 +7,7 @@
 from typing import List
 
 # Version string must appear intact for hatch versioning
-__version__ = "5.14.1"
+__version__ = "5.14.2"
 
 # Build up version_info tuple for backwards compatibility
 pattern = r"(?P<major>\d+).(?P<minor>\d+).(?P<patch>\d+)(?P<rest>.*)"

Reply via email to