|
| 1 | +Release 8.0.0 (in development) |
| 2 | +============================== |
| 3 | + |
| 4 | +Dependencies |
| 5 | +------------ |
| 6 | + |
| 7 | +Incompatible changes |
| 8 | +-------------------- |
| 9 | + |
| 10 | +.. rst-class:: compact |
| 11 | + |
| 12 | +* Remove deprecated functions from ``sphinx.util``: |
| 13 | + |
| 14 | + * Removed ``sphinx.util.path_stabilize`` |
| 15 | + (use ``sphinx.util.osutil.path_stabilize``). |
| 16 | + * Removed ``sphinx.util.display_chunk`` |
| 17 | + (use ``sphinx.util.display.display_chunk``). |
| 18 | + * Removed ``sphinx.util.status_iterator`` |
| 19 | + (use ``sphinx.util.display.status_iterator``). |
| 20 | + * Removed ``sphinx.util.SkipProgressMessage`` |
| 21 | + (use ``sphinx.util.display.SkipProgressMessage``). |
| 22 | + * Removed ``sphinx.util.progress_message`` |
| 23 | + (use ``sphinx.util.display.progress_message``). |
| 24 | + * Removed ``sphinx.util.epoch_to_rfc1123`` |
| 25 | + (use ``sphinx.http_date.epoch_to_rfc1123``). |
| 26 | + * Removed ``sphinx.util.rfc1123_to_epoch`` |
| 27 | + (use ``sphinx.http_date.rfc1123_to_epoch``). |
| 28 | + * Removed ``sphinx.util.save_traceback`` |
| 29 | + (use ``sphinx.exceptions.save_traceback``). |
| 30 | + * Removed ``sphinx.util.format_exception_cut_frames`` |
| 31 | + (use ``sphinx.exceptions.format_exception_cut_frames``). |
| 32 | + * Removed ``sphinx.util.xmlname_checker`` |
| 33 | + (use ``sphinx.builders.epub3._XML_NAME_PATTERN``). |
| 34 | + |
| 35 | + Patch by Adam Turner. |
| 36 | +* Removed :py:func:`!sphinx.util.osutil.cd` |
| 37 | + (use :py:func:`contextlib.chdir`). |
| 38 | + Patch by Adam Turner. |
| 39 | +* Removed :py:func:`!sphinx.util.typing.stringify` |
| 40 | + (use :py:func:`!sphinx.util.typing.stringify_annotation`). |
| 41 | + Patch by Adam Turner. |
| 42 | +* #12593: Raise an error for invalid :confval:`html_sidebars` values. |
| 43 | + Patch by Adam Turner. |
| 44 | +* #12593: Raise an error in :py:func:`!Theme.get_config` for invalid sections. |
| 45 | + Patch by Adam Turner. |
| 46 | +* #11693: Remove support for old-style :file:`Makefile` and :file:`make.bat` |
| 47 | + output in :program:`sphinx-quickstart`. |
| 48 | +* #11693: Remove the :option:`!--no-use-make-mode`, :option:`!-M`, |
| 49 | + :option:`!--use-make-mode`, and :option:`!-m` options |
| 50 | + from :program:`sphinx-quickstart`. |
| 51 | + Patch by Adam Turner. |
| 52 | +* Removed the tuple interface to :py:class:`!sphinx.ext.autodoc.ObjectMember`. |
| 53 | + Patch by Adam Turner. |
| 54 | +* #12630: Sphinx 8 makes two changes to the ``linkcheck`` configuration defaults: |
| 55 | + |
| 56 | + * :confval:`linkcheck_allow_unauthorized` is now ``False`` by default. |
| 57 | + * :confval:`linkcheck_report_timeouts_as_broken` is now ``False`` by default. |
| 58 | + |
| 59 | + Patch by James Addison. |
| 60 | +* #12597: Change the default of :confval:`show_warning_types` |
| 61 | + from ``False`` to ``True``. |
| 62 | + Patch by Chris Sewell. |
| 63 | + |
| 64 | +Deprecated |
| 65 | +---------- |
| 66 | + |
| 67 | +Features added |
| 68 | +-------------- |
| 69 | + |
| 70 | +Bugs fixed |
| 71 | +---------- |
| 72 | + |
| 73 | +Testing |
| 74 | +------- |
| 75 | + |
| 76 | +Release 7.4.7 (released Jul 20, 2024) |
| 77 | +===================================== |
| 78 | + |
| 79 | +Bugs fixed |
| 80 | +---------- |
| 81 | + |
| 82 | +* #12096: Warn when files are overwritten in the build directory. |
| 83 | + Patch by Adam Turner and Bénédikt Tran. |
| 84 | +* #12620: Ensure that old-style object description options are respected. |
| 85 | + Patch by Adam Turner. |
| 86 | +* #12601, #12625: Support callable objects in :py:class:`~typing.Annotated` type |
| 87 | + metadata in the Python domain. |
| 88 | + Patch by Adam Turner. |
| 89 | +* #12601, #12622: Resolve :py:class:`~typing.Annotated` warnings with |
| 90 | + ``sphinx.ext.autodoc``, |
| 91 | + especially when using :mod:`dataclasses` as type metadata. |
| 92 | + Patch by Adam Turner. |
| 93 | +* #12589, #12626: autosummary: Fix warnings with :rst:role:`!autolink`. |
| 94 | + Patch by Adam Turner. |
| 95 | + |
| 96 | +Release 7.4.6 (released Jul 18, 2024) |
| 97 | +===================================== |
| 98 | + |
| 99 | +Bugs fixed |
| 100 | +---------- |
| 101 | + |
| 102 | +* #12589, #9743, #12609: autosummary: Do not add the package prefix when |
| 103 | + generating autosummary directives for modules within a package. |
| 104 | + Patch by Adam Turner. |
| 105 | +* #12613: Reduce log severity for ambiguity detection during inventory loading. |
| 106 | + Patch by James Addison. |
| 107 | + |
| 108 | +Release 7.4.5 (released Jul 16, 2024) |
| 109 | +===================================== |
| 110 | + |
| 111 | +Bugs fixed |
| 112 | +---------- |
| 113 | + |
| 114 | +* #12593, #12600: Revert coercing the type of selected :confval:`html_sidebars` |
| 115 | + values to a list. |
| 116 | + Log an error message when string values are detected. |
| 117 | + Patch by Adam Turner. |
| 118 | +* #12594: LaTeX: since 7.4.0, :rst:dir:`seealso` and other "light" admonitions |
| 119 | + now break PDF builds if they contain a :dudir:`figure` directive; and also |
| 120 | + if they are contained in a table cell (rendered by ``tabulary``). |
| 121 | + Patch by Jean-François B. |
| 122 | + |
1 | 123 | Release 7.4.4 (released Jul 15, 2024) |
2 | 124 | ===================================== |
3 | 125 |
|
@@ -159,11 +281,13 @@ Bugs fixed |
159 | 281 | Patch by Matthias Geier. |
160 | 282 | * #12224: Properly detect WebP files. |
161 | 283 | Patch by Benjamin Cabé. |
162 | | -* #12380: LaTeX: Footnote mark sometimes indicates ``Page N`` where ``N`` is |
163 | | - the current page number and the footnote does appear on that same page. |
| 284 | +* #12380: LaTeX: Avoid footnote markers ``Page N`` when ``N`` is already |
| 285 | + the current page number. |
164 | 286 | Patch by Jean-François B. |
165 | 287 | * #12410: LaTeX: for French and ``'lualatex'`` as :confval:`latex_engine` |
166 | | - ``polyglossia`` and not ``babel`` is used (contrarily to ``'xelatex'``). |
| 288 | + use ``babel`` as with ``'xelatex'`` (and not ``polyglossia``). |
| 289 | + Patch by Jean-François B. |
| 290 | +* #12520: LaTeX: let :rst:dir:`todolist` produce correct hyperlinks in PDF. |
167 | 291 | Patch by Jean-François B. |
168 | 292 | * #12416: Ensure that configuration setting aliases are always synchronised |
169 | 293 | when one value or the other is modified. |
|
0 commit comments