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

feat(deps): bump the all group across 1 directory with 13 updates #161

Merged
merged 1 commit into from
Dec 30, 2024

Conversation

dependabot[bot]
Copy link
Contributor

@dependabot dependabot bot commented on behalf of github Dec 1, 2024

Bumps the all group with 13 updates in the / directory:

Package From To
awscli 1.34.30 1.36.12
tqdm 4.66.5 4.67.1
pydantic 2.9.2 2.10.2
playwright 1.47.0 1.49.0
bleach 6.1.0 6.2.0
cloudpathlib 0.19.0 0.20.0
pymupdf 1.24.10 1.24.14
google-cloud-translate 3.16.0 3.18.0
psutil 6.0.0 6.1.0
pillow 10.4.0 11.0.0
pre-commit 3.8.0 4.0.1
pyright 1.1.382.post1 1.1.389
black 24.8.0 24.10.0

Updates awscli from 1.34.30 to 1.36.12

Commits
  • 3e48727 Merge branch 'release-1.36.12'
  • 2b8ed84 Bumping version to 1.36.12
  • 54c7be7 Update changelog based on model updates
  • 7a4ed87 Merge branch 'release-1.36.11'
  • 50c0be0 Merge branch 'release-1.36.11' into develop
  • da64028 Bumping version to 1.36.11
  • f1c5cf4 Update changelog based on model updates
  • 1fd7120 Merge pull request #9038 from chaitanyagummadi/cloudwatch-cli-docs-v3
  • fe87ab1 Merge branch 'release-1.36.10'
  • cf84445 Merge branch 'release-1.36.10' into develop
  • Additional commits viewable in compare view

Updates tqdm from 4.66.5 to 4.67.1

Release notes

Sourced from tqdm's releases.

tqdm v4.67.1 stable

  • fix gui (matplotlib syntax) (#1629)
  • misc test & framework updates
    • bump pytest-asyncio (#1630)
    • fix codecov rate limit
    • fix pybuild
    • sync dependencies

tqdm v4.67.0 stable

  • contrib.discord: replace disco-py with requests (#1536)

tqdm v4.66.6 stable

  • cli: zip-safe --manpath, --comppath (#1627)
  • misc framework updates (#1627)
    • fix pytest DeprecationWarning
    • fix snapcraft build
    • fix nbval DeprecationWarning
    • update & tidy workflows
    • bump pre-commit
    • docs: update URLs
Commits

Updates pydantic from 2.9.2 to 2.10.2

Release notes

Sourced from pydantic's releases.

v2.10.2 2024-11-26

What's Changed

Fixes

Full Changelog: pydantic/pydantic@v2.10.1...v2.10.2

v2.10.1 2024-11-21

What's Changed

Packaging

Fixes

Full Changelog: pydantic/pydantic@v2.10.0...v2.10.1

v2.10.0 2024-11-20

The code released in v2.10.0 is practically identical to that of v2.10.0b2. See the v2.10 release blog post for the highlights!

What's Changed

Packaging

New Features

... (truncated)

Changelog

Sourced from pydantic's changelog.

v2.10.2 (2024-11-25)

GitHub release

What's Changed

Fixes

v2.10.1 (2024-11-21)

GitHub release

What's Changed

Packaging

Fixes

New Contributors

v2.10.0 (2024-11-20)

The code released in v2.10.0 is practically identical to that of v2.10.0b2.

GitHub release

See the v2.10 release blog post for the highlights!

What's Changed

Packaging

... (truncated)

Commits

Updates playwright from 1.47.0 to 1.49.0

Release notes

Sourced from playwright's releases.

v1.49.0

Aria snapshots

New assertion expect(locator).toMatchAriaSnapshot() verifies page structure by comparing to an expected accessibility tree, represented as YAML.

page.goto("https://playwright.dev")
expect(page.locator('body')).to_match_aria_snapshot('''
  - banner:
    - heading /Playwright enables reliable/ [level=1]
    - link "Get started"
    - link "Star microsoft/playwright on GitHub"
  - main:
    - img "Browsers (Chromium, Firefox, WebKit)"
    - heading "Any browser • Any platform • One API"
''')

You can generate this assertion with Test Generator or by calling locator.ariaSnapshot().

Learn more in the aria snapshots guide.

Tracing groups

New method tracing.group() allows you to visually group actions in the trace viewer.

# All actions between group and group_end
# will be shown in the trace viewer as a group.
page.context.tracing.group("Open Playwright.dev > API")
page.goto("https://playwright.dev/")
page.get_by_role("link", name="API").click()
page.context.tracing.group_end()

Breaking: chrome and msedge channels switch to new headless mode

This change affects you if you're using one of the following channels in your playwright.config.ts:

  • chrome, chrome-dev, chrome-beta, or chrome-canary
  • msedge, msedge-dev, msedge-beta, or msedge-canary

After updating to Playwright v1.49, run your test suite. If it still passes, you're good to go. If not, you will probably need to update your snapshots, and adapt some of your test code around PDF viewers and extensions. See [issue #33566](microsoft/playwright#33566) for more details.

Try new Chromium headless

You can opt into the new headless mode by using 'chromium' channel. As official Chrome documentation puts it:

New Headless on the other hand is the real Chrome browser, and is thus more authentic, reliable, and offers more features. This makes it more suitable for high-accuracy end-to-end web app testing or browser extension testing.

See [issue #33566](microsoft/playwright#33566) for the list of possible breakages you could encounter and more details on Chromium headless. Please file an issue if you see any problems after opting in.

... (truncated)

Commits
  • ebf26a6 devops: make wheels smaller (use deflate zip compression) (#2662)
  • f45782e chore: roll to v1.49.0 (#2660)
  • 569d7c0 fix(select): handle empty values and labels in select options (#2661)
  • c4df71c build(deps): bump setuptools from 75.4.0 to 75.5.0 (#2654)
  • 923da5c build(deps): bump the actions group with 3 updates (#2657)
  • f2ba767 devops: update GitHub Action workflows
  • 1452881 fix(tracing): apiName determination with event listeners (#2651)
  • c2dc664 devops: do not pin pytest-playwright for examples (#2647)
  • 4fd5de0 chore: convert setup.py to build (#2642)
  • 1e1122c build(deps): bump wheel from 0.42.0 to 0.45.0 (#2638)
  • Additional commits viewable in compare view

Updates bleach from 6.1.0 to 6.2.0

Changelog

Sourced from bleach's changelog.

Version 6.2.0 (October 29th, 2024)

Backwards incompatible changes

  • Dropped support for Python 3.8. (#737)

Security fixes

None

Bug fixes

  • Add support for Python 3.13. (#736)
  • Remove six depdenncy. (#618)
  • Update known-good versions for tinycss2. (#732)
  • Fix additional < followed by characters and EOF issues. (#728)
Commits

Updates cloudpathlib from 0.19.0 to 0.20.0

Release notes

Sourced from cloudpathlib's releases.

v0.20.0

Changelog

Sourced from cloudpathlib's changelog.

v0.20.0 (2024-10-18)

Commits

Updates pymupdf from 1.24.10 to 1.24.14

Release notes

Sourced from pymupdf's releases.

PyMuPDF-1.24.14 released

PyMuPDF-1.24.14 has been released.

Wheels for Windows, Linux and MacOS, and the sdist, are available on pypi.org and can be installed in the usual way, for example:

python -m pip install --upgrade pymupdf

[Linux-aarch64 wheels will be built and uploaded later.]

Changes in version 1.24.14 (2024-11-19)

  • Use MuPDF-1.24.11.

  • Fixed issues:

  • Other:

    • Ensure that words from Page.get_text() never contain RTL/LTR char mixtures.
    • Fix building with system MuPDF.
    • Add dot product for points and vectors.

PyMuPDF-1.24.13 released

PyMuPDF-1.24.13 has been released.

Wheels for Windows, Linux and MacOS, and the sdist, are available on pypi.org and can be installed in the usual way, for example:

python -m pip install --upgrade pymupdf

[Linux-aarch64 wheels will be built and uploaded later.]

Changes in version 1.24.13 (2024-10-29)

... (truncated)

Changelog

Sourced from pymupdf's changelog.

Change Log

Changes in version 1.25.0 ()

  • Use MuPDF-1.25.1.

    • Fixed 4026 <https://github.com/pymupdf/PyMuPDF/issues/4026>_: page.get_text('blocks') output two piece of very simi lar text with different bbox
    • Fixed 4004 <https://github.com/pymupdf/PyMuPDF/issues/4004>_: Segmentation Fault When Updating PDF Form Field Value

Changes in version 1.24.14 (2024-11-19)

  • Use MuPDF-1.24.11.

  • Fixed issues:

    • Fixed 3448 <https://github.com/pymupdf/PyMuPDF/issues/3448>_: get_pixmap function removes the table and leaves just the content behind
    • Fixed 3758 <https://github.com/pymupdf/PyMuPDF/issues/3758>_: Got "malloc(): unaligned tcache chunk detected Aborted (core dumped)" while using add_redact_annot/apply_redactions
    • Fixed 3813 <https://github.com/pymupdf/PyMuPDF/issues/3813>_: Stories: Ordered list count broken with nested unordered list
    • Fixed 3933 <https://github.com/pymupdf/PyMuPDF/issues/3933>_: font.valid_codepoints() - malfunction
    • Fixed 4018 <https://github.com/pymupdf/PyMuPDF/issues/4018>_: PyMuPDF hangs when iterating over zero page PDF pages backwards
    • Fixed 4043 <https://github.com/pymupdf/PyMuPDF/issues/4043>_: fullcopypage bug
    • Fixed 4047 <https://github.com/pymupdf/PyMuPDF/issues/4047>_: Segmentation Fault in add_redact_annot
    • Fixed 4050 <https://github.com/pymupdf/PyMuPDF/issues/4050>_: Content of dict returned by doc.embfile_info() does not fit to documentation
  • Other:

    • Ensure that words from Page.get_text() never contain RTL/LTR char mixtures.
    • Fix building with system MuPDF.
    • Add dot product for points and vectors.

Changes in version 1.24.13 (2024-10-29)

  • Fixed issues:

    • Fixed 3848 <https://github.com/pymupdf/PyMuPDF/issues/3848>_: Piximap program crash
    • Fixed 3950 <https://github.com/pymupdf/PyMuPDF/issues/3950>_: Unable to consistently extract field labels from PDFs
    • Fixed 3981 <https://github.com/pymupdf/PyMuPDF/issues/3981>_: PyMuPDF 1.24.12 with pyinstaller throws error.
    • Fixed 3994 <https://github.com/pymupdf/PyMuPDF/issues/3994>_: pix.color_topusage raise Segmentation fault (core dumped)

Changes in version 1.24.12 (2024-10-21)

  • Fixed issues:

    • Fixed 3914 <https://github.com/pymupdf/PyMuPDF/issues/3914>_: Ability to print MuPDF errors to logging instead of stdout

... (truncated)

Commits
  • ebabd6f setup.py: incremented default mupdf version to 1.24.11.
  • a746d2c setup.py: use {version_b} to calculate mupdf download URL instead of hard-cod...
  • b918500 Updated version numbers etc for release.
  • a569a3f tests/: disable two long-running tests if running under valgrind.
  • 0e86f0b scripts/test.py: minor improvements to docs.
  • fa13f22 scripts/: default to not installing system packages such as valgrind by default.
  • 6d780c4 changes.txt: updated with all fixes when built with MuPDF-1.24.11.
  • 961552c tests/test_embeddedfiles.py: added test_4050().
  • 78bf986 src/init.py tests/test_font.py: address #3933 with mupdf-1.24.11.
  • 1667ec0 tests/: update two tests to expect fixed behaviour with mupdf-1.24.11.
  • Additional commits viewable in compare view

Updates google-cloud-translate from 3.16.0 to 3.18.0

Release notes

Sourced from google-cloud-translate's releases.

google-cloud-translate: v3.18.0

3.18.0 (2024-11-11)

Features

  • Adds Contextual Glossary support for Translation and AdaptiveMt (ae4acf3)

Bug Fixes

Commits
  • 5a281be chore: release main (#13261)
  • e03cab6 docs: update PyPI package link in CHANGELOG.md (#13262)
  • 3e438ff chore: update changelog (#13263)
  • ae4acf3 chore: update changelog (#13264)
  • 97b9b6b chore: update changelog (#13265)
  • 634f3e7 fix: disable universe-domain validation (#13248)
  • 68a04ad fix!: [google-cloud-alloydb] deprecated various PSC instance configuration fi...
  • 826abc1 feat: [google-cloud-network-management] add DNS endpoint of Google Kubernetes...
  • 450fa0b feat: [google-maps-places] update attributes in Places API (#13259)
  • 4fdf249 feat: [google-cloud-container] add LocalSsdEncryptionMode in NodeConfig (#13260)
  • Additional commits viewable in compare view

Updates psutil from 6.0.0 to 6.1.0

Changelog

Sourced from psutil's changelog.

6.1.0

2024-10-17

Enhancements

  • 2366_, [Windows]: drastically speedup process_iter(). We now determine process unique identity by using process "fast" create time method. This will considerably speedup those apps which use process_iter() only once, e.g. to look for a process with a certain name.
  • 2446_: use pytest instead of unittest.
  • 2448_: add make install-sysdeps target to install the necessary system dependencies (python-dev, gcc, etc.) on all supported UNIX flavors.
  • 2449_: add make install-pydeps-test and make install-pydeps-dev targets. They can be used to install dependencies meant for running tests and for local development. They can also be installed via pip install .[test] and pip install .[dev].
  • 2456_: allow to run tests via python3 -m psutil.tests even if pytest module is not installed. This is useful for production environments that don't have pytest installed, but still want to be able to test psutil installation.

Bug fixes

  • 2427_: psutil (segfault) on import in the free-threaded (no GIL) version of Python 3.13. (patch by Sam Gross)
  • 2455_, [Linux]: IndexError may occur when reading /proc/pid/stat and field 40 (blkio_ticks) is missing.
  • 2457_, [AIX]: significantly improve the speed of Process.open_files()_ for some edge cases.
  • 2460_, [OpenBSD]: Process.num_fds()_ and Process.open_files()_ may fail with NoSuchProcess_ for PID 0. Instead, we now return "null" values (0 and [] respectively).
Commits
  • fb68f9f pre release
  • 567438c [Windows] speed up process_iter() (#2444)
  • b1a7593 Use pytest.skip instead of unittest.SkipTest (#2461)
  • b19d5bd AIX: improve open_files() regexp speed (#2457)
  • 223938f Use @pytest.mark.skipif decorator instead of @unittest.skipIf (#2459)
  • f65fe44 [OpenBSD] Process num_fds() and open_files() may raise NSP for PID 0 (#2460)
  • 0a71d0e enable ruff cache (faster)
  • 4649a88 Run tests without pytests (#2456)
  • 80af879 revert change which broke python 2 tests
  • 4e85bee change call_until() signature so that it can be used with lambda
  • Additional commits viewable in compare view

Updates pillow from 10.4.0 to 11.0.0

Release notes

Sourced from pillow's releases.

11.0.0

https://pillow.readthedocs.io/en/stable/releasenotes/11.0.0.html

Removals

Deprecations

Changes

... (truncated)

Changelog

Sourced from pillow's changelog.

11.0.0 (2024-10-15)

  • Update licence to MIT-CMU #8460 [hugovk]

  • Conditionally define ImageCms type hint to avoid requiring core #8197 [radarhere]

  • Support writing LONG8 offsets in AppendingTiffWriter #8417 [radarhere]

  • Use ImageFile.MAXBLOCK when saving TIFF images #8461 [radarhere]

  • Do not close provided file handles with libtiff when saving #8458 [radarhere]

  • Support ImageFilter.BuiltinFilter for I;16* images #8438 [radarhere]

  • Use ImagingCore.ptr instead of ImagingCore.id #8341 [homm, radarhere, hugovk]

  • Updated EPS mode when opening images without transparency #8281 [Yay295, radarhere]

  • Use transparency when combining P frames from APNGs #8443 [radarhere]

  • Support all resampling filters when resizing I;16* images #8422 [radarhere]

  • Free memory on early return #8413 [radarhere]

  • Cast int before potentially exceeding INT_MAX #8402 [radarhere]

  • Check image value before use #8400 [radarhere]

  • Improved copying imagequant libraries #8420 [radarhere]

  • Use Capsule for WebP saving #8386 [homm, radarhere]

  • Fixed writing multiple StripOffsets to TIFF #8317 [Yay295, radarhere]

... (truncated)

Commits

Bumps the all group with 13 updates in the / directory:

| Package | From | To |
| --- | --- | --- |
| [awscli](https://github.com/aws/aws-cli) | `1.34.30` | `1.36.12` |
| [tqdm](https://github.com/tqdm/tqdm) | `4.66.5` | `4.67.1` |
| [pydantic](https://github.com/pydantic/pydantic) | `2.9.2` | `2.10.2` |
| [playwright](https://github.com/microsoft/playwright-python) | `1.47.0` | `1.49.0` |
| [bleach](https://github.com/mozilla/bleach) | `6.1.0` | `6.2.0` |
| [cloudpathlib](https://github.com/drivendataorg/cloudpathlib) | `0.19.0` | `0.20.0` |
| [pymupdf](https://github.com/pymupdf/pymupdf) | `1.24.10` | `1.24.14` |
| [google-cloud-translate](https://github.com/googleapis/google-cloud-python) | `3.16.0` | `3.18.0` |
| [psutil](https://github.com/giampaolo/psutil) | `6.0.0` | `6.1.0` |
| [pillow](https://github.com/python-pillow/Pillow) | `10.4.0` | `11.0.0` |
| [pre-commit](https://github.com/pre-commit/pre-commit) | `3.8.0` | `4.0.1` |
| [pyright](https://github.com/RobertCraigie/pyright-python) | `1.1.382.post1` | `1.1.389` |
| [black](https://github.com/psf/black) | `24.8.0` | `24.10.0` |



Updates `awscli` from 1.34.30 to 1.36.12
- [Release notes](https://github.com/aws/aws-cli/releases)
- [Commits](aws/aws-cli@1.34.30...1.36.12)

Updates `tqdm` from 4.66.5 to 4.67.1
- [Release notes](https://github.com/tqdm/tqdm/releases)
- [Commits](tqdm/tqdm@v4.66.5...v4.67.1)

Updates `pydantic` from 2.9.2 to 2.10.2
- [Release notes](https://github.com/pydantic/pydantic/releases)
- [Changelog](https://github.com/pydantic/pydantic/blob/main/HISTORY.md)
- [Commits](pydantic/pydantic@v2.9.2...v2.10.2)

Updates `playwright` from 1.47.0 to 1.49.0
- [Release notes](https://github.com/microsoft/playwright-python/releases)
- [Commits](microsoft/playwright-python@v1.47.0...v1.49.0)

Updates `bleach` from 6.1.0 to 6.2.0
- [Changelog](https://github.com/mozilla/bleach/blob/main/CHANGES)
- [Commits](mozilla/bleach@v6.1.0...v6.2.0)

Updates `cloudpathlib` from 0.19.0 to 0.20.0
- [Release notes](https://github.com/drivendataorg/cloudpathlib/releases)
- [Changelog](https://github.com/drivendataorg/cloudpathlib/blob/master/HISTORY.md)
- [Commits](drivendataorg/cloudpathlib@v0.19.0...v0.20.0)

Updates `pymupdf` from 1.24.10 to 1.24.14
- [Release notes](https://github.com/pymupdf/pymupdf/releases)
- [Changelog](https://github.com/pymupdf/PyMuPDF/blob/main/changes.txt)
- [Commits](pymupdf/PyMuPDF@1.24.10...1.24.14)

Updates `google-cloud-translate` from 3.16.0 to 3.18.0
- [Release notes](https://github.com/googleapis/google-cloud-python/releases)
- [Changelog](https://github.com/googleapis/google-cloud-python/blob/main/packages/google-cloud-documentai/CHANGELOG.md)
- [Commits](googleapis/google-cloud-python@google-cloud-translate-v3.16.0...google-cloud-translate-v3.18.0)

Updates `psutil` from 6.0.0 to 6.1.0
- [Changelog](https://github.com/giampaolo/psutil/blob/master/HISTORY.rst)
- [Commits](giampaolo/psutil@release-6.0.0...release-6.1.0)

Updates `pillow` from 10.4.0 to 11.0.0
- [Release notes](https://github.com/python-pillow/Pillow/releases)
- [Changelog](https://github.com/python-pillow/Pillow/blob/main/CHANGES.rst)
- [Commits](python-pillow/Pillow@10.4.0...11.0.0)

Updates `pre-commit` from 3.8.0 to 4.0.1
- [Release notes](https://github.com/pre-commit/pre-commit/releases)
- [Changelog](https://github.com/pre-commit/pre-commit/blob/main/CHANGELOG.md)
- [Commits](pre-commit/pre-commit@v3.8.0...v4.0.1)

Updates `pyright` from 1.1.382.post1 to 1.1.389
- [Release notes](https://github.com/RobertCraigie/pyright-python/releases)
- [Commits](RobertCraigie/pyright-python@v1.1.382.post1...v1.1.389)

Updates `black` from 24.8.0 to 24.10.0
- [Release notes](https://github.com/psf/black/releases)
- [Changelog](https://github.com/psf/black/blob/main/CHANGES.md)
- [Commits](psf/black@24.8.0...24.10.0)

---
updated-dependencies:
- dependency-name: awscli
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: all
- dependency-name: tqdm
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: all
- dependency-name: pydantic
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: all
- dependency-name: playwright
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: all
- dependency-name: bleach
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: all
- dependency-name: cloudpathlib
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: all
- dependency-name: pymupdf
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: all
- dependency-name: google-cloud-translate
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: all
- dependency-name: psutil
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: all
- dependency-name: pillow
  dependency-type: direct:production
  update-type: version-update:semver-major
  dependency-group: all
- dependency-name: pre-commit
  dependency-type: direct:development
  update-type: version-update:semver-major
  dependency-group: all
- dependency-name: pyright
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: all
- dependency-name: black
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: all
...

Signed-off-by: dependabot[bot] <[email protected]>
@dependabot dependabot bot added dependencies Pull requests that update a dependency file python Pull requests that update Python code labels Dec 1, 2024
@dependabot dependabot bot requested a review from a team December 1, 2024 05:19
Copy link
Collaborator

@THOR300 THOR300 left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

LGTM

@THOR300 THOR300 merged commit 6f40d43 into main Dec 30, 2024
1 check passed
@THOR300 THOR300 deleted the dependabot/pip/all-a8104bf8c7 branch December 30, 2024 11:11
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.

1 participant