Skip to content

Commit 51272ac

Browse files
committed
Publish 6.31.0
SHA256 hashes: ipykernel-6.31.0-py3-none-any.whl: abe5386f6ced727a70e0eb0cf1da801fa7c5fa6ff82147747d5a0406cd8c94af ipykernel-6.31.0.tar.gz: 2372ce8bc1ff4f34e58cafed3a0feb2194b91fc7cad0fc72e79e47b45ee9e8f6
1 parent 01c1e8f commit 51272ac

File tree

2 files changed

+26
-3
lines changed

2 files changed

+26
-3
lines changed

CHANGELOG.md

Lines changed: 25 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,31 @@
22

33
<!-- <START NEW CHANGELOG ENTRY> -->
44

5+
## 6.31.0
6+
7+
IPykernel 6.31.0 fixes an issue where display outputs such as Matplotlib plots were not included when using `%notebook` magic to save sessions as `.ipynb` files. This is enabled using the traitlet `ZMQDisplayPublisher.store_display_history` which defaults to the previous behaviour of `False`. This is a minor release rather than a patch release due to the addition of the new traitlet.
8+
9+
([Full Changelog](https://github.com/ipython/ipykernel/compare/v6.30.1...01c1e8fe43047050f29d8728eabf4e4de14b624b))
10+
11+
### Enhancements made
12+
13+
- Backport PR #1435: Store display outputs in history for `%notebook` magic [#1461](https://github.com/ipython/ipykernel/pull/1461) ([@Darshan808](https://github.com/Darshan808))
14+
15+
### Maintenance and upkeep improvements
16+
17+
- Backport PR #1453: update tests for 3.14 [#1460](https://github.com/ipython/ipykernel/pull/1460) ([@minrk](https://github.com/minrk))
18+
- Backport PR #1444: Test on PyPy 3.11 instead of 3.10 [#1459](https://github.com/ipython/ipykernel/pull/1459) ([@cclauss](https://github.com/cclauss))
19+
- 6.x: Update PEP-639 license values in pyproject.toml [#1446](https://github.com/ipython/ipykernel/pull/1446) ([@bollwyvl](https://github.com/bollwyvl))
20+
- Backport PR #1411: Replace `@flaky.flaky` decorate with pytest fixture [#1421](https://github.com/ipython/ipykernel/pull/1421) ([@mgorny](https://github.com/mgorny))
21+
22+
### Contributors to this release
23+
24+
([GitHub contributors page for this release](https://github.com/ipython/ipykernel/graphs/contributors?from=2025-08-04&to=2025-10-20&type=c))
25+
26+
[@bollwyvl](https://github.com/search?q=repo%3Aipython%2Fipykernel+involves%3Abollwyvl+updated%3A2025-08-04..2025-10-20&type=Issues) | [@cclauss](https://github.com/search?q=repo%3Aipython%2Fipykernel+involves%3Acclauss+updated%3A2025-08-04..2025-10-20&type=Issues) | [@Darshan808](https://github.com/search?q=repo%3Aipython%2Fipykernel+involves%3ADarshan808+updated%3A2025-08-04..2025-10-20&type=Issues) | [@ianthomas23](https://github.com/search?q=repo%3Aipython%2Fipykernel+involves%3Aianthomas23+updated%3A2025-08-04..2025-10-20&type=Issues) | [@krassowski](https://github.com/search?q=repo%3Aipython%2Fipykernel+involves%3Akrassowski+updated%3A2025-08-04..2025-10-20&type=Issues) | [@lumberbot-app](https://github.com/search?q=repo%3Aipython%2Fipykernel+involves%3Alumberbot-app+updated%3A2025-08-04..2025-10-20&type=Issues) | [@meeseeksmachine](https://github.com/search?q=repo%3Aipython%2Fipykernel+involves%3Ameeseeksmachine+updated%3A2025-08-04..2025-10-20&type=Issues) | [@mgorny](https://github.com/search?q=repo%3Aipython%2Fipykernel+involves%3Amgorny+updated%3A2025-08-04..2025-10-20&type=Issues) | [@minrk](https://github.com/search?q=repo%3Aipython%2Fipykernel+involves%3Aminrk+updated%3A2025-08-04..2025-10-20&type=Issues)
27+
28+
<!-- <END NEW CHANGELOG ENTRY> -->
29+
530
## 6.30.1
631

732
This is a bugfix release to fix a significant bug introduced in 6.30.0 that allowed control messages to be handled concurrently rather than sequentially which broke debugging in JupyterLab and VSCode.
@@ -22,8 +47,6 @@ This is a bugfix release to fix a significant bug introduced in 6.30.0 that allo
2247

2348
[@ianthomas23](https://github.com/search?q=repo%3Aipython%2Fipykernel+involves%3Aianthomas23+updated%3A2025-07-21..2025-08-04&type=Issues)
2449

25-
<!-- <END NEW CHANGELOG ENTRY> -->
26-
2750
## 6.30.0
2851

2952
This release fixes three bugs but is primarily a maintenance release bringing support for Python 3.13 and updating dependencies. It does not include subshells which will be in the upcoming 7.0.0 release. Users and downstream libraries that wish to avoid subshells should pin to `ipykernel < 7`.

ipykernel/_version.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
import re
55

66
# Version string must appear intact for hatch versioning
7-
__version__ = "6.30.1"
7+
__version__ = "6.31.0"
88

99
# Build up version_info tuple for backwards compatibility
1010
pattern = r"(?P<major>\d+).(?P<minor>\d+).(?P<patch>\d+)(?P<rest>.*)"

0 commit comments

Comments
 (0)