1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801
|
# Release History
<!-- ✨ You do not need to add a pull request reference or an author, this will be added automatically by CI. ✨ -->
## Unreleased: pdoc next
## 2024-12-12: pdoc 15.0.1
- Update Mermaid.js version.
([#763](https://github.com/mitmproxy/pdoc/pull/763), @CodeMelted)
## 2024-10-11: pdoc 15.0.0
- Remove support for Python 3.8, which has reached end-of-life on 2024-10-07.
([#747](https://github.com/mitmproxy/pdoc/pull/747), @mhils)
- Inherited members are now hidden by default if the base class is not part of the documentation.
Please provide feedback in the PR if you relied on the old behavior.
([#748](https://github.com/mitmproxy/pdoc/pull/748), @mhils)
- Python 3.13: `@deprecated` decorators are now rendered with visual emphasis.
([#750](https://github.com/mitmproxy/pdoc/pull/750), @mhils)
- Improve mocking of `sys.stdin`, `sys.stdout`, and `sys.stderr` to fix runtime errors with some packages.
([#751](https://github.com/mitmproxy/pdoc/pull/751), @mhils)
## 2024-09-11: pdoc 14.7.0
- Do not shorten `current_module.func` to `func` in docstrings when linking.
This prevents logical errors in code examples with imports.
([#740](https://github.com/mitmproxy/pdoc/pull/740), @mhils)
- Add support for Python 3.13.
([#730](https://github.com/mitmproxy/pdoc/pull/730), @mhils)
- pdoc now strips `collections.abc.` from type annotations to make them more concise.
([#736](https://github.com/mitmproxy/pdoc/pull/736), @mhils)
## 2024-08-27: pdoc 14.6.1
- Fix a bug where entire modules would be excluded by `--no-include-undocumented`.
To exclude modules, see https://pdoc.dev/docs/pdoc.html#exclude-submodules-from-being-documented.
([#728](https://github.com/mitmproxy/pdoc/pull/728), @mhils)
- Fix a bug where pdoc would crash when importing pyi files.
([#732](https://github.com/mitmproxy/pdoc/pull/732), @mhils)
- Fix a bug where subclasses of TypedDict subclasses would not render correctly.
([#729](https://github.com/mitmproxy/pdoc/pull/729), @mhils)
## 2024-07-24: pdoc 14.6.0
- If `example.data.Data` is also exposed as `example.Data`, pdoc now links to `example.Data` in documentation.
([#670](https://github.com/mitmproxy/pdoc/pull/670), @nathanthorpe, @mhils)
- Add support for [GitHub Markdown Alerts](https://docs.github.com/en/get-started/writing-on-github/getting-started-with-writing-and-formatting-on-github/basic-writing-and-formatting-syntax#alerts).
([#718](https://github.com/mitmproxy/pdoc/pull/718), @mhils)
- Improve rendering of enums on Python 3.12+.
([#708](https://github.com/mitmproxy/pdoc/pull/708), @mhils)
- Fix a bug where hyperlinks would get parsed as docstring references.
([#709](https://github.com/mitmproxy/pdoc/pull/709), @mhils)
- Fix a TypeError when trying to parse modules that implement `__dir__` incorrectly.
([#710](https://github.com/mitmproxy/pdoc/pull/710), @mhils)
- Fix a bug where a combination of `@dataclass` and `ctypes.Structure` would crash pdoc.
([#711](https://github.com/mitmproxy/pdoc/pull/711), @mhils)
- Update bundled version of markdown2.
([#717](https://github.com/mitmproxy/pdoc/pull/717), @mhils)
## 2024-06-25: pdoc 14.5.1
- **[CVE-2024-38526](https://github.com/mitmproxy/pdoc/security/advisories/GHSA-5vgj-ggm4-fg62):** Documentation generated with math mode (`pdoc --math`) does not include scripts
from polyfill.io anymore. Users who produce documentation with math mode should update immediately. All other users are unaffected.
([#703](https://github.com/mitmproxy/pdoc/pull/703), @adhintz)
## 2024-05-16: pdoc 14.5.0
- The `.. include:` rST directive now supports start-line, end-line, start-after, end-before options.
([#684](https://github.com/mitmproxy/pdoc/pull/684), @frankharkins)
- Fix image embedding in included rST files.
([#692](https://github.com/mitmproxy/pdoc/pull/692), @meghprkh)
- Support type-hints from stub-only packages. E.g: `scipy-stubs`
([#671](https://github.com/mitmproxy/pdoc/pull/671), @erikdesmedt)
- Modify css styles for MathJax to remove unnessesary scroll bars
([#675](https://github.com/mitmproxy/pdoc/pull/675), @thehappycheese)
## 2024-01-18: pdoc 14.4.0
- Private methods can now be included in the documentation by adding `@public` to the docstring.
This complements the existing `@private` annotation.
([#655](https://github.com/mitmproxy/pdoc/pull/655), @tmeyier)
- pdoc now correctly detects the source file for wrapped functions.
([#657](https://github.com/mitmproxy/pdoc/pull/657), @tmeyier)
- Fixed a bug where memory addresses were not removed from output.
([#663](https://github.com/mitmproxy/pdoc/pull/663), @mhils)
## 2023-12-22: pdoc 14.3.0
- Improve rendering of `.pyi` type stubs containing `@typing.overload`.
([#652](https://github.com/mitmproxy/pdoc/pull/652), @mhils)
- `@property` and `@cached_property` attributes now have a "View Source" button.
([#654](https://github.com/mitmproxy/pdoc/pull/654), @tmeyier)
## 2023-12-13: pdoc 14.2.0
- pdoc now documents PyO3 or pybind11 submodules that are not picked up by Python's builtin pkgutil module.
([#633](https://github.com/mitmproxy/pdoc/issues/633), @mhils)
- pdoc now supports Python 3.12's `type` statements and has improved `TypeAlias` rendering.
([#651](https://github.com/mitmproxy/pdoc/pull/651), @mhils)
- Imports in a TYPE_CHECKING section that reference members defined in another module's TYPE_CHECKING section now work
correctly.
([#649](https://github.com/mitmproxy/pdoc/pull/649), @mhils)
- Add support for `code-block` ReST directives
([#624](https://github.com/mitmproxy/pdoc/pull/624), @JCGoran)
- If a variable's value meets certain entropy criteria and matches an environment variable value,
pdoc will now emit a warning and display the variable's name as a placeholder instead.
This heuristic is meant to prevent accidental leakage of environment secrets and can be disabled by setting
`PDOC_DISPLAY_ENV_VARS=1`.
([#622](https://github.com/mitmproxy/pdoc/pull/622), @mhils)
## 2023-09-10: pdoc 14.1.0
- Add compatibility with Python 3.12
([#620](https://github.com/mitmproxy/pdoc/pull/620), @mhils)
- Add support for relative links. Instead of explicitly referring to `mypackage.helpers.foo`,
one can now also refer to `.helpers.foo` within the `mypackage` module, or `..helpers.foo` in a submodule.
([#544](https://github.com/mitmproxy/pdoc/pull/544), @Crozzers)
- Function signatures will now display "Foo" instead "demo.Foo" if the function is in the same module.
([#544](https://github.com/mitmproxy/pdoc/pull/544), @mhils)
- pdoc now also picks up docstrings from `.pyi` stub files.
([#619](https://github.com/mitmproxy/pdoc/pull/619), @mhils)
- Fix horizontal scroll navigation z-index issue.
([#616](https://github.com/mitmproxy/pdoc/pull/616), @Domi04151309)
- Be more strict about parsing URLs in pdoc's web server.
([#617](https://github.com/mitmproxy/pdoc/pull/617), @mhils)
## 2023-06-19: pdoc 14.0.0
- Functions, classes and variables can now be hidden from documentation by adding `@private` to their docstring.
([#578](https://github.com/mitmproxy/pdoc/pull/578), @mhils)
- pdoc can now be configured to skip classes/functions/variables without docstrings by passing
`--no-include-undocumented`.
([#578](https://github.com/mitmproxy/pdoc/pull/578), @mhils)
- pdoc now documents variables by default, even if they have no docstring or type annotation.
Please make yourself heard in [#574](https://github.com/mitmproxy/pdoc/issues/574) if that
introduces significant issues for your use case.
([#575](https://github.com/mitmproxy/pdoc/pull/575), @mhils)
- Add support for Python 3.12.
([#570](https://github.com/mitmproxy/pdoc/pull/570), @mhils)
- Remove support for Python 3.7, which has reached end-of-life on 2023-06-27.
([#569](https://github.com/mitmproxy/pdoc/pull/569), @mhils)
## 2023-04-24: pdoc 13.1.1
- Fix rendering of dynamically modified docstrings.
([#537](https://github.com/mitmproxy/pdoc/pull/537), @mhils)
- Updated bundled markdown2 version to fix a bug with empty code blocks.
([#537](https://github.com/mitmproxy/pdoc/pull/537), @mhils)
- `pdoc.doc_ast.AstInfo` now has separate `func_docstrings` and `var_docstrings` attributes
instead of one combined one.
([#537](https://github.com/mitmproxy/pdoc/pull/537), @mhils)
## 2023-03-31: pdoc 13.1.0
- Add support for rendering [Mermaid diagrams](https://mermaid.js.org/) by passing `--mermaid`.
([#525](https://github.com/mitmproxy/pdoc/pull/525), @thearchitector, @mhils)
- Add rudimentary support for `typing_extensions.Literal` on Python 3.7.
([#527](https://github.com/mitmproxy/pdoc/pull/527), @mhils)
## 2023-03-21: pdoc 13.0.1
- Add additional Jinja2 blocks to allow a more fine-grained customization of the menu.
([#521](https://github.com/mitmproxy/pdoc/pull/521), @mikkelakromann)
- Fix a crash in pdoc 13.0.0 when `__init__.py` is passed as a file to pdoc.
([#522](https://github.com/mitmproxy/pdoc/pull/522), @mhils)
## 2023-02-19: pdoc 13.0.0
- pdoc now skips constructors if they neither have a docstring nor any parameters. This improves display
of classes that are not meant to be instantiated manually, for example when using PyO3.
([#510](https://github.com/mitmproxy/pdoc/pull/510), @mhils)
- Automatically fold a variable's default value if it exceeds 100 characters.
Feedback on this cutoff is welcome!
([#511](https://github.com/mitmproxy/pdoc/pull/511), @mhils)
- Add a workaround to support inherited TypedDicts.
([#504](https://github.com/mitmproxy/pdoc/issues/504), @mhils)
- `Variable.default_value_str` does not include the ` = ` prefix anymore. It will now emit a warning and return
an empty string if `repr(value)` crashes.
([#510](https://github.com/mitmproxy/pdoc/pull/510), @mhils)
- Fix a CSS issue where the lower half of the navigation toggle would be unresponsive on mobile.
([#510](https://github.com/mitmproxy/pdoc/pull/510), @mhils)
## 2023-01-06: pdoc 12.3.1
- Switch from `setup.py` to `pyproject.toml` for pdoc itself. Please file an issue if that causes any problems.
([#474](https://github.com/mitmproxy/pdoc/issues/474), @mhils)
- Fix broken links for inherited methods if both parent and subclass have the same name.
([#493](https://github.com/mitmproxy/pdoc/pull/493), @mhils)
- "Parameters", "Params" and "Arguments" are now also accepted as headings for
argument lists in Google-style docstrings.
([#489](https://github.com/mitmproxy/pdoc/pull/489), @ntamas)
## 2022-11-15: pdoc 12.3.0
- Docstrings can now include local images which will be embedded into the page, e.g. ``.
([#282](https://github.com/mitmproxy/pdoc/issues/282), @mhils)
- Fix a bug in parsing Google-style docstrings with extraneous whitespace.
([#459](https://github.com/mitmproxy/pdoc/pull/459), @vsajip, @mhils)
- `pdoc.doc.Doc.members` now includes variables without type annotation and docstring.
They continue to not be documented in the default HTML template.
([#107](https://github.com/mitmproxy/pdoc/issues/107), @mhils)
- Improve the conversion of reStructuredText to Markdown for function and method references.
([#463](https://github.com/mitmproxy/pdoc/pull/463), @vsajip)
- Static class attributes that point to a class are now rendered as variables, not as separate classes.
([#465](https://github.com/mitmproxy/pdoc/pull/465), @mhils)
## 2022-11-10: pdoc 12.2.2
- Fix a CSS issue for overflowing math equations.
([#456](https://github.com/mitmproxy/pdoc/pull/456), @mhils)
- Fix a regression from pdoc 12.2: Enum members are now always documented
even if they do not have a docstring.
([#457](https://github.com/mitmproxy/pdoc/pull/457), @mhils)
## 2022-11-05: pdoc 12.2.1
- Fix handling of type annotations in nested classes.
([#440](https://github.com/mitmproxy/pdoc/issues/440), [@mhils](https://github.com/mhils))
- `Doc.type` is now `Doc.kind` to avoid confusion with `builtins.type`.
- The new `PDOC_ALLOW_EXEC` environment variable provides an escape hatch for
modules that cannot be imported without executing subprocesses.
([#450](https://github.com/mitmproxy/pdoc/issues/450), [@mhils](https://github.com/mhils))
## 2022-09-20: pdoc 12.2.0
- Make documentation of variables more consistent. Variables with a default value
and no docstring are now hidden, matching the behavior of variables with a type annotation only.
([#411](https://github.com/mitmproxy/pdoc/issues/411), [@mhils](https://github.com/mhils))
- Remove `format` argument from `pdoc.pdoc()`. For the forseeable future, pdoc will only support HTML export.
([#308](https://github.com/mitmproxy/pdoc/issues/308), [@mhils](https://github.com/mhils))
- Update vendored copy of markdown2.
([#429](https://github.com/mitmproxy/pdoc/issues/429), [@mhils](https://github.com/mhils))
- Fix "View Source" button when a function has the same name as the module it is in.
([#431](https://github.com/mitmproxy/pdoc/issues/431), [@mhils](https://github.com/mhils))
- Improve display of dataclasses.
([#411](https://github.com/mitmproxy/pdoc/issues/411), [@mhils](https://github.com/mhils))
- Do not execute or document `__main__.py` files. `__main__` submodules can still be documented
by explicitly passing them when invoking pdoc.
([#438](https://github.com/mitmproxy/pdoc/issues/438), [@mhils](https://github.com/mhils))
## 2022-06-08: pdoc 12.1.0
- Add compatibility with Python 3.11
([#394](https://github.com/mitmproxy/pdoc/issues/394), [@mhils](https://github.com/mhils))
- Make sure that docstrings are picked up for functions that have been
turned into non-function objects by decorators.
([#416](https://github.com/mitmproxy/pdoc/issues/416), [@jeamland](https://github.com/jeamland))
- Update vendored copy of markdown2.
([#421](https://github.com/mitmproxy/pdoc/issues/421), [@mhils](https://github.com/mhils))
- Apply syntax highlighting to search results as well. ([@mhils](https://github.com/mhils))
- Fix display of `@classmethod @property` instances without docstrings. ([@mhils](https://github.com/mhils))
- Add support for `@functools.singledispatchmethod`.
([#428](https://github.com/mitmproxy/pdoc/issues/428), [@mhils](https://github.com/mhils))
- pdoc now terminates if a module cannot be imported instead of raising a warning.
You may need to preemptively
[exclude submodules](https://pdoc.dev/docs/pdoc.html#exclude-submodules-from-being-documented)
that fail to import anyway.
([#407](https://github.com/mitmproxy/pdoc/issues/407), [@mhils](https://github.com/mhils))
- Fix compatibility with GitPython.
([#430](https://github.com/mitmproxy/pdoc/issues/430), [@mhils](https://github.com/mhils))
## 2022-06-08: pdoc 12.0.2
- Extend auto-linking of URLs in Markdown.
([#401](https://github.com/mitmproxy/pdoc/issues/401), [@mhils](https://github.com/mhils))
- Mention which implementation of Markdown is supported, with what extras enabled
([#403](https://github.com/mitmproxy/pdoc/issues/403), [@f3ndot](https://github.com/f3ndot))
- Fix a bug where function signatures had weird line breaks.
([#404](https://github.com/mitmproxy/pdoc/issues/404), [@mhils](https://github.com/mhils))
- Exclude line numbers from text selection.
([#405](https://github.com/mitmproxy/pdoc/issues/405), [@mhils](https://github.com/mhils))
## 2022-06-03: pdoc 12.0.1
- Fix linking of some function return annotations.
- Refine rendering of function signatures. Syntax errors are now handled more gracefully.
- Gracefully handle the case when users specify objects instead of strings in `__all__`.
## 2022-05-15: pdoc 12.0.0
- Improve rendering of function signatures. Annotations are now syntax-highlighted! ✨
- Change the implementation of *View Source* to not use an HTML `<details>` element. Recent versions
of Chrome started to auto-expand source code blocks on search, which made it difficult to search in docstrings.
- Line numbers now start at 1, not at 0.
- The aforementioned template improvements may require minor adjustments to custom templates.
Users who do not use custom templates are unaffected.
- Users who customized the `view_source` macro:
This macro has been split into three smaller macros, please check
[`module.html.jinja2`](https://github.com/mitmproxy/pdoc/blob/main/pdoc/templates/default/module.html.jinja2).
This change was necessary to make sure that the button does not overflow function signatures.
- Users who customized the `member`, `class`, `function`, `submodule` or `variable` macros:
Common parts have been combined in the `member` macro, please check
[`module.html.jinja2`](https://github.com/mitmproxy/pdoc/blob/main/pdoc/templates/default/module.html.jinja2).
- Fix: Hide the nav menu checkbox in Firefox.
## 2022-05-04: pdoc 11.2.0
- pdoc now picks up type annotations from `.pyi` stub files (PEP-561).
This greatly improves support for native modules where no Python source code is available,
for example when using PyO3.
([#390](https://github.com/mitmproxy/pdoc/issues/390), [@mhils](https://github.com/mhils))
- Template Style Improvements: The size of headings within docstrings has been reduced.
Docstrings are now slightly indented on wide screens.
([#383](https://github.com/mitmproxy/pdoc/issues/383), [@jacksund](https://github.com/jacksund) and [@mhils](https://github.com/mhils))
- Improve rendering of `typing.TypedDict` subclasses.
([#389](https://github.com/mitmproxy/pdoc/issues/389), [@mhils](https://github.com/mhils))
## 2022-04-24: pdoc 11.1.0
- Display line numbers when viewing source code.
([#328](https://github.com/mitmproxy/pdoc/issues/328), [@mhils](https://github.com/mhils))
- Fix catastrophic backtracking in a markdown2 regex that processes pyshell examples.
([#376](https://github.com/mitmproxy/pdoc/issues/376), [@Andrew-Sheridan](https://github.com/Andrew-Sheridan) and [@mhils](https://github.com/mhils))
- pdoc now uses the submodule name in the rendered sidebar, rather than the full import path.
([#374](https://github.com/mitmproxy/pdoc/issues/374), [@jacksund](https://github.com/jacksund))
- Fix a bug where explicit links were rendered incorrectly.
([#382](https://github.com/mitmproxy/pdoc/issues/382), [@mhils](https://github.com/mhils))
- Fix compatibility with Pygments 2.12.
([#384](https://github.com/mitmproxy/pdoc/issues/384), [@mhils](https://github.com/mhils))
## 2022-04-06: pdoc 11.0.0
- pdoc now picks up reStructuredText syntax in docstrings by default. We still prefer plain Markdown,
but this change makes it possible to seamlessly include directives like `.. include:: README.md` or admonitions,
which have no Markdown equivalent. reStructuredText processing can be disabled by explicitly setting the docstring
format to Markdown.
([#373](https://github.com/mitmproxy/pdoc/issues/373), [@mhils](https://github.com/mhils))
- pdoc's documentation has been revised, it now also includes [a simple recipe for using pdoc with GitHub Pages
](https://pdoc.dev/docs/pdoc.html#deploying-to-github-pages).
([#373](https://github.com/mitmproxy/pdoc/issues/373), [@mhils](https://github.com/mhils))
- Improve display of reStructuredText admonitions.
([#372](https://github.com/mitmproxy/pdoc/issues/372), [@mhils](https://github.com/mhils))
- Add support for reStructuredText field lists: `:param foo: text`.
([#275](https://github.com/mitmproxy/pdoc/issues/275), [@mhils](https://github.com/mhils))
## 2022-03-23: pdoc 10.0.4
- Include `typing.TypeVar` variables in documentation if they have an explicit docstring.
([#361](https://github.com/mitmproxy/pdoc/issues/361), [@ktbarrett](https://github.com/ktbarrett))
- Make sure that new-style type aliases like `dict[str,str]` are rendered like their old-style
`typing.Dict[str,str]` equivalents.
([#363](https://github.com/mitmproxy/pdoc/issues/363), [@hriebl](https://github.com/hriebl))
- Fix a bug in markdown2 where code snippets interfere with latex expressions
([#340](https://github.com/mitmproxy/pdoc/issues/340), [@Crozzers](https://github.com/Crozzers))
## 2022-03-08: pdoc 10.0.3
- Fix linking of modules.
([#360](https://github.com/mitmproxy/pdoc/issues/360), [@vlad-nn](https://github.com/vlad-nn))
## 2022-03-01: pdoc 10.0.2
- When determining the docstring for a constructor, prefer `Class.__init__.__doc__` over `Metaclass.__call__.__doc__`
over `Class.__new__.__doc__`.
([#352](https://github.com/mitmproxy/pdoc/issues/352), [@denised](https://github.com/denised))
- Improve linking of classes that are re-exported in a common top-level namespace.
- Make it more clear that Markdown ist the default docformat. ([@Dliwk](https://github.com/Dliwk))
- Fix compatiblity with code using `ctypes.util.find_library`.
([#358](https://github.com/mitmproxy/pdoc/issues/358), [@bubalis](https://github.com/bubalis))
## 2022-02-14: pdoc 10.0.1
- Fix a bug where pdoc would crash after executing `TYPE_CHECKING` blocks.
([#351](https://github.com/mitmproxy/pdoc/issues/351), [@Dliwk](https://github.com/Dliwk))
- Add ability to specify custom CSS rules in `custom.css`.
The migration instructions in the 10.0.0 changelog entry have been updated accordingly.
## 2022-02-14: pdoc 10.0.0
- Template improvements may require minor adjustments to custom templates. Users who do not use custom templates are
unaffected. ([#346](https://github.com/mitmproxy/pdoc/issues/346))
- Users who embed pdoc's output into other systems: The main layout (sidebar/content) is now part of
[`frame.html.jinja2`](https://github.com/mitmproxy/pdoc/blob/main/pdoc/templates/default/frame.html.jinja2)
instead of
[`module.html.jinja2`](https://github.com/mitmproxy/pdoc/blob/main/pdoc/templates/default/module.html.jinja2).
This allows
[`index.html.jinja2`](https://github.com/mitmproxy/pdoc/blob/main/pdoc/templates/default/index.html.jinja2)
to cleanly extend `frame.html.jinja2` instead of patching `module.html.jinja2`. See
[`examples/mkdocs`](https://github.com/mitmproxy/pdoc/tree/main/examples/mkdocs) for an updated example.
If you defined a custom `{% block nav %}` block, you need to remove the outermost `<nav>` element, which is
now part of the frame around it.
- Users who customized pdoc's CSS: CSS style definitions moved from `module.html.jinja2` into individual CSS files,
namely
[`theme.css`](https://github.com/mitmproxy/pdoc/blob/main/pdoc/templates/theme.css),
[`layout.css`](https://github.com/mitmproxy/pdoc/blob/main/pdoc/templates/layout.css), and
[`content.css`](https://github.com/mitmproxy/pdoc/blob/main/pdoc/templates/content.css).
You can now either provide replacements for these files, or
[specify additional CSS rules in `custom.css`](https://github.com/mitmproxy/pdoc/blob/main/examples/custom-template/).
The existing Jinja2 blocks `style_pdoc`, `style_theme`, `style_layout`, `style_content` are being deprecated, see
[`frame.html.jinja2`](https://github.com/mitmproxy/pdoc/blob/main/pdoc/templates/default/frame.html.jinja2)
for details.
- Users who customized `syntax-highlighting.css`: pdoc now consistently uses `.pdoc-code` instead of `.pdoc`
or `.codehilite` for syntax highlighting. `.codehilite` is being deprecated but will continue to work, giving
custom templates time to migrate.
- A new `--favicon` option can be used to specify a favicon. The existing embedded default favicon has been removed
to reduce page size. ([#345](https://github.com/mitmproxy/pdoc/issues/345))
- Submodules that are mentioned in `__all__` are not listed as part of the module contents anymore. Instead, they
are listed in the navigation. This now matches the behavior as if `__all__` were not specified.
If this affects you, please leave feedback in [#341](https://github.com/mitmproxy/pdoc/issues/341).
The old behavior can be temporarily restored by setting `PDOC_SUBMODULES=1` as an environment variable while we
gather feedback.
- In line with the above change, [`pdoc.doc.Module.members`](https://pdoc.dev/docs/pdoc/doc.html#Namespace.members)
does not contain submodules anymore unless `PDOC_SUBMODULES=1` is set. API users are advised to use
[`pdoc.doc.Module.submodules`](https://pdoc.dev/docs/pdoc/doc.html#Module.submodules).
- Add a better warning message if users use `X | Y`-style type annotations
([PEP 604](https://www.python.org/dev/peps/pep-0604/)) on older Python versions which do not support them.
- Always defuse insecure `repr()` calls to also cover customized templates.
- Improve overly greedy linking of identifiers ([#342](https://github.com/mitmproxy/pdoc/issues/342))
- Include `py.typed` file in wheel distributions.
## 2022-01-26: pdoc 9.0.1
- Emit a deprecation warning if custom templates attempt to include assets that were removed from or moved within pdoc.
- Improve representation of default values.
- On mobile devices, scroll the menu into view
when the hamburger menu button is clicked.
- On mobile devices, restrict the width of the search bar
to avoid overflowing into the menu button.
## 2022-01-24: pdoc 9.0.0
- **Breaking:** For projects that only document a single module (and its submodules),
the module index has been removed. `index.html` now redirects to the top-level module instead.
Direct submodules continue to be accessible in the menu.
See [#318](https://github.com/mitmproxy/pdoc/issues/318) for details.
- Moved template assets (SVG, CSS, JS) into a `resources/` subdirectory in the template folder.
Custom templates may need to adjust their paths if they reference these files.
- pdoc web server now picks a random port if 8080 is unavailable and no explicit port has been passed.
- Improve search tokenization to better match
on function arguments.
- The "Edit on GitHub" button now says "Edit on GitLab" if it points to
GitLab, or "Edit Source" if neither platform is used.
- The `all_modules` variable now allows templates to access all other module objects.
- Add `pdoc.doc.Module.from_name` to simplify module creation.
- Do not linkify identifiers that are already manually linked.
- Hide modules in the submodule list if the were explicitly excluded from documentation.
- When importing local file paths, always make sure that the directory is
at the front of `sys.path`.
- Improve evaluation of type annotations.
## 2022-01-14: pdoc 8.3.0
- The search functionality now also covers function parameters,
annotated types, default values, and base classes.
- Work around a Blink renderer bug to make sure that arguments
are clickable and the small "expand" triangle is displayed
next to the *View Source* button.
- Add negated module specs to exclude specific (sub)modules.
For example, `pdoc foo !foo.bar` documents `foo` and all submodules of `foo` except `foo.bar`.
- Only display headings up to a depth of 2 in the table of contents for module docstrings.
## 2022-01-05: pdoc 8.2.0
- Improve rendering of warnings emitted by pdoc.
- Improve search quality by disabling the word stemmer.
- Fix a bug where the search bar on the index page did not work if only a single module was documented.
- Add a warning when multiple modules with the same name are added from different paths.
## 2021-12-28: pdoc 8.1.0
- Add CSS styling for Markdown tables. (@sitic)
- Prefer epydoc-style docstrings after variable assignments
over the variable's `__doc__`.
- Improve error message on search index compilation failures.
## 2021-10-29: pdoc 8.0.1
- Fix an edge case where class annotations were not evaluated properly.
- Improve error messages for invalid type hints.
- Fix module index when using pdoc's web server.
## 2021-09-19: pdoc 8.0.0
- `search.json` -> `search.js`: Most of pdoc's search-related JavaScript code is now
only fetched on demand, which improves page size and performance.
- pdoc's search now works from `file://` pages.
- Improve display of (extension module) data descriptors.
## 2021-08-18: pdoc 7.4.0
- Display error webpage for template errors.
- When processing type hints, detect imports in
[`TYPE_CHECKING`](https://docs.python.org/3/library/typing.html#typing.TYPE_CHECKING)
blocks.
- Add `--no-search` to disable search functionality.
## 2021-08-09: pdoc 7.3.1
- Fix a bug where an empty footer was incorrectly emitted by the template.
## 2021-08-09: pdoc 7.3.0
- Full compatibility with Python 3.10.
- Many template customizations are now directly available as command line switches, for example:
- `--math`
- `--logo`
- `--no-show-source`
- `--footer-text`
## 2021-07-28: pdoc 7.2.0
- Don't include variables/attributes that only have a type annotation but no value and no docstring.
If one wants to document a variable, a docstring should be added.
- Templating: `render_docstring` is split into `to_markdown` and `to_html` to increase customizability.
- Fix hot-reloading of included Markdown files.
- Allow Google docstring section headers to contain spaces.
- Fix formatting of Google docstrings that have multiple colons.
- Fix a crash when importing a module from within its directory.
## 2021-06-11: pdoc 7.1.1
- Do not show constructors for abstract base classes unless they have a custom docstring.
- Fix math example to render formulae in search results.
## 2021-06-03: pdoc 7.1.0
- Invoking `pdoc` without any arguments now asks the user to specify module name
instead of starting pdoc with all available modules. The previous implementation
had a poor user experience as building the search index took too long.
- Improve documentation of `pdoc.extract`. `pdoc.extract.parse_specs` has been renamed to `walk_specs`,
the old API now emits a deprecation warning.
- Add `pdoc.doc.Doc.source_lines` to access where in a file an object is defined.
- Fix a crash when importing `asyncio` on Windows on Python 3.7.
## 2021-05-30: pdoc 7.0.3
- Do not show a search bar on the module page if only one module is documented.
If the entire documentation is contained on a single HTML page, the browser's search functionality is just as good.
Users can piggyback on their preexisting knowledge about the search semantics in this case.
## 2021-05-27: pdoc 7.0.2
- Fix section indentation in Google-style docstrings.
## 2021-05-21: pdoc 7.0.1
- Fix compatibility with older Jinja2 versions.
- Fix basic compatibility with Python 3.10b1.
## 2021-05-12: pdoc 7.0.0
- Add search functionality.
pdoc now has a search bar which allows users to quickly
find relevant parts in the documentation.
See https://pdoc.dev/docs/pdoc/search.html for details.
- Redesign module list (index.html.jinja2).
- Update Bootstrap to v5.0.0.
- Do not fail if `inspect.getdoc()` raises.
- Fix compatibility with Jinja2 3.0.0.
## 2021-04-30: pdoc 6.6.0
- Jinja2 templates can now access system environment variables,
for example to pass version information.
## 2021-04-29: pdoc 6.5.0
- Add support for `.. include::` directives to include external Markdown files.
- Add word break points for long module and class names. (@jstriebel)
## 2021-04-21: pdoc 6.4.4
- Fix a crash when `inspect.signature` returns incomplete source code.
- Fix a crash when inspecting unhashable functions.
## 2021-04-11: pdoc 6.4.3
- Fix a bug when dedenting multi-line decorators.
- Make it easier to change the logo on the module index page.
## 2021-03-28: pdoc 6.4.2
- Minor rendering improvements for enums and typing.NamedTuples.
- pdoc now emits a warning when directory names conflict with modules
already loaded by pdoc.
- If a class is publicly reimported in the current module, pdoc now links to
the reimported instance instead of the source location.
## 2021-03-19: pdoc 6.4.1
- Private function decorators (those starting with "\_")
are now hidden by default. (@zmoon)
- If pdoc is invoked with a name that is both an installed Python module
and a local directory, notify the user that the installed module will be documented.
- `__doc__` is now not rendered as a variable, even if included in `__all__`.
- Submodules are now internally assigned a qualname, which fixes broken anchor links.
## 2021-03-10: pdoc 6.4.0
- Functions in the current scope can now be referenced without specifying
the full qualified name. For example, one can use `bar()` instead of
`Foo.bar()` in the docstring of `Foo`.
- Numpydoc: *See Also* sections are now parsed properly.
- reStructuredText: Add support for footnotes and fix minor bugs.
## 2021-02-24: pdoc 6.3.2
- Bugfix: Docstrings for data descriptors are now captured properly.
- Add an example for math formula rendering.
## 2021-02-15: pdoc 6.3.1
- Cosmetic improvements in default value rendering:
object and function memory addresses are now stripped.
- Accessibility Improvements
## 2021-02-14: pdoc 6.3.0
- Respect `__all__` when collecting submodules.
- Correct wrong links in module index (@fweisser)
- Emit more detailed error messages on import failure.
## 2021-02-12: pdoc 6.2.0
- Improvement: Add syntax highlighting in ">>>" code block examples.
- Bugfix: Module-level comments are not properly live-reloaded.
## 2021-02-12 pdoc 6.1.1
- Bugfix: Don't eat underscores in numpy/Google-style docstrings.
- Bugfix: Fix rendering of typing.NamedTuple.
## 2021-02-07 pdoc 6.1.0
- Add compatibility for Python 3.7
## 2021-02-07 pdoc 6.0.0
- Add dark mode theme (@Arkelis)
pdoc's color scheme can now be customized with CSS variables.
This may be a minor breaking change for users who have heavily customized their templates.
- Docs: Add an example how to integrate pdoc with mkdocs.
- Bugfix: pdoc now retains custom rendering configuration when it renders itself with live-reload.
## 2021-02-05 pdoc 5.0.0
- Make it easier to embed pdoc into other systems:
See <https://pdoc.dev/docs/pdoc.html#integrate-pdoc-into-other-systems> for details.
This change may be a minor breaking change for users using custom templates.
- Generic class bases are now displayed fully.
This may be a minor breaking change for users who customized class base output.
- Add header anchors to documentation items.
- Define all Jinja2 macros as `{% defaultmacro %}`, which makes them easier to override.
- Parsing is not more robust if source code is unavailable.
- Bugfix: Functions decorated with `@classmethod` now also inherit their docstring.
- Bugfix: The "View Source" marker is now properly displayed in Firefox.
## 2021-02-01 pdoc 4.0.0
- Improve how inherited members are detected.
`Doc.declared_at` is superseded by `Doc.taken_from`,
which is a relatively minor but breaking change in the Python API.
- Bugfix: Don't link private members in the same module.
- Improve error message when module live-reload fails.
- Smaller favicon, improved CSS minification
- Improve error message if module is not found.
## 2021-01-26 pdoc 3.0.1
- Fix usage of `--docformat`.
## 2021-01-24 pdoc 3.0.0
- Add support for alternative docstring flavors.
Flavors can be enabled globally using `--docformat` or on a per-module
basis using `__docformat__ = "..."`.
- Add support for Google docstrings.
- Add basic support for Numpydoc and reStructuredText docstrings.
The most common rST elements are supported, but we do not intend
to support the full complexity of the spec.
- Links within the current module now don't require the full qualified path.
- Live-reloading is now more robust.
- Improvements to the default theme.
## 2021-01-22: pdoc 2.0.0
- Make it possible to selectively include private or exclude public members in templates.
This comes with a breaking change: `pdoc.doc.Namespace.members` now includes private members.
- Enhancement: Keep page position when live-reloading.
- Enhancement: Don't show common server connection errors in the console.
## 2021-01-20: pdoc 1.1.0
- pdoc now respects `__all__` when listing submodules.
## 2021-01-19: pdoc 1.0.1
- Test CI processes by shipping a quick patch release.
- Bugfix: Don't crash on lambdas as class attributes.
- Bugfix: Don't crash on comments between decorators.
- Bugfix: Don't crash pdoc if a user's custom __getattr__ implementation is crashing.
- Bugfix: use `inspect.unwrap` instead of unwrapping manually.
## 2021-01-19: pdoc 1.0.0
This release features a major rewrite of pdoc, dropping compatibility
with Python 2 and focusing on modern Python 3 only.
- Added: First-class support for type annotations
- Added: Simpler directory structure
- Added: New responsive documentation theme
- Added: New website and documentation
- Added: 100% test coverage and CI
- Use Jinja2 instead of mako.
- Removed: Support for `__pdoc__`, which is rarely required
when following modern Python standards. This feature may return
depending on user feedback.
- Removed: Markdown output. The project now focuses on HTML documentation.
PRs to re-add markdown support will be gladly accepted.
pdoc is now maintained by [@mhils](https://github.com/mhils) and the rest of the mitmproxy team.
## pdoc 0.3.2
- Bugfix release.
## pdoc 0.3.1
- Source code is extracted from __wrapped__ if it exists, and then
falls back to inspect.getsourcelines. This reverses the behavior
implemented in #6.
- Fix Python 2.6 compatibility by requiring Markdown < 2.5 (#19).
Markdown 2.5 dropped support for Python 2.6.
- Get rid of tabs that sneaked in from #17.
- Fix pep8 violations.
## pdoc 0.3.0
- Major HTML face lift. Kudos to @knadh!
(PR: https://github.com/mitmproxy/pdoc/pull/17)
## pdoc 0.2.4
- Fixed bug in HTTP server that was referencing a non-existent
variable.
## pdoc 0.2.3
- Fixed #10 (the --template-dir flag now works).
## pdoc 0.2.2
- Fixes #7 by ignoring module loaders that lack a 'path' attribute.
## pdoc 0.2.1
- Fixes #5 by trying to find source for decorated functions.
(@austin1howard)
## pdoc 0.2.0
- Fix issue #2 by making pdoc a package instead of a module.
The templates are now included as package_data, which seems
to be more portable (its final location is more predictable).
## pdoc 0.1.8
- pdoc now interprets `__pdoc__[key] = None` as an explicit way
to hide `key` from the public interface of its module.
## pdoc 0.1.7
- Removed __new__ from the public interface. I think __init__
is sufficient.
## pdoc 0.1.6
- Fixed bug #1.
## pdoc 0.1.5
- Fixed a bug with an improper use of getattr.
- Made pdoc aware of __slots__. (Every identifier in __slots__
is automatically interpreted as an instance variable.)
## pdoc 0.1.4
- Fixed bug where getargspec wasn't being used in Python 2.x.
## pdoc 0.1.3
- Avoid a FQDN lookup.
## pdoc 0.1.2
- A few doco touchups.
- Fixed a bug in Py3K. Use getfullargspec when available.
## pdoc 0.1.1
- Documentation touch ups.
- Removed unused command line flags.
## pdoc 0.1.0
First public release.
|