@@ -49,10 +49,17 @@ Features added
49
49
Pradyun Gedam.
50
50
* #10619: LaTeX: new ``shadowShadowColor`` and ``shadowBorderColor`` configurations
51
51
for :ref:`'sphinxsetup' <latexsphinxsetup>` key of :confval:`latex_elements`
52
+ * #10639: LaTeX: ``verbatimradius`` configuration added to the LaTeX keys of
53
+ :ref:`'sphinxsetup' <latexsphinxsetup>`. If positive, code-blocks are rendered
54
+ with rounded corners.
55
+ * #10599: HTML Theme: Wrap consecutive footnotes in an ``<aside>`` element when
56
+ using Docutils 0.18 or later, to allow for easier styling. This matches the
57
+ behaviour introduced in Docutils 0.19. Patch by Adam Turner.
52
58
53
59
Bugs fixed
54
60
----------
55
61
62
+ * #10634: Make -P (pdb) option work better with exceptions triggered from events
56
63
* #10031: py domain: Fix spurious whitespace in unparsing various operators (``+``,
57
64
``-``, ``~``, and ``**``). Patch by Adam Turner.
58
65
* #10460: logging: Always show node source locations as absolute paths.
@@ -64,6 +71,10 @@ Bugs fixed
64
71
* #10633: LaTeX: user injected ``\color`` commands in topic or admonition boxes may
65
72
cause color leaks in PDF due to upstream `framed.sty <https://ctan.org/pkg/framed>`_
66
73
bug
74
+ * #10638: LaTeX: framed coloured boxes in highlighted code (e.g. highlighted
75
+ diffs using Pygments style ``'manni'``) inherit thickness of code-block frame
76
+ * #10647: LaTeX: Only one ``\label`` is generated for ``desc_signature`` node
77
+ even if it has multiple node IDs
67
78
* #10579: i18n: UnboundLocalError is raised on translating raw directive
68
79
* #9577, #10088: py domain: Fix warning for duplicate Python references when
69
80
using ``:any:`` and autodoc.
@@ -316,7 +327,8 @@ Features added
316
327
* #10107: i18n: Allow to suppress translation warnings by adding ``#noqa``
317
328
comment to the tail of each translation message
318
329
* #10252: C++, support attributes on classes, unions, and enums.
319
- * #10253: :rst:dir:`pep` role now generates URLs based on peps.python.org
330
+ * #10253: :rst:role:`pep` role now generates URLs based on `peps.python.org
331
+ <https://peps.python.org>`_
320
332
321
333
Bugs fixed
322
334
----------
@@ -338,7 +350,7 @@ Bugs fixed
338
350
variables/structure members
339
351
* #10175: LaTeX: named footnote reference is linked to an incorrect footnote if
340
352
the name is also used in the different document
341
- * #10269: manpage: Failed to resolve the title of :ref: cross references
353
+ * #10269: manpage: Failed to resolve the title of :rst:role:`ref` cross references
342
354
* #10179: i18n: suppress "rST localization" warning
343
355
* #10118: imgconverter: Unnecessary availablity check is called for remote URIs
344
356
* #10181: napoleon: attributes are displayed like class attributes for google
@@ -370,7 +382,7 @@ Features added
370
382
by an extlink, suggesting a replacement.
371
383
* #9961: html: Support nested <kbd> HTML elements in other HTML builders
372
384
* #10013: html: Allow to change the loading method of JS via ``loading_method``
373
- parameter for :meth:`Sphinx.add_js_file()`
385
+ parameter for :meth:`. Sphinx.add_js_file()`
374
386
* #9551: html search: "Hide Search Matches" link removes "highlight" parameter
375
387
from URL
376
388
* #9815: html theme: Wrap sidebar components in div to allow customizing their
@@ -477,7 +489,7 @@ Incompatible changes
477
489
with more docutils nodes to allow better CSS styling.
478
490
It may break existing styling.
479
491
* #9672: the signature of
480
- :py:meth:` domains.py .PyObject.get_signature_prefix` has changed to
492
+ `` domains.python .PyObject.get_signature_prefix` ` has changed to
481
493
return a list of nodes instead of a plain string.
482
494
* #9695: ``domains.js.JSObject.display_prefix`` has been changed into a method
483
495
``get_display_prefix`` which now returns a list of nodes
@@ -554,7 +566,7 @@ Bugs fixed
554
566
* #9775: py domain: Literal typehint was converted to a cross reference when
555
567
:confval:`autodoc_typehints='description'`
556
568
* #9708: needs_extension failed to check double-digit version correctly
557
- * #9688: Fix :rst:dir: `code` ` does not recognize ``:class:`` option
569
+ * #9688: Fix Sphinx patched :dudir: `code` does not recognize ``:class:`` option
558
570
* #9733: Fix for logging handler flushing warnings in the middle of the docs
559
571
build
560
572
* #9656: Fix warnings without subtype being incorrectly suppressed
@@ -574,7 +586,7 @@ Features added
574
586
* #9447: html theme: Expose the version of Sphinx in the form of tuple as a
575
587
template variable ``sphinx_version_tuple``
576
588
* #9594: manpage: Suppress the title of man page if description is empty
577
- * #9445: py domain: ``:py:property:` ` directive supports ``:classmethod:``
589
+ * #9445: py domain: :rst:dir:`py:property ` directive supports ``:classmethod:``
578
590
option to describe the class property
579
591
* #9524: test: SphinxTestApp can take ``builddir`` as an argument
580
592
* #9535: C and C++, support more fundamental types, including GNU extensions.
@@ -6433,7 +6445,7 @@ Release 1.1.3 (Mar 10, 2012)
6433
6445
* #860: Do not crash when encountering invalid doctest examples, just
6434
6446
emit a warning.
6435
6447
6436
- * #864: Fix crash with some settings of `modindex_common_prefix`.
6448
+ * #864: Fix crash with some settings of :confval: `modindex_common_prefix`.
6437
6449
6438
6450
* #862: Fix handling of ``-D`` and ``-A`` options on Python 3.
6439
6451
0 commit comments