Script 'mail_helper' called by obssrc
Hello community,
here is the log from the commit of package jupyter-jupyterlab-server for
openSUSE:Factory checked in at 2022-09-27 20:13:25
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Comparing /work/SRC/openSUSE:Factory/jupyter-jupyterlab-server (Old)
and /work/SRC/openSUSE:Factory/.jupyter-jupyterlab-server.new.2275 (New)
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Package is "jupyter-jupyterlab-server"
Tue Sep 27 20:13:25 2022 rev:10 rq:1005931 version:2.15.1
Changes:
--------
---
/work/SRC/openSUSE:Factory/jupyter-jupyterlab-server/jupyter-jupyterlab-server.changes
2022-08-06 22:08:16.446676785 +0200
+++
/work/SRC/openSUSE:Factory/.jupyter-jupyterlab-server.new.2275/jupyter-jupyterlab-server.changes
2022-09-27 20:13:29.173768202 +0200
@@ -1,0 +2,8 @@
+Mon Sep 26 01:06:59 UTC 2022 - Ben Greiner <[email protected]>
+
+- update to 2.15.1
+ * Ignore deprecationwarning from jsonschema #295 (@blink1073)
+- update jupyterlab-server-fix-testing.patch: mistune no longer
+ vendored in nbconvert.
+
+-------------------------------------------------------------------
Old:
----
jupyterlab_server-2.15.0.tar.gz
New:
----
jupyterlab_server-2.15.1.tar.gz
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Other differences:
------------------
++++++ jupyter-jupyterlab-server.spec ++++++
--- /var/tmp/diff_new_pack.V3r6F8/_old 2022-09-27 20:13:30.417770946 +0200
+++ /var/tmp/diff_new_pack.V3r6F8/_new 2022-09-27 20:13:30.421770954 +0200
@@ -18,7 +18,7 @@
%define oldpython python
Name: jupyter-jupyterlab-server
-Version: 2.15.0
+Version: 2.15.1
Release: 0
Summary: Server components for JupyterLab and JupyterLab-like
applications
License: BSD-3-Clause
++++++ jupyterlab-server-fix-testing.patch ++++++
--- /var/tmp/diff_new_pack.V3r6F8/_old 2022-09-27 20:13:30.457771034 +0200
+++ /var/tmp/diff_new_pack.V3r6F8/_new 2022-09-27 20:13:30.461771043 +0200
@@ -1,38 +1,23 @@
-Index: jupyterlab_server-2.15.0/pyproject.toml
+Index: jupyterlab_server-2.15.1/pyproject.toml
===================================================================
---- jupyterlab_server-2.15.0.orig/pyproject.toml
-+++ jupyterlab_server-2.15.0/pyproject.toml
+--- jupyterlab_server-2.15.1.orig/pyproject.toml
++++ jupyterlab_server-2.15.1/pyproject.toml
@@ -87,7 +87,7 @@ src = "jupyterlab_server/_version.py"
src = "pyproject.toml"
[tool.pytest.ini_options]
-addopts = "-raXs --durations 10 --color=yes --doctest-modules"
-+addopts = "-raXs --durations 10 --doctest-modules"
++addopts = "-raXs --doctest-modules"
testpaths = [
"tests/"
]
-@@ -99,5 +99,7 @@ filterwarnings = [
- "module:make_current is deprecated:DeprecationWarning",
+@@ -100,5 +100,7 @@ filterwarnings = [
"module:clear_current is deprecated:DeprecationWarning",
"module:There is no current event loop:DeprecationWarning",
-- "ignore:Passing a schema to Validator.iter_errors:DeprecationWarning"
-+ "ignore:Passing a schema to Validator.iter_errors:DeprecationWarning",
+ "ignore:Passing a schema to Validator.iter_errors:DeprecationWarning",
+- "module:Subclassing validator classes is not intended to be part of their
public API:DeprecationWarning"
++ "module:Subclassing validator classes is not intended to be part of their
public API:DeprecationWarning",
+ # fixed in https://github.com/p1c2u/openapi-core/pull/395 (v0.15)
+ "ignore:The distutils package is deprecated:DeprecationWarning",
]
-Index: jupyterlab_server-2.15.0/tests/test_licenses_api.py
-===================================================================
---- jupyterlab_server-2.15.0.orig/tests/test_licenses_api.py
-+++ jupyterlab_server-2.15.0/tests/test_licenses_api.py
-@@ -5,7 +5,9 @@ import io
- import json
- import mimetypes
-
--import mistune
-+# mistune is imported in tests and normally installed as transitive
requirement
-+# from jupyter-server/nbconvert, but we had to vendorize it --
gh#jupyter/nbconvert#1685
-+from nbconvert.filters.markdown_mistune import mistune
- import pytest
-
- from jupyterlab_server import LicensesApp
++++++ jupyterlab_server-2.15.0.tar.gz -> jupyterlab_server-2.15.1.tar.gz ++++++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn'
'--exclude=.svnignore'
old/jupyterlab_server-2.15.0/.github/workflows/fix-license-header.yml
new/jupyterlab_server-2.15.1/.github/workflows/fix-license-header.yml
--- old/jupyterlab_server-2.15.0/.github/workflows/fix-license-header.yml
1970-01-01 01:00:00.000000000 +0100
+++ new/jupyterlab_server-2.15.1/.github/workflows/fix-license-header.yml
2020-02-02 01:00:00.000000000 +0100
@@ -0,0 +1,52 @@
+name: Fix License Headers
+
+on:
+ pull_request:
+
+permissions:
+ contents: write
+ pull-requests: write
+
+jobs:
+ header-license-fix:
+ runs-on: ubuntu-20.04
+ steps:
+ - name: Checkout
+ uses: actions/checkout@v3
+ with:
+ token: ${{ secrets.GITHUB_TOKEN }}
+
+ - name: Configure git to use https
+ run: git config --global hub.protocol https
+
+ - name: Checkout the branch from the PR that triggered the job
+ run: hub pr checkout ${{ github.event.pull_request.number }}
+ env:
+ GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
+
+ - name: Fix License Header
+ uses: apache/skywalking-eyes/[email protected]
+ with:
+ mode: fix
+
+ - name: Get modified files in the staging directory
+ id: changed-files
+ uses: tj-actions/changed-files@v24
+
+ - name: Apply Changes
+ if: steps.changed-files.outputs.any_changed == 'true'
+ shell: bash -l {0}
+ run: |
+ git config user.name 'github-actions[bot]'
+ git config user.email 'github-actions[bot]@users.noreply.github.com'
+ git add *
+ git commit -m "Automatic application of license header"
+
+ - name: Push fixes
+ if: steps.changed-files.outputs.any_changed == 'true'
+ shell: bash -l {0}
+ run: |
+ git config push.default upstream
+ git push
+ env:
+ GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn'
'--exclude=.svnignore' old/jupyterlab_server-2.15.0/.licenserc.yaml
new/jupyterlab_server-2.15.1/.licenserc.yaml
--- old/jupyterlab_server-2.15.0/.licenserc.yaml 1970-01-01
01:00:00.000000000 +0100
+++ new/jupyterlab_server-2.15.1/.licenserc.yaml 2020-02-02
01:00:00.000000000 +0100
@@ -0,0 +1,22 @@
+header:
+ license:
+ spdx-id: BSD-3-Clause
+ copyright-owner: Jupyter Development Team
+ software-name: JupyterLab
+ content: |
+ Copyright (c) Jupyter Development Team.
+ Distributed under the terms of the Modified BSD License.
+
+ paths-ignore:
+ - "**/*.json"
+ - "**/*.md"
+ - "**/*.po"
+ - "**/*.svg"
+ - "**/*.yml"
+ - "**/*.yaml"
+ - "**/.*"
+ - "**/MANIFEST.in"
+ - "LICENSE"
+ - "jupyterlab_server/test_data"
+
+ comment: on-failure
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn'
'--exclude=.svnignore' old/jupyterlab_server-2.15.0/.pre-commit-config.yaml
new/jupyterlab_server-2.15.1/.pre-commit-config.yaml
--- old/jupyterlab_server-2.15.0/.pre-commit-config.yaml 2020-02-02
01:00:00.000000000 +0100
+++ new/jupyterlab_server-2.15.1/.pre-commit-config.yaml 2020-02-02
01:00:00.000000000 +0100
@@ -35,20 +35,20 @@
exclude: "jupyterlab_server/templates/.*.html"
- repo: https://github.com/asottile/pyupgrade
- rev: v2.34.0
+ rev: v2.37.3
hooks:
- id: pyupgrade
args: [--py37-plus]
- repo: https://github.com/PyCQA/doc8
- rev: 0.11.2
+ rev: v1.0.0
hooks:
- id: doc8
args: [--max-line-length=200]
stages: [manual]
- repo: https://github.com/pycqa/flake8
- rev: 4.0.1
+ rev: 5.0.4
hooks:
- id: flake8
additional_dependencies:
@@ -60,7 +60,7 @@
stages: [manual]
- repo: https://github.com/sirosen/check-jsonschema
- rev: 0.16.2
+ rev: 0.17.1
hooks:
- id: check-jsonschema
name: "Check GitHub Workflows"
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn'
'--exclude=.svnignore' old/jupyterlab_server-2.15.0/CHANGELOG.md
new/jupyterlab_server-2.15.1/CHANGELOG.md
--- old/jupyterlab_server-2.15.0/CHANGELOG.md 2020-02-02 01:00:00.000000000
+0100
+++ new/jupyterlab_server-2.15.1/CHANGELOG.md 2020-02-02 01:00:00.000000000
+0100
@@ -6,6 +6,33 @@
<!-- <START NEW CHANGELOG ENTRY> -->
+## 2.15.1
+
+([Full
Changelog](https://github.com/jupyterlab/jupyterlab_server/compare/v2.15.0...6de991c68abad7041581dd5a7c292194d3b2dea7))
+
+### Maintenance and upkeep improvements
+
+- Add fix license header job
[#298](https://github.com/jupyterlab/jupyterlab_server/pull/298)
([@fcollonval](https://github.com/fcollonval))
+- [pre-commit.ci] pre-commit autoupdate
[#297](https://github.com/jupyterlab/jupyterlab_server/pull/297)
([@pre-commit-ci](https://github.com/pre-commit-ci))
+- Ignore deprecationwarning from jsonschema
[#295](https://github.com/jupyterlab/jupyterlab_server/pull/295)
([@blink1073](https://github.com/blink1073))
+- [pre-commit.ci] pre-commit autoupdate
[#294](https://github.com/jupyterlab/jupyterlab_server/pull/294)
([@pre-commit-ci](https://github.com/pre-commit-ci))
+- [pre-commit.ci] pre-commit autoupdate
[#293](https://github.com/jupyterlab/jupyterlab_server/pull/293)
([@pre-commit-ci](https://github.com/pre-commit-ci))
+- [pre-commit.ci] pre-commit autoupdate
[#291](https://github.com/jupyterlab/jupyterlab_server/pull/291)
([@pre-commit-ci](https://github.com/pre-commit-ci))
+- [pre-commit.ci] pre-commit autoupdate
[#290](https://github.com/jupyterlab/jupyterlab_server/pull/290)
([@pre-commit-ci](https://github.com/pre-commit-ci))
+- [pre-commit.ci] pre-commit autoupdate
[#289](https://github.com/jupyterlab/jupyterlab_server/pull/289)
([@pre-commit-ci](https://github.com/pre-commit-ci))
+
+### Documentation improvements
+
+- Only use `conda-forge` and not defaults for RTD
[#296](https://github.com/jupyterlab/jupyterlab_server/pull/296)
([@afshin](https://github.com/afshin))
+
+### Contributors to this release
+
+([GitHub contributors page for this
release](https://github.com/jupyterlab/jupyterlab_server/graphs/contributors?from=2022-07-05&to=2022-08-23&type=c))
+
+[@afshin](https://github.com/search?q=repo%3Ajupyterlab%2Fjupyterlab_server+involves%3Aafshin+updated%3A2022-07-05..2022-08-23&type=Issues)
|
[@blink1073](https://github.com/search?q=repo%3Ajupyterlab%2Fjupyterlab_server+involves%3Ablink1073+updated%3A2022-07-05..2022-08-23&type=Issues)
|
[@codecov-commenter](https://github.com/search?q=repo%3Ajupyterlab%2Fjupyterlab_server+involves%3Acodecov-commenter+updated%3A2022-07-05..2022-08-23&type=Issues)
|
[@fcollonval](https://github.com/search?q=repo%3Ajupyterlab%2Fjupyterlab_server+involves%3Afcollonval+updated%3A2022-07-05..2022-08-23&type=Issues)
|
[@pre-commit-ci](https://github.com/search?q=repo%3Ajupyterlab%2Fjupyterlab_server+involves%3Apre-commit-ci+updated%3A2022-07-05..2022-08-23&type=Issues)
+
+<!-- <END NEW CHANGELOG ENTRY> -->
+
## 2.15.0
([Full
Changelog](https://github.com/jupyterlab/jupyterlab_server/compare/v2.14.0...2d6ff4077a58bb9ac1531c4a7ad7669163e0ec99))
@@ -28,8 +55,6 @@
[@blink1073](https://github.com/search?q=repo%3Ajupyterlab%2Fjupyterlab_server+involves%3Ablink1073+updated%3A2022-05-18..2022-07-05&type=Issues)
|
[@codecov-commenter](https://github.com/search?q=repo%3Ajupyterlab%2Fjupyterlab_server+involves%3Acodecov-commenter+updated%3A2022-05-18..2022-07-05&type=Issues)
|
[@pre-commit-ci](https://github.com/search?q=repo%3Ajupyterlab%2Fjupyterlab_server+involves%3Apre-commit-ci+updated%3A2022-05-18..2022-07-05&type=Issues)
-<!-- <END NEW CHANGELOG ENTRY> -->
-
## 2.14.0
([Full
Changelog](https://github.com/jupyterlab/jupyterlab_server/compare/v2.13.0...faaf10cbe5abcfa5e3f0e3f7a491d651ed998a26))
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn'
'--exclude=.svnignore' old/jupyterlab_server-2.15.0/PKG-INFO
new/jupyterlab_server-2.15.1/PKG-INFO
--- old/jupyterlab_server-2.15.0/PKG-INFO 2020-02-02 01:00:00.000000000
+0100
+++ new/jupyterlab_server-2.15.1/PKG-INFO 2020-02-02 01:00:00.000000000
+0100
@@ -1,6 +1,6 @@
Metadata-Version: 2.1
-Name: jupyterlab-server
-Version: 2.15.0
+Name: jupyterlab_server
+Version: 2.15.1
Summary: A set of server components for JupyterLab and JupyterLab like
applications.
Project-URL: Homepage, https://jupyterlab-server.readthedocs.io
Project-URL: Documentation, https://jupyterlab-server.readthedocs.io
@@ -44,10 +44,10 @@
Classifier: License :: OSI Approved :: BSD License
Classifier: Programming Language :: Python
Classifier: Programming Language :: Python :: 3 :: Only
-Classifier: Programming Language :: Python :: 3.10
Classifier: Programming Language :: Python :: 3.7
Classifier: Programming Language :: Python :: 3.8
Classifier: Programming Language :: Python :: 3.9
+Classifier: Programming Language :: Python :: 3.10
Requires-Python: >=3.7
Requires-Dist: babel
Requires-Dist: importlib-metadata>=3.6; python_version < '3.10'
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn'
'--exclude=.svnignore' old/jupyterlab_server-2.15.0/docs/environment.yml
new/jupyterlab_server-2.15.1/docs/environment.yml
--- old/jupyterlab_server-2.15.0/docs/environment.yml 2020-02-02
01:00:00.000000000 +0100
+++ new/jupyterlab_server-2.15.1/docs/environment.yml 2020-02-02
01:00:00.000000000 +0100
@@ -1,6 +1,7 @@
name: jupyterlab_server_documentation
channels:
- conda-forge
+ - nodefaults
dependencies:
- python=3.9
- sphinx<4.0
@@ -11,6 +12,7 @@
- jinja2<3.1.0
- pip:
- autodoc-traits
+ - mistune<1.0.0
- pydata_sphinx_theme
- sphinxcontrib-openapi
- numpydoc
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn'
'--exclude=.svnignore'
old/jupyterlab_server-2.15.0/jupyterlab_server/_version.py
new/jupyterlab_server-2.15.1/jupyterlab_server/_version.py
--- old/jupyterlab_server-2.15.0/jupyterlab_server/_version.py 2020-02-02
01:00:00.000000000 +0100
+++ new/jupyterlab_server-2.15.1/jupyterlab_server/_version.py 2020-02-02
01:00:00.000000000 +0100
@@ -4,7 +4,7 @@
"""
import re
-__version__ = "2.15.0"
+__version__ = "2.15.1"
# Build up version_info tuple for backwards compatibility
pattern = r"(?P<major>\d+).(?P<minor>\d+).(?P<patch>\d+)(?P<rest>.*)"
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn'
'--exclude=.svnignore' old/jupyterlab_server-2.15.0/pyproject.toml
new/jupyterlab_server-2.15.1/pyproject.toml
--- old/jupyterlab_server-2.15.0/pyproject.toml 2020-02-02 01:00:00.000000000
+0100
+++ new/jupyterlab_server-2.15.1/pyproject.toml 2020-02-02 01:00:00.000000000
+0100
@@ -4,7 +4,7 @@
[project]
name = "jupyterlab_server"
-version = "2.15.0"
+version = "2.15.1"
license = { file = "LICENSE" }
description = "A set of server components for JupyterLab and JupyterLab like
applications."
keywords = ["jupyter", "jupyterlab"]
@@ -70,7 +70,7 @@
skip = ["check-links"]
[tool.tbump.version]
-current = "2.15.0"
+current = "2.15.1"
regex = '''
(?P<major>\d+)\.(?P<minor>\d+)\.(?P<patch>\d+)
((?P<channel>a|b|rc|.dev)(?P<release>\d+))?
@@ -99,5 +99,6 @@
"module:make_current is deprecated:DeprecationWarning",
"module:clear_current is deprecated:DeprecationWarning",
"module:There is no current event loop:DeprecationWarning",
- "ignore:Passing a schema to Validator.iter_errors:DeprecationWarning"
+ "ignore:Passing a schema to Validator.iter_errors:DeprecationWarning",
+ "module:Subclassing validator classes is not intended to be part of their
public API:DeprecationWarning"
]