Script 'mail_helper' called by obssrc
Hello community,
here is the log from the commit of package python-notebook-shim for
openSUSE:Factory checked in at 2023-01-02 15:01:41
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Comparing /work/SRC/openSUSE:Factory/python-notebook-shim (Old)
and /work/SRC/openSUSE:Factory/.python-notebook-shim.new.1563 (New)
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Package is "python-notebook-shim"
Mon Jan 2 15:01:41 2023 rev:3 rq:1045953 version:0.2.2
Changes:
--------
---
/work/SRC/openSUSE:Factory/python-notebook-shim/python-notebook-shim.changes
2022-10-26 14:25:55.536287413 +0200
+++
/work/SRC/openSUSE:Factory/.python-notebook-shim.new.1563/python-notebook-shim.changes
2023-01-02 15:01:49.573235579 +0100
@@ -1,0 +2,6 @@
+Mon Dec 26 23:58:03 UTC 2022 - Ben Greiner <[email protected]>
+
+- Update to v0.2.2
+ * Add config file
+
+-------------------------------------------------------------------
Old:
----
notebook_shim-0.2.0.tar.gz
New:
----
notebook_shim-0.2.2.tar.gz
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Other differences:
------------------
++++++ python-notebook-shim.spec ++++++
--- /var/tmp/diff_new_pack.6UfpEi/_old 2023-01-02 15:01:49.969237804 +0100
+++ /var/tmp/diff_new_pack.6UfpEi/_new 2023-01-02 15:01:49.973237826 +0100
@@ -17,7 +17,7 @@
Name: python-notebook-shim
-Version: 0.2.0
+Version: 0.2.2
Release: 0
Summary: A shim layer for notebook traits and config
License: BSD-3-Clause
@@ -27,12 +27,15 @@
BuildRequires: %{python_module hatchling >= 1.0}
BuildRequires: %{python_module pip}
BuildRequires: fdupes
+BuildRequires: jupyter-rpm-macros
BuildRequires: python-rpm-macros
+Requires: jupyter-notebook-shim = %{version}
Requires: (python-jupyter_server >= 1.8 with python-jupyter_server < 3)
Provides: python-notebook_shim = %{version}-%{release}
BuildArch: noarch
BuildRequires: %{python_module jupyter_server >= 1.8 with
%python-jupyter_server < 3}
BuildRequires: %{python_module pytest-console-scripts}
+BuildRequires: %{python_module pytest-jupyter}
BuildRequires: %{python_module pytest-tornasync}
BuildRequires: %{python_module pytest}
%python_subpackages
@@ -41,6 +44,17 @@
This project provides a way for JupyterLab and other frontends to switch to
Jupyter Server for their Python Web application backend.
+%package -n jupyter-notebook-shim
+Summary: The configuration file for python-notebook-shim
+Provides: juypter-notebook_shim = %{version}-%{release}
+# Any flavor is okay
+Requires: (%(echo "%{python_module notebook-shim = %{version}@or@}" | sed
"s/@or@/ or /g" | sed 's/ or\s*$//'))
+
+%description -n jupyter-notebook-shim
+This project provides a way for JupyterLab and other frontends to switch to
+Jupyter Server for their Python Web application backend. Common configuration
+file
+
%prep
%setup -q -n notebook_shim-%{version}
@@ -49,6 +63,7 @@
%install
%pyproject_install
+%jupyter_move_config
%python_expand %fdupes %{buildroot}%{$python_sitelib}
%check
@@ -60,4 +75,7 @@
%{python_sitelib}/notebook_shim
%{python_sitelib}/notebook_shim-%{version}*-info
+%files -n jupyter-notebook-shim
+%_jupyter_config %{_jupyter_server_confdir}/notebook_shim.json
+
%changelog
++++++ notebook_shim-0.2.0.tar.gz -> notebook_shim-0.2.2.tar.gz ++++++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn'
'--exclude=.svnignore'
old/notebook_shim-0.2.0/.github/workflows/check-release.yml
new/notebook_shim-0.2.2/.github/workflows/check-release.yml
--- old/notebook_shim-0.2.0/.github/workflows/check-release.yml 2020-02-02
01:00:00.000000000 +0100
+++ new/notebook_shim-0.2.2/.github/workflows/check-release.yml 2020-02-02
01:00:00.000000000 +0100
@@ -2,40 +2,26 @@
on:
push:
branches:
- - "*"
+ - '*'
pull_request:
branches:
- - "*"
+ - '*'
permissions:
- contents:
- write
+ contents: write
jobs:
check_release:
runs-on: ubuntu-latest
- strategy:
- matrix:
- group: [check_release, link_check]
steps:
- - name: Checkout
- uses: actions/checkout@v2
-
- - name: Base Setup
- uses: jupyterlab/maintainer-tools/.github/actions/base-setup@v1
-
- - name: Install Dependencies
- run: |
- pip install -e .
-
+ - uses: actions/checkout@v2
+ - uses: jupyterlab/maintainer-tools/.github/actions/base-setup@v1
- name: Check Release
- if: ${{ matrix.group == 'check_release' }}
- env:
- TWINE_PASSWORD: ${{ secrets.TEST_PYPI_TOKEN }}
- uses: jupyter-server/jupyter_releaser/.github/actions/check-release@v1
+ uses: jupyter-server/jupyter_releaser/.github/actions/check-release@v2
with:
token: ${{ secrets.GITHUB_TOKEN }}
-
- - name: Check Links
- if: ${{ matrix.group == 'link_check' }}
- uses: jupyter-server/jupyter_releaser/.github/actions/check-links@v1
+ - name: Upload Distributions
+ uses: actions/upload-artifact@v2
+ with:
+ name: jupyter-resource-usage-releaser-dist-${{ github.run_number }}
+ path: .jupyter_releaser_checkout/dist
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn'
'--exclude=.svnignore'
old/notebook_shim-0.2.0/.github/workflows/prep-release.yaml
new/notebook_shim-0.2.2/.github/workflows/prep-release.yaml
--- old/notebook_shim-0.2.0/.github/workflows/prep-release.yaml 1970-01-01
01:00:00.000000000 +0100
+++ new/notebook_shim-0.2.2/.github/workflows/prep-release.yaml 2020-02-02
01:00:00.000000000 +0100
@@ -0,0 +1,42 @@
+name: "Step 1: Prep Release"
+on:
+ workflow_dispatch:
+ inputs:
+ version_spec:
+ description: "New Version Specifier"
+ default: "next"
+ required: false
+ branch:
+ description: "The branch to target"
+ required: false
+ post_version_spec:
+ description: "Post Version Specifier"
+ required: false
+ since:
+ description: "Use PRs with activity since this date or git reference"
+ required: false
+ since_last_stable:
+ description: "Use PRs with activity since the last stable git tag"
+ required: false
+ type: boolean
+jobs:
+ prep_release:
+ runs-on: ubuntu-latest
+ steps:
+ - uses: jupyterlab/maintainer-tools/.github/actions/base-setup@v1
+
+ - name: Prep Release
+ id: prep-release
+ uses: jupyter-server/jupyter_releaser/.github/actions/prep-release@v2
+ with:
+ token: ${{ secrets.ADMIN_GITHUB_TOKEN }}
+ version_spec: ${{ github.event.inputs.version_spec }}
+ post_version_spec: ${{ github.event.inputs.post_version_spec }}
+ target: ${{ github.event.inputs.target }}
+ branch: ${{ github.event.inputs.branch }}
+ since: ${{ github.event.inputs.since }}
+ since_last_stable: ${{ github.event.inputs.since_last_stable }}
+
+ - name: "** Next Step **"
+ run: |
+ echo "Optional): Review Draft Release: ${{
steps.prep-release.outputs.release_url }}"
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn'
'--exclude=.svnignore'
old/notebook_shim-0.2.0/.github/workflows/publish-release.yaml
new/notebook_shim-0.2.2/.github/workflows/publish-release.yaml
--- old/notebook_shim-0.2.0/.github/workflows/publish-release.yaml
1970-01-01 01:00:00.000000000 +0100
+++ new/notebook_shim-0.2.2/.github/workflows/publish-release.yaml
2020-02-02 01:00:00.000000000 +0100
@@ -0,0 +1,53 @@
+name: "Step 2: Publish Release"
+on:
+ workflow_dispatch:
+ inputs:
+ branch:
+ description: "The target branch"
+ required: false
+ release_url:
+ description: "The URL of the draft GitHub release"
+ required: false
+ steps_to_skip:
+ description: "Comma separated list of steps to skip"
+ required: false
+
+jobs:
+ publish_release:
+ runs-on: ubuntu-latest
+ steps:
+ - uses: jupyterlab/maintainer-tools/.github/actions/base-setup@v1
+
+ - 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 }}
+ 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
+ with:
+ token: ${{ secrets.ADMIN_GITHUB_TOKEN }}
+ target: ${{ github.event.inputs.target }}
+ release_url: ${{ steps.populate-release.outputs.release_url }}
+
+ - name: "** Next Step **"
+ if: ${{ success() }}
+ run: |
+ echo "Verify the final release"
+ echo ${{ steps.finalize-release.outputs.release_url }}
+ - name: "** Failure Message **"
+ if: ${{ failure() }}
+ run: |
+ echo "Failed to Publish the Draft Release Url:"
+ echo ${{ steps.populate-release.outputs.release_url }}
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn'
'--exclude=.svnignore' old/notebook_shim-0.2.0/CHANGELOG.md
new/notebook_shim-0.2.2/CHANGELOG.md
--- old/notebook_shim-0.2.0/CHANGELOG.md 2020-02-02 01:00:00.000000000
+0100
+++ new/notebook_shim-0.2.2/CHANGELOG.md 2020-02-02 01:00:00.000000000
+0100
@@ -2,6 +2,41 @@
<!-- <START NEW CHANGELOG ENTRY> -->
+## 0.2.2
+
+([Full
Changelog](https://github.com/jupyter/notebook_shim/compare/v0.2.0...e1f1219888d9bfa69fc0e1f130f6f1bcf3825fcb))
+
+### Bugs fixed
+
+- Fixes #7 [#24](https://github.com/jupyter/notebook_shim/pull/24)
([@dleen](https://github.com/dleen))
+- Add config file [#23](https://github.com/jupyter/notebook_shim/pull/23)
([@dleen](https://github.com/dleen))
+
+### Maintenance and upkeep improvements
+
+- add releaser v2 workflows
[#25](https://github.com/jupyter/notebook_shim/pull/25)
([@Zsailer](https://github.com/Zsailer))
+
+### Contributors to this release
+
+([GitHub contributors page for this
release](https://github.com/jupyter/notebook_shim/graphs/contributors?from=2022-10-17&to=2022-11-03&type=c))
+
+[@dleen](https://github.com/search?q=repo%3Ajupyter%2Fnotebook_shim+involves%3Adleen+updated%3A2022-10-17..2022-11-03&type=Issues)
|
[@Zsailer](https://github.com/search?q=repo%3Ajupyter%2Fnotebook_shim+involves%3AZsailer+updated%3A2022-10-17..2022-11-03&type=Issues)
+
+<!-- <END NEW CHANGELOG ENTRY> -->
+
+## 0.2.1
+
+([Full
Changelog](https://github.com/jupyter/notebook_shim/compare/v0.2.0...b72af7411fa41115c3025a95f261e10bf0221fb0))
+
+### Bugs fixed
+
+- Add config file [#23](https://github.com/jupyter/notebook_shim/pull/23)
([@dleen](https://github.com/dleen))
+
+### Contributors to this release
+
+([GitHub contributors page for this
release](https://github.com/jupyter/notebook_shim/graphs/contributors?from=2022-10-17&to=2022-11-02&type=c))
+
+[@dleen](https://github.com/search?q=repo%3Ajupyter%2Fnotebook_shim+involves%3Adleen+updated%3A2022-10-17..2022-11-02&type=Issues)
+
## 0.2.0
([Full
Changelog](https://github.com/jupyter/notebook_shim/compare/v0.1.0...4e4228d7bb2d2e04cc204db3de7f2f567d65c38a))
@@ -21,8 +56,6 @@
[@blink1073](https://github.com/search?q=repo%3Ajupyter%2Fnotebook_shim+involves%3Ablink1073+updated%3A2022-02-10..2022-10-17&type=Issues)
|
[@jtpio](https://github.com/search?q=repo%3Ajupyter%2Fnotebook_shim+involves%3Ajtpio+updated%3A2022-02-10..2022-10-17&type=Issues)
|
[@Zsailer](https://github.com/search?q=repo%3Ajupyter%2Fnotebook_shim+involves%3AZsailer+updated%3A2022-02-10..2022-10-17&type=Issues)
-<!-- <END NEW CHANGELOG ENTRY> -->
-
## 0.1.0
([Full
Changelog](https://github.com/jupyterlab/notebook_shim/compare/first-commit...5b433fa298f741c7d71c9a3e7e85f17b2207300f))
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn'
'--exclude=.svnignore' old/notebook_shim-0.2.0/PKG-INFO
new/notebook_shim-0.2.2/PKG-INFO
--- old/notebook_shim-0.2.0/PKG-INFO 2020-02-02 01:00:00.000000000 +0100
+++ new/notebook_shim-0.2.2/PKG-INFO 2020-02-02 01:00:00.000000000 +0100
@@ -1,6 +1,6 @@
Metadata-Version: 2.1
Name: notebook_shim
-Version: 0.2.0
+Version: 0.2.2
Summary: A shim layer for notebook traits and config
Author-email: Jupyter Development Team <[email protected]>
License: BSD 3-Clause License
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn'
'--exclude=.svnignore' old/notebook_shim-0.2.0/conftest.py
new/notebook_shim-0.2.2/conftest.py
--- old/notebook_shim-0.2.0/conftest.py 1970-01-01 01:00:00.000000000 +0100
+++ new/notebook_shim-0.2.2/conftest.py 2020-02-02 01:00:00.000000000 +0100
@@ -0,0 +1 @@
+pytest_plugins = ["jupyter_server.pytest_plugin"]
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn'
'--exclude=.svnignore' old/notebook_shim-0.2.0/notebook_shim/_version.py
new/notebook_shim-0.2.2/notebook_shim/_version.py
--- old/notebook_shim-0.2.0/notebook_shim/_version.py 2020-02-02
01:00:00.000000000 +0100
+++ new/notebook_shim-0.2.2/notebook_shim/_version.py 2020-02-02
01:00:00.000000000 +0100
@@ -1,2 +1,2 @@
-version_info = (0, 2, 0, "", "")
-__version__ = "0.2.0"
+version_info = (0, 2, 2, "", "")
+__version__ = "0.2.2"
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn'
'--exclude=.svnignore' old/notebook_shim-0.2.0/notebook_shim/conftest.py
new/notebook_shim-0.2.2/notebook_shim/conftest.py
--- old/notebook_shim-0.2.0/notebook_shim/conftest.py 2020-02-02
01:00:00.000000000 +0100
+++ new/notebook_shim-0.2.2/notebook_shim/conftest.py 1970-01-01
01:00:00.000000000 +0100
@@ -1 +0,0 @@
-pytest_plugins = ["jupyter_server.pytest_plugin"]
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn'
'--exclude=.svnignore' old/notebook_shim-0.2.0/pyproject.toml
new/notebook_shim-0.2.2/pyproject.toml
--- old/notebook_shim-0.2.0/pyproject.toml 2020-02-02 01:00:00.000000000
+0100
+++ new/notebook_shim-0.2.2/pyproject.toml 2020-02-02 01:00:00.000000000
+0100
@@ -31,6 +31,9 @@
"jupyter_server>=1.8,<3"
]
+[tool.hatch.build.targets.wheel.shared-data]
+"jupyter_server_config.d/notebook_shim.json" =
"etc/jupyter/jupyter_server_config.d/notebook_shim.json"
+
[project.optional-dependencies]
test = [
"pytest",
@@ -38,11 +41,13 @@
"pytest-console-scripts",
]
+
+
[tool.hatch.version]
path = "notebook_shim/_version.py"
[tool.tbump.version]
-current = "0.2.0"
+current = "0.2.2"
regex = '''
(?P<major>\d+)\.(?P<minor>\d+)\.(?P<patch>\d+)
((?P<channel>a|b|rc|.dev)(?P<release>\d+))?