Script 'mail_helper' called by obssrc Hello community, here is the log from the commit of package python-ipykernel for openSUSE:Factory checked in at 2023-12-21 23:38:34 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Comparing /work/SRC/openSUSE:Factory/python-ipykernel (Old) and /work/SRC/openSUSE:Factory/.python-ipykernel.new.1840 (New) ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Package is "python-ipykernel" Thu Dec 21 23:38:34 2023 rev:44 rq:1134337 version:6.27.1 Changes: -------- --- /work/SRC/openSUSE:Factory/python-ipykernel/python-ipykernel.changes 2023-11-27 22:43:29.702100630 +0100 +++ /work/SRC/openSUSE:Factory/.python-ipykernel.new.1840/python-ipykernel.changes 2023-12-21 23:38:47.074912191 +0100 @@ -1,0 +2,6 @@ +Wed Dec 20 21:56:25 UTC 2023 - Dirk Müller <dmuel...@suse.com> + +- update to 6.27.1: + * Fix edit magic payload type #1171 (@blink1073) + +------------------------------------------------------------------- Old: ---- ipykernel-6.27.0.tar.gz New: ---- ipykernel-6.27.1.tar.gz ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Other differences: ------------------ ++++++ python-ipykernel.spec ++++++ --- /var/tmp/diff_new_pack.YqqSaL/_old 2023-12-21 23:38:47.942943888 +0100 +++ /var/tmp/diff_new_pack.YqqSaL/_new 2023-12-21 23:38:47.946944035 +0100 @@ -18,7 +18,7 @@ %{?sle15_python_module_pythons} Name: python-ipykernel -Version: 6.27.0 +Version: 6.27.1 Release: 0 Summary: IPython Kernel for Jupyter License: BSD-3-Clause ++++++ ipykernel-6.27.0.tar.gz -> ipykernel-6.27.1.tar.gz ++++++ diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/ipykernel-6.27.0/CHANGELOG.md new/ipykernel-6.27.1/CHANGELOG.md --- old/ipykernel-6.27.0/CHANGELOG.md 2020-02-02 01:00:00.000000000 +0100 +++ new/ipykernel-6.27.1/CHANGELOG.md 2020-02-02 01:00:00.000000000 +0100 @@ -2,6 +2,22 @@ <!-- <START NEW CHANGELOG ENTRY> --> +## 6.27.1 + +([Full Changelog](https://github.com/ipython/ipykernel/compare/v6.27.0...f9c517e868462d05d6854204c2ad0a244db1cd19)) + +### Bugs fixed + +- Fix edit magic payload type [#1171](https://github.com/ipython/ipykernel/pull/1171) ([@blink1073](https://github.com/blink1073)) + +### Contributors to this release + +([GitHub contributors page for this release](https://github.com/ipython/ipykernel/graphs/contributors?from=2023-11-21&to=2023-11-27&type=c)) + +[@blink1073](https://github.com/search?q=repo%3Aipython%2Fipykernel+involves%3Ablink1073+updated%3A2023-11-21..2023-11-27&type=Issues) + +<!-- <END NEW CHANGELOG ENTRY> --> + ## 6.27.0 ([Full Changelog](https://github.com/ipython/ipykernel/compare/v6.26.0...465d34483103d23f471a4795fe5fabb9cf7ac3f5)) @@ -26,8 +42,6 @@ [@blink1073](https://github.com/search?q=repo%3Aipython%2Fipykernel+involves%3Ablink1073+updated%3A2023-10-24..2023-11-21&type=Issues) | [@jjvraw](https://github.com/search?q=repo%3Aipython%2Fipykernel+involves%3Ajjvraw+updated%3A2023-10-24..2023-11-21&type=Issues) | [@pre-commit-ci](https://github.com/search?q=repo%3Aipython%2Fipykernel+involves%3Apre-commit-ci+updated%3A2023-10-24..2023-11-21&type=Issues) -<!-- <END NEW CHANGELOG ENTRY> --> - ## 6.26.0 ([Full Changelog](https://github.com/ipython/ipykernel/compare/v6.25.2...966e0a41fc61e7850378ae672e28202eb29b10b0)) diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/ipykernel-6.27.0/PKG-INFO new/ipykernel-6.27.1/PKG-INFO --- old/ipykernel-6.27.0/PKG-INFO 2020-02-02 01:00:00.000000000 +0100 +++ new/ipykernel-6.27.1/PKG-INFO 2020-02-02 01:00:00.000000000 +0100 @@ -1,6 +1,6 @@ Metadata-Version: 2.1 Name: ipykernel -Version: 6.27.0 +Version: 6.27.1 Summary: IPython Kernel for Jupyter Project-URL: Homepage, https://ipython.org Author-email: IPython Development Team <ipython-...@scipy.org> diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/ipykernel-6.27.0/ipykernel/_version.py new/ipykernel-6.27.1/ipykernel/_version.py --- old/ipykernel-6.27.0/ipykernel/_version.py 2020-02-02 01:00:00.000000000 +0100 +++ new/ipykernel-6.27.1/ipykernel/_version.py 2020-02-02 01:00:00.000000000 +0100 @@ -5,7 +5,7 @@ from typing import List # Version string must appear intact for hatch versioning -__version__ = "6.27.0" +__version__ = "6.27.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/ipykernel-6.27.0/ipykernel/zmqshell.py new/ipykernel-6.27.1/ipykernel/zmqshell.py --- old/ipykernel-6.27.0/ipykernel/zmqshell.py 2020-02-02 01:00:00.000000000 +0100 +++ new/ipykernel-6.27.1/ipykernel/zmqshell.py 2020-02-02 01:00:00.000000000 +0100 @@ -302,7 +302,7 @@ # Make sure we send to the client an absolute path, in case the working # directory of client and kernel don't match - filename = Path(filename).resolve() + filename = str(Path(filename).resolve()) payload = {"source": "edit_magic", "filename": filename, "line_number": lineno} assert self.shell is not None diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/ipykernel-6.27.0/tests/test_zmq_shell.py new/ipykernel-6.27.1/tests/test_zmq_shell.py --- old/ipykernel-6.27.0/tests/test_zmq_shell.py 2020-02-02 01:00:00.000000000 +0100 +++ new/ipykernel-6.27.1/tests/test_zmq_shell.py 2020-02-02 01:00:00.000000000 +0100 @@ -220,6 +220,9 @@ tmp_file = tmp_path / "test.txt" tmp_file.write_text("hi", "utf8") magics.edit(str(tmp_file)) + payload = shell.payload_manager.read_payload()[0] + assert payload["filename"] == str(tmp_file) + magics.clear([]) magics.less(str(tmp_file)) if os.name == "posix":