ansys / pymechanical

Pythonic interface to Ansys Mechanical ™
https://mechanical.docs.pyansys.com/
MIT License
36 stars 18 forks source link

MAINT: Bump the doc group with 4 updates #751

Closed dependabot[bot] closed 4 months ago

dependabot[bot] commented 4 months ago

Bumps the doc group with 4 updates: ansys-sphinx-theme, panel, sphinx-design and sphinx-notfound-page.

Updates ansys-sphinx-theme from 0.16.0 to 0.16.2

Commits
  • fd930c7 Updating CHANGELOG for v0.16.2
  • 257d03b release: bump version 0.16.2
  • 3cbed60 chore: update CHANGELOG for v0.16.1 (#379)
  • 0458de8 Updating CHANGELOG for v0.16.1
  • 5a2d859 release: bump version 0.16.1
  • e50a43b chore(deps): bump sphinx-notfound-page from 1.0.0 to 1.0.1 (#376)
  • 85baee4 chore(deps): bump requests from 2.32.1 to 2.32.2 (#377)
  • 844f5c4 maint: update the sphinx-autoapi version (#375)
  • 28e067f chore(deps): bump requests from 2.31.0 to 2.32.1 (#374)
  • See full diff in compare view


Updates panel from 1.4.2 to 1.4.3

Release notes

Sourced from panel's releases.

Version 1.4.3

This patch release is likely the last in the 1.4.x series. The most important fixes in this release are fixes to ensure keyboard shortcuts do not get triggered inside Panel components for for recent versions of JupyterLab, fixes for OAuth token refreshes, and various documentation fixes. The release also includes a small number of enhancements, including improved UX for the FileSelector. Many thanks to the many contributors to this release including @​jrycw, @​Coderambling, @​cdeil, @​twobitunicorn, and the maintainers @​Hoxbro, @​MarcSkovMadsen, @​ahuang11, @​maximlt and @​philippjfr.

Enhancements

  • Add CSS on mouse interaction with Card (#6636)
  • Make ChatMessage.reaction_icons reactive (#6807)
  • Allow external library to define additional socket handler (#6820)
  • Allow navigating FileSelector with double click (#6843)

Bug fixes

  • Ensure reference is resolved when passing options to from_param (#6762)
  • Ensure token refresh is always scheduled (#6802)
  • Fix small memory leak when caching Design modifiers (#4978)
  • Ensure refreshed tokens can be accessed across processes (#6817)
  • Ensure binary buffers are correctly extracted in notebook CommManager (#6818)
  • Make Tabulator resize handling more robust (#6821)
  • Fix links in panel convert index (#6828)
  • Suppress keyboard shortcuts in notebook output (#6825)
  • Ensure we don't error out when FastDesignProvider is undefined (#6832)
  • Ensure model changes are applied while session is starting (#6835)

Documentation

  • Refactor the hvplot.interactive tutorial utilizing pn.rx (#6700)
  • Update styling after upgrade to latest pydata-sphinx-theme (#6823)
  • Fix bug in Reset Jupyterlite script (#6834)
  • Fix gallery deployment URL (#6831)
  • Add redirects for old documentation pages (#6833)
  • Remove Google Analytics (#6836)
  • Various documentation fixes (#6829)
  • Fix link in gallery index (#6858)
Changelog

Sourced from panel's changelog.

Version 1.4.3

Date: 2024-05-21

This patch release is likely the last in the 1.4.x series. The most important fixes in this release are fixes to ensure keyboard shortcuts do not get triggered inside Panel components for for recent versions of JupyterLab, fixes for OAuth token refreshes, and various documentation fixes. The release also includes a small number of enhancements, including improved UX for the FileSelector. Many thanks to the many contributors to this release including @​jrycw, @​Coderambling, @​cdeil, and the maintainers @​Hoxbro, @​MarcSkovMadsen, @​ahuang11, @​maximlt and @​philippjfr.

Enhancements

  • Add CSS on mouse interaction with Card (#6636)
  • Make ChatMessage.reaction_icons reactive (#6807)
  • Allow external library to define additional socket handler (#6820)
  • Allow navigating FileSelector with double click (#6843)

Bug fixes

  • Ensure reference is resolved when passing options to from_param (#6762)
  • Ensure token refresh is always scheduled (#6802)
  • Fix small memory leak when caching Design modifiers (#4978)
  • Ensure refreshed tokens can be accessed across processes (#6817)
  • Ensure binary buffers are correctly extracted in notebook CommManager (#6818)
  • Make Tabulator resize handling more robust (#6821)
  • Fix links in panel convert index (#6828)
  • Suppress keyboard shortcuts in notebook output (#6825)
  • Ensure we don't error out when FastDesignProvider is undefined (#6832)
  • Ensure model changes are applied while session is starting (#6835)

Documentation

  • Refactor the hvplot.interactive tutorial utilizing pn.rx (#6700)
  • Update styling after upgrade to latest pydata-sphinx-theme (#6823)
  • Fix bug in Reset Jupyterlite script (#6834)
  • Fix gallery deployment URL (#6831)
  • Add redirects for old documentation pages (#6833)
  • Remove Google Analytics (#6836)
  • Various documentation fixes (#6829)
Commits


Updates sphinx-design from 0.5.0 to 0.6.0

Release notes

Sourced from sphinx-design's releases.

v0.6.0

What's Changed

Dependencies

New

✨ Create custom directives

You can use the sd_custom_directives configuration option in your conf.py to add custom directives, with default option values:

sd_custom_directives = {
  "dropdown-syntax": {
    "inherit": "dropdown",
    "argument": "Syntax",
    "options": {
      "color": "primary",
      "icon": "code",
    },
  }
}

The key is the new directive name to add, and the value is a dictionary with the following keys:

  • inherit: The directive to inherit from (e.g. dropdown)
  • argument: The default argument (optional, only for directives that take a single argument)
  • options: A dictionary of default options for the directive (optional)

by @​chrisjsewell in executablebooks/sphinx-design#194

✨ sync tabs by URL query parameters

Synchronised tabs can now be selected by adding a query parameter to the URL, for that sync-group, such as ?code=python for

.. tab-set-code::
.. literalinclude:: snippet.py
    :language: python

.. literalinclude:: snippet.js
    :language: javascript

The last selected tab key, per group, is also persisted SessionStorage

... (truncated)

Changelog

Sourced from sphinx-design's changelog.

0.6.0 - 2024-05-23

Dependencies

  • ⬆️ Python v3.9-3.12 by {user}chrisjsewell in {pr}186
  • ⬆️ Octicon icons to v19.8.0 by {user}ffvpor in {pr}171

New

✨ Create custom directives

You can use the sd_custom_directives configuration option in your conf.py to add custom directives, with default option values:

sd_custom_directives = {
  "dropdown-syntax": {
    "inherit": "dropdown",
    "argument": "Syntax",
    "options": {
      "color": "primary",
      "icon": "code",
    },
  }
}

The key is the new directive name to add, and the value is a dictionary with the following keys:

  • inherit: The directive to inherit from (e.g. dropdown)
  • argument: The default argument (optional, only for directives that take a single argument)
  • options: A dictionary of default options for the directive (optional)

by {user}chrisjsewell in {pr}194

✨ sync tabs by URL query parameters

Synchronised tabs can now be selected by adding a query parameter to the URL, for that sync-group, such as ?code=python for

.. tab-set-code::
.. literalinclude:: snippet.py
    :language: python

.. literalinclude:: snippet.js
    :language: javascript

The last selected tab key, per group, is also persisted to SessionStorage

... (truncated)

Commits


Updates sphinx-notfound-page from 1.0.0 to 1.0.2

Changelog

Sourced from sphinx-notfound-page's changelog.

Version 1.0.2

:Date: May 23, 2024

  • Add tests for Python 3.12
  • Remove warning about unclosed files
  • Allow str and None types on notfound_urls_prefix
  • Run pyupgrade and ruff on the codebase

Version 1.0.1

:Date: May 21, 2024

  • Do not create 404 page for embedded
  • Small documentation improvements
Commits


Dependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually by commenting @dependabot rebase.


Dependabot commands and options
You can trigger Dependabot actions by commenting on this PR: - `@dependabot rebase` will rebase this PR - `@dependabot recreate` will recreate this PR, overwriting any edits that have been made to it - `@dependabot merge` will merge this PR after your CI passes on it - `@dependabot squash and merge` will squash and merge this PR after your CI passes on it - `@dependabot cancel merge` will cancel a previously requested merge and block automerging - `@dependabot reopen` will reopen this PR if it is closed - `@dependabot close` will close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually - `@dependabot show ignore conditions` will show all of the ignore conditions of the specified dependency - `@dependabot ignore major version` will close this group update PR and stop Dependabot creating any more for the specific dependency's major version (unless you unignore this specific dependency's major version or upgrade to it yourself) - `@dependabot ignore minor version` will close this group update PR and stop Dependabot creating any more for the specific dependency's minor version (unless you unignore this specific dependency's minor version or upgrade to it yourself) - `@dependabot ignore ` will close this group update PR and stop Dependabot creating any more for the specific dependency (unless you unignore this specific dependency or upgrade to it yourself) - `@dependabot unignore ` will remove all of the ignore conditions of the specified dependency - `@dependabot unignore ` will remove the ignore condition of the specified dependency and ignore conditions