Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

chore(deps): bump the python-dependencies group with 8 updates #488

Closed

Conversation

dependabot[bot]
Copy link
Contributor

@dependabot dependabot bot commented on behalf of github Jun 17, 2024

Bumps the python-dependencies group with 8 updates:

Package From To
numpy 1.26.4 2.0.0
atlassian-python-api 3.41.13 3.41.14
mkdocs-material 9.5.26 9.5.27
datamodel-code-generator 0.25.6 0.25.7
google-api-python-client 2.132.0 2.133.0
markdownify 0.11.6 0.12.1
mammoth 1.7.1 1.8.0
slack-sdk 3.27.2 3.29.0

Updates numpy from 1.26.4 to 2.0.0

Release notes

Sourced from numpy's releases.

v2.0.0

NumPy 2.0.0 Release Notes

NumPy 2.0.0 is the first major release since 2006. It is the result of 11 months of development since the last feature release and is the work of 212 contributors spread over 1078 pull requests. It contains a large number of exciting new features as well as changes to both the Python and C APIs.

This major release includes breaking changes that could not happen in a regular minor (feature) release - including an ABI break, changes to type promotion rules, and API changes which may not have been emitting deprecation warnings in 1.26.x. Key documents related to how to adapt to changes in NumPy 2.0, in addition to these release notes, include:

Highlights

Highlights of this release include:

  • New features:
    • A new variable-length string dtype, numpy.dtypes.StringDType and a new numpy.strings namespace with performant ufuncs for string operations,
    • Support for float32 and longdouble in all numpy.fft functions,
    • Support for the array API standard in the main numpy namespace.
  • Performance improvements:
    • Sorting functions sort, argsort, partition, argpartition have been accelerated through the use of the Intel x86-simd-sort and Google Highway libraries, and may see large (hardware-specific) speedups,
    • macOS Accelerate support and binary wheels for macOS >=14, with significant performance improvements for linear algebra operations on macOS, and wheels that are about 3 times smaller,
    • numpy.char fixed-length string operations have been accelerated by implementing ufuncs that also support numpy.dtypes.StringDType in addition to the fixed-length string dtypes,
    • A new tracing and introspection API, numpy.lib.introspect.opt_func_info, to determine which hardware-specific kernels are available and will be dispatched to.
    • numpy.save now uses pickle protocol version 4 for saving arrays with object dtype, which allows for pickle objects larger than 4GB and improves saving speed by about 5% for large arrays.
  • Python API improvements:

... (truncated)

Commits
  • 1d49c7f Merge pull request #26698 from charris/prepare-2.0.0
  • 2103511 DOC: Remove duplicate in author list.
  • db8030e BUG: Change cibuildwheel version [wheel build]
  • 1a68264 REL: Prepare for the NumPy 2.0.0 release [wheel build]
  • c8665ba Merge pull request #26696 from charris/backport-26582
  • 103f4dd Merge pull request #26697 from charris/backport-25963
  • c193dcd Merge pull request #26695 from charris/backport-26667
  • 8fa8191 BUG: Fix bug in numpy.pad() (#25963)
  • ece3559 BUG: weighted nanpercentile, nanquantile and multi-dim q (#26582)
  • b31e195 BUG: Adds asanyarray to start of linalg.cross (#26667)
  • Additional commits viewable in compare view

Updates atlassian-python-api from 3.41.13 to 3.41.14

Release notes

Sourced from atlassian-python-api's releases.

3.41.14 Jira, Crowd and Bamboo methods improvements and bug fixes

What's Changed

New Contributors

Full Changelog: atlassian-api/atlassian-python-api@3.41.13...3.41.14

Commits

Updates mkdocs-material from 9.5.26 to 9.5.27

Release notes

Sourced from mkdocs-material's releases.

mkdocs-material-9.5.27

  • Updated Estonian translations

Thanks to @​Eilyre for their contributions

Changelog

Sourced from mkdocs-material's changelog.

mkdocs-material-9.5.27 (2024-06-16)

  • Updated Estonian translations

mkdocs-material-9.5.26 (2024-06-06)

  • Fixed #7232: Tab switches on scroll when linking tabs (9.5.19 regression)
  • Fixed #7230: Blog author avatar broken when referring to local file

mkdocs-material-9.5.25+insiders-4.53.11 (2024-05-27)

  • Fixed projects plugin crashing when serving before building subprojects

mkdocs-material-9.5.25 (2024-05-27)

  • Fixed #7209: Tags plugin crashing on numeric tags

mkdocs-material-9.5.24+insiders-4.53.10 (2024-05-20)

  • Fixed projects plugin crashing in serve mode when disabled
  • Fixed projects plugin crashing when building nested projects

mkdocs-material-9.5.24+insiders-4.53.9 (2024-05-20)

  • Fixed #7191: Tags listings not rendering when toc_depth is changed

mkdocs-material-9.5.24 (2024-05-20)

  • Fixed #7187: Version selector title rendering issue

mkdocs-material-9.5.23 (2024-05-15)

  • Fixed #7183: Edge case in anchor navigation when using instant navigation
  • Fixed #6436: Version selector not showing version alias

mkdocs-material-9.5.22 (2024-05-12)

  • Fixed #7170: Copy button adds empty lines for line spans (9.5.18 regression)
  • Fixed #7160: Version switching doesn't stay on page (9.5.5 regression)
  • Fixed #5619: Links in Mermaid.js diagrams not discernible

mkdocs-material-9.5.21 (2024-05-03)

  • Fixed #7133: Ensure latest version of Mermaid.js is used
  • Fixed #7125: Added warning for dotfiles in info plugin

mkdocs-material-9.5.20 (2024-04-29)

  • Fixed deprecation warning in privacy plugin (9.5.19 regression)
  • Fixed #7119: Tags plugin emits deprecation warning (9.5.19 regression)

... (truncated)

Commits

Updates datamodel-code-generator from 0.25.6 to 0.25.7

Release notes

Sourced from datamodel-code-generator's releases.

0.25.7

What's Changed

New Contributors

Full Changelog: koxudaxi/datamodel-code-generator@0.25.6...0.25.7

Commits

Updates google-api-python-client from 2.132.0 to 2.133.0

Release notes

Sourced from google-api-python-client's releases.

v2.133.0

2.133.0 (2024-06-11)

Features

Bug Fixes

Commits

Updates markdownify from 0.11.6 to 0.12.1

Release notes

Sourced from markdownify's releases.

Fix wrong version

No release notes provided.

A load of new features

Huge thanks to all the contributors!

What's Changed

New Contributors

Full Changelog: matthewwithanm/python-markdownify@0.11.6...0.12.0

Commits
  • 383847e Merge branch 'develop'
  • 74ddc40 bump to v0.12.1
  • be3a7f4 Merge branch 'develop'
  • 3b4a014 Table merge cell horizontally (#110)
  • 57d4f37 fixed tests for table caption
  • d5fb0fb make sure there are blank lines around table/figure captions (#114)
  • e4df412 Support conversion of header rows in tables without th tag (#83)
  • 804a3f8 added further readme for custom converters
  • 7d0bf46 revert workaround example in README.rst for <script> and <style> now that it ...
  • 2f9a42d Strip text before adding blockquote markers (#76)
  • Additional commits viewable in compare view

Updates mammoth from 1.7.1 to 1.8.0

Changelog

Sourced from mammoth's changelog.

1.8.0

  • Add style mapping for highlights.
Commits

Updates slack-sdk from 3.27.2 to 3.29.0

Release notes

Sourced from slack-sdk's releases.

version 3.29.0

Changes

  • #1508 Add canvases APIs and users.discoverableContacts.lookup API - Thanks @​seratch

version 3.28.0

What's Changed

New Contributors

All issues/pull requests: https://github.com/slackapi/python-slack-sdk/milestone/95?closed=1 Full Changelog: slackapi/python-slack-sdk@v3.27.2...v3.28.0

Commits
  • 75997b2 version 3.29.0
  • 67028d6 Add canvases APIs and users.discoverableContacts.lookup API (#1508)
  • 862796c fix: update release instructions in maintainers guide (#1507)
  • 41cbaa4 version 3.28.0 (#1506)
  • abdfc87 Fix base url according to official documentation (#1485)
  • 5f941f4 fix: Add deprecation warnings to Steps from Apps methods (#1504)
  • 7d13c3b Omit not-working tests
  • 089afec Fix aiohttp SocketModeClient.is_connected AttributeError in detailed logging
  • 352cb23 Update RTM client documents
  • See full diff in compare view

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 <dependency name> ignore conditions will show all of the ignore conditions of the specified dependency
  • @dependabot ignore <dependency name> 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 <dependency name> 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 <dependency name> 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 <dependency name> will remove all of the ignore conditions of the specified dependency
  • @dependabot unignore <dependency name> <ignore condition> will remove the ignore condition of the specified dependency and ignore conditions

Bumps the python-dependencies group with 8 updates:

| Package | From | To |
| --- | --- | --- |
| [numpy](https://github.com/numpy/numpy) | `1.26.4` | `2.0.0` |
| [atlassian-python-api](https://github.com/atlassian-api/atlassian-python-api) | `3.41.13` | `3.41.14` |
| [mkdocs-material](https://github.com/squidfunk/mkdocs-material) | `9.5.26` | `9.5.27` |
| [datamodel-code-generator](https://github.com/koxudaxi/datamodel-code-generator) | `0.25.6` | `0.25.7` |
| [google-api-python-client](https://github.com/googleapis/google-api-python-client) | `2.132.0` | `2.133.0` |
| [markdownify](https://github.com/matthewwithanm/python-markdownify) | `0.11.6` | `0.12.1` |
| [mammoth](https://github.com/mwilliamson/python-mammoth) | `1.7.1` | `1.8.0` |
| [slack-sdk](https://github.com/slackapi/python-slack-sdk) | `3.27.2` | `3.29.0` |


Updates `numpy` from 1.26.4 to 2.0.0
- [Release notes](https://github.com/numpy/numpy/releases)
- [Changelog](https://github.com/numpy/numpy/blob/main/doc/RELEASE_WALKTHROUGH.rst)
- [Commits](numpy/numpy@v1.26.4...v2.0.0)

Updates `atlassian-python-api` from 3.41.13 to 3.41.14
- [Release notes](https://github.com/atlassian-api/atlassian-python-api/releases)
- [Commits](atlassian-api/atlassian-python-api@3.41.13...3.41.14)

Updates `mkdocs-material` from 9.5.26 to 9.5.27
- [Release notes](https://github.com/squidfunk/mkdocs-material/releases)
- [Changelog](https://github.com/squidfunk/mkdocs-material/blob/master/CHANGELOG)
- [Commits](squidfunk/mkdocs-material@9.5.26...9.5.27)

Updates `datamodel-code-generator` from 0.25.6 to 0.25.7
- [Release notes](https://github.com/koxudaxi/datamodel-code-generator/releases)
- [Commits](koxudaxi/datamodel-code-generator@0.25.6...0.25.7)

Updates `google-api-python-client` from 2.132.0 to 2.133.0
- [Release notes](https://github.com/googleapis/google-api-python-client/releases)
- [Commits](googleapis/google-api-python-client@v2.132.0...v2.133.0)

Updates `markdownify` from 0.11.6 to 0.12.1
- [Release notes](https://github.com/matthewwithanm/python-markdownify/releases)
- [Commits](matthewwithanm/python-markdownify@0.11.6...0.12.1)

Updates `mammoth` from 1.7.1 to 1.8.0
- [Changelog](https://github.com/mwilliamson/python-mammoth/blob/master/NEWS)
- [Commits](mwilliamson/python-mammoth@1.7.1...1.8.0)

Updates `slack-sdk` from 3.27.2 to 3.29.0
- [Release notes](https://github.com/slackapi/python-slack-sdk/releases)
- [Changelog](https://github.com/slackapi/python-slack-sdk/blob/main/docs-v2/changelog.html)
- [Commits](slackapi/python-slack-sdk@v3.27.2...v3.29.0)

---
updated-dependencies:
- dependency-name: numpy
  dependency-type: direct:production
  update-type: version-update:semver-major
  dependency-group: python-dependencies
- dependency-name: atlassian-python-api
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: python-dependencies
- dependency-name: mkdocs-material
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: python-dependencies
- dependency-name: datamodel-code-generator
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: python-dependencies
- dependency-name: google-api-python-client
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: python-dependencies
- dependency-name: markdownify
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: python-dependencies
- dependency-name: mammoth
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: python-dependencies
- dependency-name: slack-sdk
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: python-dependencies
...

Signed-off-by: dependabot[bot] <support@github.com>
@dependabot dependabot bot requested a review from a team as a code owner June 17, 2024 07:26
@dependabot dependabot bot added dependencies Pull requests that update a dependency file python Pull requests that update Python code labels Jun 17, 2024
Copy link
Contributor Author

dependabot bot commented on behalf of github Jun 24, 2024

Looks like these dependencies are updatable in another way, so this is no longer needed.

@dependabot dependabot bot closed this Jun 24, 2024
@dependabot dependabot bot deleted the dependabot/pip/python-dependencies-30f4d671c2 branch June 24, 2024 07:33
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
dependencies Pull requests that update a dependency file python Pull requests that update Python code
Projects
None yet
Development

Successfully merging this pull request may close these issues.

None yet

0 participants