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鈥檒l occasionally send you account related emails.

Already on GitHub? Sign in to your account

chore(deps): bump the dependencies group with 7 updates #233

Merged
merged 1 commit into from
Apr 9, 2024

Conversation

dependabot[bot]
Copy link
Contributor

@dependabot dependabot bot commented on behalf of github Apr 9, 2024

Bumps the dependencies group with 7 updates:

Package From To
inflect 7.0.0 7.2.0
irc 20.3.1 20.4.0
jaraco-classes 3.3.1 3.4.0
jaraco-context 4.3.0 5.3.0
pydantic 2.6.3 2.6.4
sentry-sdk 1.40.6 1.44.1
typing-extensions 4.10.0 4.11.0

Updates inflect from 7.0.0 to 7.2.0

Changelog

Sourced from inflect's changelog.

v7.2.0

Features

  • Replace pydantic with typeguard (#195)

v7.1.0

Features

  • Now handle 'pair of x' in pl_sb_uninflected_complete (#188)
Commits
  • dbde4d2 Finalize
  • 684cd1a Merge pull request #199 from abravalheri/issue-195-typeguard
  • c8c27d9 Mark type checking block as uncovered.
  • c3bb3d6 Merge branch 'main' into issue-195-typeguard
  • fea125b Add news fragment.
  • 8e5842c 馃懝 Feed the hobgoblins (delint).
  • 57dca31 馃懝 Feed the hobgoblins (delint).
  • 9a5a85d Fix pointless comparison (B015).
  • 1d877c5 馃懝 Feed the hobgoblins (delint).
  • 0a88ec3 Catch more specific exception (B017).
  • Additional commits viewable in compare view

Updates irc from 20.3.1 to 20.4.0

Changelog

Sourced from irc's changelog.

v20.4.0

Features

  • Replace deprecated ssl.wrap_socket with SSLContext.wrap_socket and update examples in connection.py docs. (#216)
Commits

Updates jaraco-classes from 3.3.1 to 3.4.0

Changelog

Sourced from jaraco-classes's changelog.

v3.4.0

Features

  • Better type hints for NonDataProperty. (#13)
Commits

Updates jaraco-context from 4.3.0 to 5.3.0

Changelog

Sourced from jaraco-context's changelog.

v5.3.0

Features

  • Deprecate infer_compression, as it was used primarily for deferring to the tar command.

Bugfixes

  • Enable 'transparent' compression in the tarfile context.

v5.2.0

Features

  • Implemented tarfile using native functionality and avoiding subprocessing, making it portable. (#5)

v5.1.0

Features

  • Implement experimental _compose for composing context managers. If you wish to use this function, please comment in the issue regarding your thoughts on the ordering. (#6)
  • Deprecate null context. (#7)

v5.0.0

Features

  • Renamed tarball_context to tarball and deprecated tarball_context compatibility shim. (#3)
  • Disentangle pushd from tarball. (#4)

Deprecations and Removals

  • Removed deprecated 'runner' parameter to tarball_context.
Commits
  • e0e9224 Finalize
  • 3e9d43c Fix encoding warnings in tests.
  • 1ba8dd3 Deprecate infer_compression, as it was used primarily for deferring to the ta...
  • e0a9637 Enable 'transparent' compression, whatever that means.
  • c23c888 Finalize
  • 44fbe82 Merge pull request #9 from jaraco/feature/native-tarfile
  • 92cd4b7 Add news fragment.
  • e13fc7f Rely on backports.tarfile for consistent tarfile behavior and streaming capab...
  • e9acc05 Load the tarfile into memory to allow seeking for older tarfile implementation.
  • 035dc04 Rely on filter argument to extractall when available.
  • Additional commits viewable in compare view

Updates pydantic from 2.6.3 to 2.6.4

Release notes

Sourced from pydantic's releases.

v2.6.4 (2024-03-12)

What's Changed

Fixes

Full Changelog: pydantic/pydantic@v2.6.3...v2.6.4/

Changelog

Sourced from pydantic's changelog.

v2.6.4 (2024-03-12)

GitHub release

What's Changed

Fixes

Commits

Updates sentry-sdk from 1.40.6 to 1.44.1

Release notes

Sourced from sentry-sdk's releases.

1.44.1

Various fixes & improvements

  • Make monitor async friendly (#2912) by @鈥媠entrivana

    You can now decorate your async functions with the monitor decorator and they will correctly report their duration and completion status.

  • Fixed Event | None runtime TypeError (#2928) by @鈥媠zokeasaurusrex

1.44.0

Various fixes & improvements

1.43.0

Various fixes & improvements

  • Add optional keep_alive (#2842) by @鈥媠entrivana

    If you're experiencing frequent network issues between the SDK and Sentry, you can try turning on TCP keep-alive:

    import sentry_sdk
    sentry_sdk.init(
    # ...your usual settings...
    keep_alive=True,
    )

  • Add support for Celery Redbeat cron tasks (#2643) by @鈥媖wigley

    The SDK now supports the Redbeat scheduler in addition to the default Celery Beat scheduler for auto instrumenting crons. See the docs for more information about how to set this up.

  • aws_event can be an empty list (#2849) by @鈥媠entrivana

  • Re-export Event in types.py (#2829) by @鈥媠zokeasaurusrex

  • Small API docs improvement (#2828) by @鈥媋ntonpirker

  • Fixed OpenAI tests (#2834) by @鈥媋ntonpirker

  • Bump checkouts/data-schemas from ed078ed to 8232f17 (#2832) by @鈥媎ependabot

1.42.0

Various fixes & improvements

... (truncated)

Changelog

Sourced from sentry-sdk's changelog.

1.44.1

Various fixes & improvements

  • Make monitor async friendly (#2912) by @鈥媠entrivana

    You can now decorate your async functions with the monitor decorator and they will correctly report their duration and completion status.

  • Fixed Event | None runtime TypeError (#2928) by @鈥媠zokeasaurusrex

1.44.0

Various fixes & improvements

1.43.0

Various fixes & improvements

  • Add optional keep_alive (#2842) by @鈥媠entrivana

    If you're experiencing frequent network issues between the SDK and Sentry, you can try turning on TCP keep-alive:

    import sentry_sdk
    sentry_sdk.init(
    # ...your usual settings...
    keep_alive=True,
    )

  • Add support for Celery Redbeat cron tasks (#2643) by @鈥媖wigley

    The SDK now supports the Redbeat scheduler in addition to the default Celery Beat scheduler for auto instrumenting crons. See the docs for more information about how to set this up.

  • aws_event can be an empty list (#2849) by @鈥媠entrivana

  • Re-export Event in types.py (#2829) by @鈥媠zokeasaurusrex

  • Small API docs improvement (#2828) by @鈥媋ntonpirker

  • Fixed OpenAI tests (#2834) by @鈥媋ntonpirker

  • Bump checkouts/data-schemas from ed078ed to 8232f17 (#2832) by @鈥媎ependabot

... (truncated)

Commits

Updates typing-extensions from 4.10.0 to 4.11.0

Release notes

Sourced from typing-extensions's releases.

4.11.0

Release 4.11.0 (April 5, 2024)

This feature release provides improvements to various recently added features, most importantly type parameter defaults (PEP 696).

There are no changes since 4.11.0rc1.

Changes since 4.10.0:

  • Fix tests on Python 3.13.0a5. Patch by Jelle Zijlstra.
  • Fix the runtime behavior of type parameters with defaults (PEP 696). Patch by Nadir Chowdhury.
  • Fix minor discrepancy between error messages produced by typing and typing_extensions on Python 3.10. Patch by Jelle Zijlstra.
  • When include_extra=False, get_type_hints() now strips ReadOnly from the annotation.

4.11.0rc1

  • Fix tests on Python 3.13.0a5. Patch by Jelle Zijlstra.
  • Fix the runtime behavior of type parameters with defaults (PEP 696). Patch by Nadir Chowdhury.
  • Fix minor discrepancy between error messages produced by typing and typing_extensions on Python 3.10. Patch by Jelle Zijlstra.
  • When include_extra=False, get_type_hints() now strips ReadOnly from the annotation.
Changelog

Sourced from typing-extensions's changelog.

Release 4.11.0 (April 5, 2024)

This feature release provides improvements to various recently added features, most importantly type parameter defaults (PEP 696).

There are no changes since 4.11.0rc1.

Release 4.11.0rc1 (March 24, 2024)

  • Fix tests on Python 3.13.0a5. Patch by Jelle Zijlstra.
  • Fix the runtime behavior of type parameters with defaults (PEP 696). Patch by Nadir Chowdhury.
  • Fix minor discrepancy between error messages produced by typing and typing_extensions on Python 3.10. Patch by Jelle Zijlstra.
  • When include_extra=False, get_type_hints() now strips ReadOnly from the annotation.
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 <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

@dependabot dependabot bot added dependencies Pull requests that update a dependency file python Pull requests that update Python code labels Apr 9, 2024
@TrueBrain TrueBrain force-pushed the dependabot/pip/dependencies-15f0e47965 branch from 7dccf9f to 3917762 Compare April 9, 2024 17:50
Bumps the dependencies group with 7 updates:

| Package | From | To |
| --- | --- | --- |
| [inflect](https://github.com/jaraco/inflect) | `7.0.0` | `7.2.0` |
| [irc](https://github.com/jaraco/irc) | `20.3.1` | `20.4.0` |
| [jaraco-classes](https://github.com/jaraco/jaraco.classes) | `3.3.1` | `3.4.0` |
| [jaraco-context](https://github.com/jaraco/jaraco.context) | `4.3.0` | `5.3.0` |
| [pydantic](https://github.com/pydantic/pydantic) | `2.6.3` | `2.6.4` |
| [sentry-sdk](https://github.com/getsentry/sentry-python) | `1.40.6` | `1.44.1` |
| [typing-extensions](https://github.com/python/typing_extensions) | `4.10.0` | `4.11.0` |

Updates `inflect` from 7.0.0 to 7.2.0
- [Release notes](https://github.com/jaraco/inflect/releases)
- [Changelog](https://github.com/jaraco/inflect/blob/main/NEWS.rst)
- [Commits](jaraco/inflect@v7.0.0...v7.2.0)

Updates `irc` from 20.3.1 to 20.4.0
- [Release notes](https://github.com/jaraco/irc/releases)
- [Changelog](https://github.com/jaraco/irc/blob/main/NEWS.rst)
- [Commits](jaraco/irc@v20.3.1...v20.4.0)

Updates `jaraco-classes` from 3.3.1 to 3.4.0
- [Release notes](https://github.com/jaraco/jaraco.classes/releases)
- [Changelog](https://github.com/jaraco/jaraco.classes/blob/main/NEWS.rst)
- [Commits](jaraco/jaraco.classes@v3.3.1...v3.4.0)

Updates `jaraco-context` from 4.3.0 to 5.3.0
- [Release notes](https://github.com/jaraco/jaraco.context/releases)
- [Changelog](https://github.com/jaraco/jaraco.context/blob/main/NEWS.rst)
- [Commits](jaraco/jaraco.context@v4.3.0...v5.3.0)

Updates `pydantic` from 2.6.3 to 2.6.4
- [Release notes](https://github.com/pydantic/pydantic/releases)
- [Changelog](https://github.com/pydantic/pydantic/blob/main/HISTORY.md)
- [Commits](pydantic/pydantic@v2.6.3...v2.6.4)

Updates `sentry-sdk` from 1.40.6 to 1.44.1
- [Release notes](https://github.com/getsentry/sentry-python/releases)
- [Changelog](https://github.com/getsentry/sentry-python/blob/master/CHANGELOG.md)
- [Commits](getsentry/sentry-python@1.40.6...1.44.1)

Updates `typing-extensions` from 4.10.0 to 4.11.0
- [Release notes](https://github.com/python/typing_extensions/releases)
- [Changelog](https://github.com/python/typing_extensions/blob/main/CHANGELOG.md)
- [Commits](python/typing_extensions@4.10.0...4.11.0)

---
updated-dependencies:
- dependency-name: inflect
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: dependencies
- dependency-name: irc
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: dependencies
- dependency-name: jaraco-classes
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: dependencies
- dependency-name: jaraco-context
  dependency-type: direct:production
  update-type: version-update:semver-major
  dependency-group: dependencies
- dependency-name: pydantic
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: dependencies
- dependency-name: sentry-sdk
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: dependencies
- dependency-name: typing-extensions
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: dependencies
...

Signed-off-by: dependabot[bot] <support@github.com>
@TrueBrain TrueBrain force-pushed the dependabot/pip/dependencies-15f0e47965 branch from 3917762 to 597a0d8 Compare April 9, 2024 17:51
@TrueBrain TrueBrain merged commit 952270f into main Apr 9, 2024
9 checks passed
@TrueBrain TrueBrain deleted the dependabot/pip/dependencies-15f0e47965 branch April 9, 2024 17:54
@TrueBrain
Copy link
Member

@dependabot unignore pydantic-core

Copy link
Contributor Author

dependabot bot commented on behalf of github Apr 9, 2024

OK, I will stop ignoring the pydantic-core dependency.

Copy link
Contributor Author

dependabot bot commented on behalf of github Apr 9, 2024

Looks like this PR has already been merged. If you've moved back to an older version of these dependencies a new PR will be created next time Dependabot checks your dependencies.

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

1 participant