Skip to content

build(deps): bump the gmeet-bot-deps group in /integrations-examples/gmeet-bot with 5 updates#119

Open
dependabot[bot] wants to merge 1 commit into
mainfrom
dependabot/pip/integrations-examples/gmeet-bot/gmeet-bot-deps-0e930910fe
Open

build(deps): bump the gmeet-bot-deps group in /integrations-examples/gmeet-bot with 5 updates#119
dependabot[bot] wants to merge 1 commit into
mainfrom
dependabot/pip/integrations-examples/gmeet-bot/gmeet-bot-deps-0e930910fe

Conversation

@dependabot
Copy link
Copy Markdown
Contributor

@dependabot dependabot Bot commented on behalf of github May 13, 2026

Bumps the gmeet-bot-deps group in /integrations-examples/gmeet-bot with 5 updates:

Package From To
click 8.0.1 8.3.3
datetime 4.3 6.0
pyaudio 0.2.11 0.2.14
selenium 3.141.0 4.44.0
wave 0.0.2 0.1.0

Updates click from 8.0.1 to 8.3.3

Release notes

Sourced from click's releases.

8.3.3

This is the Click 8.3.3 fix release, which fixes bugs but does not otherwise change behavior and should not result in breaking changes compared to the latest feature release.

PyPI: https://pypi.org/project/click/8.3.3/ Changes: https://click.palletsprojects.com/page/changes/#version-8-3-3 Milestone: https://github.com/pallets/click/milestone/30

  • Use :func:shlex.split to split pager and editor commands into argv lists for :class:subprocess.Popen, removing shell=True. #1026 #1477 #2775
  • Fix TypeError when rendering help for an option whose default value is an object that doesn't support equality comparison with strings, such as semver.Version. #3298 #3299
  • Fix pager test pollution under parallel execution by using pytest's tmp_path fixture instead of a shared temporary file path. #3238
  • Treat Sentinel.UNSET values in a default_map as absent, so they fall through to the next default source instead of being used as the value. #3224 #3240
  • Patch pdb.Pdb in CliRunner isolation so pdb.set_trace(), breakpoint(), and debuggers subclassing pdb.Pdb (ipdb, pdbpp) can interact with the real terminal instead of the captured I/O streams. #654 #824 #843 #951 #3235
  • Add optional randomized parallel test execution using pytest-randomly and pytest-xdist to detect test pollution and race conditions. #3151
  • Add contributor documentation for running stress tests, randomized parallel tests, and Flask smoke tests. #3151 #3177
  • Show custom show_default string in prompts, matching the existing help text behavior. #2836 #2837 #3165 #3262 #3280 #3328
  • Fix default=True with boolean flag_value always returning the flag_value instead of True. The default=True to flag_value substitution now only applies to non-boolean flags, where True acts as a sentinel meaning "activate this flag by default". For boolean flags, default=True is returned as a literal value. #3111 #3239
  • Mark make_default_short_help as private API. #3189 #3250
  • CliRunner's redirected streams now expose the original file descriptor via fileno(), so that faulthandler, subprocess, and other C-level consumers no longer crash with io.UnsupportedOperation. #2865
  • Change :class:ParameterSource to an :class:~enum.IntEnum and reorder its members from most to least explicit, so values can be compared to check whether a parameter was explicitly provided. #2879 #3248

8.3.2

This is the Click 8.3.2 fix release, which fixes bugs but does not otherwise change behavior and should not result in breaking changes compared to the latest feature release.

PyPI: https://pypi.org/project/click/8.3.2/ Changes: https://click.palletsprojects.com/page/changes/#version-8-3-2 Milestone: https://github.com/pallets/click/milestone/29

... (truncated)

Changelog

Sourced from click's changelog.

Version 8.3.3

Released 2026-04-20

  • Use :func:shlex.split to split pager and editor commands into argv lists for :class:subprocess.Popen, removing shell=True. :issue:1026 :pr:1477 :pr:2775
  • Fix TypeError when rendering help for an option whose default value is an object that doesn't support equality comparison with strings, such as semver.Version. :issue:3298 :pr:3299
  • Fix pager test pollution under parallel execution by using pytest's tmp_path fixture instead of a shared temporary file path. :pr:3238
  • Treat Sentinel.UNSET values in a default_map as absent, so they fall through to the next default source instead of being used as the value. :issue:3224 :pr:3240
  • Patch pdb.Pdb in CliRunner isolation so pdb.set_trace(), breakpoint(), and debuggers subclassing pdb.Pdb (ipdb, pdbpp) can interact with the real terminal instead of the captured I/O streams. :issue:654 :issue:824 :issue:843 :pr:951 :pr:3235
  • Add optional randomized parallel test execution using pytest-randomly and pytest-xdist to detect test pollution and race conditions. :pr:3151
  • Add contributor documentation for running stress tests, randomized parallel tests, and Flask smoke tests. :pr:3151 :pr:3177
  • Show custom show_default string in prompts, matching the existing help text behavior. :issue:2836 :pr:2837 :pr:3165 :pr:3262 :pr:3280 :pr:3328
  • Fix default=True with boolean flag_value always returning the flag_value instead of True. The default=True to flag_value substitution now only applies to non-boolean flags, where True acts as a sentinel meaning "activate this flag by default". For boolean flags, default=True is returned as a literal value. :issue:3111 :pr:3239
  • Mark make_default_short_help as private API. :issue:3189 :pr:3250
  • CliRunner's redirected streams now expose the original file descriptor via fileno(), so that faulthandler, subprocess, and other C-level consumers no longer crash with io.UnsupportedOperation. :issue:2865
  • Change :class:ParameterSource to an :class:~enum.IntEnum and reorder its members from most to least explicit, so values can be compared to check whether a parameter was explicitly provided. :issue:2879 :pr:3248

Version 8.3.2

Released 2026-04-02

  • Fix handling of flag_value when is_flag=False to allow such options to be used without an explicit value. :issue:3084 :pr:3152
  • Hide Sentinel.UNSET values as None when using lookup_default(). :issue:3136 :pr:3199 :pr:3202 :pr:3209 :pr:3212 :pr:3224

... (truncated)

Commits
  • c06d2d0 Release 8.3.3
  • f1f191e Apply format guidelines to commits since latest 8.3.2 release (#3343)
  • bb59ba0 Apply format guidelines to commits since latest 8.3.2 release
  • 4a35225 Reduce blast-radius of UNSET in default_map (#3240)
  • c07bb93 Merge branch 'stable' into unset-in-default-map
  • c7e1ba8 Reorder ParameterSource (#3248)
  • 76552ff Show default string in prompt (#3328)
  • ac5cec5 Reorder ParameterSource from most to least explicit
  • 8c452e0 Merge branch 'stable' into show-default-string-in-prompt
  • 8c95c73 Reconcile default value passing and default activation (#3239)
  • Additional commits viewable in compare view

Updates datetime from 4.3 to 6.0

Changelog

Sourced from datetime's changelog.

6.0 (2025-11-25)

  • Add support for Python 3.13, 3.14.

  • Drop support for Python 3.7, 3.8, 3.9.

  • Remove setuptools fossils.

  • Remove Python2 compatiblity code.

5.5 (2024-03-21)

  • Change pickle format to export the microseconds as an int, to solve a problem with dates after 2038. ([#56](https://github.com/zopefoundation/DateTime/issues/56) <https://github.com/zopefoundation/DateTime/issues/56>_)

5.4 (2023-12-15)

  • Fix UnknownTimeZoneError when unpickling DateTime.DateTime().asdatetime(). ([#58](https://github.com/zopefoundation/DateTime/issues/58) <https://github.com/zopefoundation/DateTime/issues/58>_)

  • Repair equality comparison between DateTime instances and other types. ([#60](https://github.com/zopefoundation/DateTime/issues/60) <https://github.com/zopefoundation/DateTime/issues/60>_)

5.3 (2023-11-14)

  • Add support for Python 3.12.

  • Add preliminary support for Python 3.13a2.

5.2 (2023-07-19)

  • Cast int to float in compare methods.
  • Fix compare methods between DateTime instances and None. ([#52](https://github.com/zopefoundation/DateTime/issues/52) <https://github.com/zopefoundation/DateTime/issues/52>_)

5.1 (2023-03-14)

  • Add missing python_requires to setup.py.

... (truncated)

Commits
  • f880a58 Preparing release 6.0
  • c5d41db Prepare release.
  • d53bac4 Update Python version support. (#69)
  • b8f078c Update Python version support. (#68)
  • d67044d Add missing version specifier to setup.py
  • e95b160 Merge pull request #66 from zopefoundation/config-with-zope-product-template-...
  • 28d6788 - remove exclude
  • 77babde fixup! - update to latest meta/config templates (#67)
  • c6d71aa - update to latest meta/config templates
  • e0c8be8 Merge pull request #65 from zopefoundation/setuptools-fossils
  • Additional commits viewable in compare view

Updates pyaudio from 0.2.11 to 0.2.14

Updates selenium from 3.141.0 to 4.44.0

Release notes

Sourced from selenium's releases.

Selenium 4.44.0

Detailed Changelogs by Component

Java     |     Python     |     DotNet     |     Ruby     |     JavaScript

What's Changed

... (truncated)

Commits

Updates wave from 0.0.2 to 0.1.0

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 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 gmeet-bot-deps group in /integrations-examples/gmeet-bot with 5 updates:

| Package | From | To |
| --- | --- | --- |
| [click](https://github.com/pallets/click) | `8.0.1` | `8.3.3` |
| [datetime](https://github.com/zopefoundation/DateTime) | `4.3` | `6.0` |
| [pyaudio](https://people.csail.mit.edu/hubert/pyaudio/) | `0.2.11` | `0.2.14` |
| [selenium](https://github.com/SeleniumHQ/Selenium) | `3.141.0` | `4.44.0` |
| [wave]() | `0.0.2` | `0.1.0` |


Updates `click` from 8.0.1 to 8.3.3
- [Release notes](https://github.com/pallets/click/releases)
- [Changelog](https://github.com/pallets/click/blob/main/CHANGES.rst)
- [Commits](pallets/click@8.0.1...8.3.3)

Updates `datetime` from 4.3 to 6.0
- [Changelog](https://github.com/zopefoundation/DateTime/blob/master/CHANGES.rst)
- [Commits](zopefoundation/DateTime@4.3...6.0)

Updates `pyaudio` from 0.2.11 to 0.2.14

Updates `selenium` from 3.141.0 to 4.44.0
- [Release notes](https://github.com/SeleniumHQ/Selenium/releases)
- [Commits](SeleniumHQ/selenium@selenium-3.141.0...selenium-4.44.0)

Updates `wave` from 0.0.2 to 0.1.0

---
updated-dependencies:
- dependency-name: click
  dependency-version: 8.3.3
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: gmeet-bot-deps
- dependency-name: datetime
  dependency-version: '6.0'
  dependency-type: direct:production
  update-type: version-update:semver-major
  dependency-group: gmeet-bot-deps
- dependency-name: pyaudio
  dependency-version: 0.2.14
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: gmeet-bot-deps
- dependency-name: selenium
  dependency-version: 4.44.0
  dependency-type: direct:production
  update-type: version-update:semver-major
  dependency-group: gmeet-bot-deps
- dependency-name: wave
  dependency-version: 0.1.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: gmeet-bot-deps
...

Signed-off-by: dependabot[bot] <support@github.com>
@dependabot dependabot Bot added dependencies Pull requests that update a dependency file python Pull requests that update Python code labels May 13, 2026
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.

0 participants