alan-turing-institute / data-safe-haven

https://data-safe-haven.readthedocs.io
BSD 3-Clause "New" or "Revised" License
61 stars 15 forks source link

Bump the production-dependencies group with 5 updates #2259

Closed dependabot[bot] closed 3 weeks ago

dependabot[bot] commented 3 weeks ago

Bumps the production-dependencies group with 5 updates:

Package From To
azure-mgmt-dns 8.1.0 8.2.0
azure-mgmt-resource 23.1.1 23.2.0
rich 13.9.2 13.9.3
pydata-sphinx-theme 0.15.4 0.16.0
mypy 1.12.1 1.13.0

Updates azure-mgmt-dns from 8.1.0 to 8.2.0

Release notes

Sourced from azure-mgmt-dns's releases.

azure-mgmt-dns_8.2.0

8.2.0 (2024-10-22)

Features Added

  • Model RecordSet has a new parameter traffic_management_profile
Commits
  • 5a0559c [AutoRelease] t2-dns-2024-09-25-81486(can only be merged by SDK owner) (#37560)
  • 6166ba0 [AutoRelease] t2-containerservicefleet-2024-09-24-42036(can only be merged by...
  • 5aa70de Address API Feedback on Type Hints (#37826)
  • 697369e Updating changelog for 1.1.0 for Nov 2024 release. (#37988)
  • 6a687e3 Add support for more media message types: Video, Document and Audio (#37690)
  • 41eb652 updating docs / analyze versions (#37981)
  • 4f0349e Enhance the validation of evaluate API input parameters (#37965)
  • 19688f9 Handle cleanup for leased and encrypted storage accounts. Reduce throttling (...
  • 2c98e7e Increment version for keyvault releases (#37972)
  • 2e802fb Sync eng/common directory with azure-sdk-tools for PR 9181 (#37969)
  • Additional commits viewable in compare view


Updates azure-mgmt-resource from 23.1.1 to 23.2.0

Release notes

Sourced from azure-mgmt-resource's releases.

azure-mgmt-resource_23.2.0

23.2.0 (2024-10-24)

Features Added

  • Added operation group DataBoundariesOperations
  • Added operation group PolicyDefinitionVersionsOperations
  • Added operation group PolicySetDefinitionVersionsOperations
  • Model ParameterDefinitionsValue has a new parameter schema
  • Model PolicyAssignment has a new parameter definition_version
  • Model PolicyDefinition has a new parameter version
  • Model PolicyDefinition has a new parameter versions
  • Model PolicyDefinitionReference has a new parameter definition_version
  • Model PolicySetDefinition has a new parameter version
  • Model PolicySetDefinition has a new parameter versions
Commits
  • 7dcaf26 [AutoRelease] t2-resource-2024-10-17-51538(can only be merged by SDK owner) (...
  • 71681bd [AutoRelease] t2-iotoperations-2024-10-16-63858(can only be merged by SDK own...
  • 06d76a8 [AutoRelease] t2-containerorchestratorruntime-2024-09-24-22106(can only be me...
  • 31a40e5 [AutoRelease] t2-fabric-2024-10-14-12348(can only be merged by SDK owner) (#3...
  • 6b4b07b [AutoRelease] t2-dnsresolver-2024-10-21-86762(can only be merged by SDK owner...
  • 032b394 [AutoRelease] t2-elastic-2024-09-17-03241(can only be merged by SDK owner) (#...
  • 323609b [Identity] Add subscription support to Azure CLI cred (#37994)
  • 60e4369 [evaluation] ci,tests,fix: Improve reliability of nltk data download in CI (#...
  • 605f72e [evaluation] Add non-gpt output metrics keys (#37993)
  • 91564ca [evaluation] Switch to query response pairs in JsonLineChatProtocol (#38057)
  • Additional commits viewable in compare view


Updates rich from 13.9.2 to 13.9.3

Release notes

Sourced from rich's releases.

The irregular expression release

Fix a broken regex that resulted in the slow path being chosen for some operations. This fix should result in notable speedups for some operations, such as wrapping text.

[13.9.3] - 2024-10-22

Fixed

Changelog

Sourced from rich's changelog.

[13.9.3] - 2024-10-22

Fixed

Commits


Updates pydata-sphinx-theme from 0.15.4 to 0.16.0

Release notes

Sourced from pydata-sphinx-theme's releases.

v0.16.0

What's Changed

... (truncated)

Commits
  • fad3647 bump: 0.16.0rc0 -> 0.16.0
  • 3325c82 Fix invalid URLs in version-switcher using dirhtml builder (#2004)
  • e4821c9 Updates for file src/pydata_sphinx_theme/locale/en/LC_MESSAGES/sphinx.po in e...
  • e24ca8b Updates for file src/pydata_sphinx_theme/locale/en/LC_MESSAGES/sphinx.po in f...
  • 7cd6e5a Updates for file src/pydata_sphinx_theme/locale/en/LC_MESSAGES/sphinx.po in f...
  • c4e7c78 Change color when hovering over code-formatted text (#2007)
  • c24b4b4 Update some of the diverging links. (#2008)
  • 5135b8f Draft script to find diverging links (#1966)
  • 8d5e364 CI Bump scientific-python/upload-nightly-action from 0.6.0 to 0.6.1 (#2003)
  • 0bcbeaf Updates for file src/pydata_sphinx_theme/locale/en/LC_MESSAGES/sphinx.po in f...
  • Additional commits viewable in compare view


Updates mypy from 1.12.1 to 1.13.0

Changelog

Sourced from mypy's changelog.

Mypy Release Notes

Next release

Mypy 1.13

We’ve just uploaded mypy 1.13 to the Python Package Index (PyPI). Mypy is a static type checker for Python. You can install it as follows:

python3 -m pip install -U mypy

You can read the full documentation for this release on Read the Docs.

Note that unlike typical releases, Mypy 1.13 does not have any changes to type checking semantics from 1.12.1.

Improved performance

Mypy 1.13 contains several performance improvements. Users can expect mypy to be 5-20% faster. In environments with long search paths (such as environments using many editable installs), mypy can be significantly faster, e.g. 2.2x faster in the use case targeted by these improvements.

Mypy 1.13 allows use of the orjson library for handling the cache instead of the stdlib json, for improved performance. You can ensure the presence of orjson using the faster-cache extra:

python3 -m pip install -U mypy[faster-cache]

Mypy may depend on orjson by default in the future.

These improvements were contributed by Shantanu.

List of changes:

  • Significantly speed up file handling error paths (Shantanu, PR 17920)
  • Use fast path in modulefinder more often (Shantanu, PR 17950)
  • Let mypyc optimise os.path.join (Shantanu, PR 17949)
  • Make is_sub_path faster (Shantanu, PR 17962)
  • Speed up stubs suggestions (Shantanu, PR 17965)
  • Use sha1 for hashing (Shantanu, PR 17953)
  • Use orjson instead of json, when available (Shantanu, PR 17955)
  • Add faster-cache extra, test in CI (Shantanu, PR 17978)

Acknowledgements

Thanks to all mypy contributors who contributed to this release:

  • Shantanu Jain
  • Jukka Lehtosalo

Mypy 1.12

We’ve just uploaded mypy 1.12 to the Python Package Index (PyPI). Mypy is a static type

... (truncated)

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
github-actions[bot] commented 3 weeks ago

Coverage report

This PR does not seem to contain any modification to coverable code.

dependabot[bot] commented 3 weeks ago

This pull request was built based on a group rule. Closing it will not ignore any of these versions in future pull requests.

To ignore these dependencies, configure ignore rules in dependabot.yml