Skip to content

Conversation

@dependabot
Copy link
Contributor

@dependabot dependabot bot commented on behalf of github Nov 1, 2025

Bumps the python-dependencies group with 3 updates: botocore, ruff and memray.

Updates botocore from 1.40.42 to 1.40.64

Commits
  • 11d0051 Merge branch 'release-1.40.64'
  • 0c92337 Bumping version to 1.40.64
  • aa692dd Update endpoints model
  • e6c0125 Update to latest models
  • cf26740 Merge branch 'release-1.40.63'
  • 0f7bff1 Merge branch 'release-1.40.63' into develop
  • 906cbfb Bumping version to 1.40.63
  • ac114bc Update endpoints model
  • bd3c3ef Update to latest models
  • 68e4960 Merge branch 'release-1.40.62'
  • Additional commits viewable in compare view

Updates ruff from 0.13.2 to 0.14.3

Release notes

Sourced from ruff's releases.

0.14.3

Release Notes

Released on 2025-10-30.

Preview features

  • Respect --output-format with --watch (#21097)
  • [pydoclint] Fix false positive on explicit exception re-raising (DOC501, DOC502) (#21011)
  • [pyflakes] Revert to stable behavior if imports for module lie in alternate branches for F401 (#20878)
  • [pylint] Implement stop-iteration-return (PLR1708) (#20733)
  • [ruff] Add support for additional eager conversion patterns (RUF065) (#20657)

Bug fixes

  • Fix finding keyword range for clause header after statement ending with semicolon (#21067)
  • Fix syntax error false positive on nested alternative patterns (#21104)
  • [ISC001] Fix panic when string literals are unclosed (#21034)
  • [flake8-django] Apply DJ001 to annotated fields (#20907)
  • [flake8-pyi] Fix PYI034 to not trigger on metaclasses (PYI034) (#20881)
  • [flake8-type-checking] Fix TC003 false positive with future-annotations (#21125)
  • [pyflakes] Fix false positive for __class__ in lambda expressions within class definitions (F821) (#20564)
  • [pyupgrade] Fix false positive for TypeVar with default on Python <3.13 (UP046,UP047) (#21045)

Rule changes

  • Add missing docstring sections to the numpy list (#20931)
  • [airflow] Extend airflow.models..Param check (AIR311) (#21043)
  • [airflow] Warn that airflow....DAG.create_dagrun has been removed (AIR301) (#21093)
  • [refurb] Preserve digit separators in Decimal constructor (FURB157) (#20588)

Server

  • Avoid sending an unnecessary "clear diagnostics" message for clients supporting pull diagnostics (#21105)

Documentation

  • [flake8-bandit] Fix correct example for S308 (#21128)

Other changes

  • Clearer error message when line-length goes beyond threshold (#21072)

Contributors

... (truncated)

Changelog

Sourced from ruff's changelog.

0.14.3

Released on 2025-10-30.

Preview features

  • Respect --output-format with --watch (#21097)
  • [pydoclint] Fix false positive on explicit exception re-raising (DOC501, DOC502) (#21011)
  • [pyflakes] Revert to stable behavior if imports for module lie in alternate branches for F401 (#20878)
  • [pylint] Implement stop-iteration-return (PLR1708) (#20733)
  • [ruff] Add support for additional eager conversion patterns (RUF065) (#20657)

Bug fixes

  • Fix finding keyword range for clause header after statement ending with semicolon (#21067)
  • Fix syntax error false positive on nested alternative patterns (#21104)
  • [ISC001] Fix panic when string literals are unclosed (#21034)
  • [flake8-django] Apply DJ001 to annotated fields (#20907)
  • [flake8-pyi] Fix PYI034 to not trigger on metaclasses (PYI034) (#20881)
  • [flake8-type-checking] Fix TC003 false positive with future-annotations (#21125)
  • [pyflakes] Fix false positive for __class__ in lambda expressions within class definitions (F821) (#20564)
  • [pyupgrade] Fix false positive for TypeVar with default on Python <3.13 (UP046,UP047) (#21045)

Rule changes

  • Add missing docstring sections to the numpy list (#20931)
  • [airflow] Extend airflow.models..Param check (AIR311) (#21043)
  • [airflow] Warn that airflow....DAG.create_dagrun has been removed (AIR301) (#21093)
  • [refurb] Preserve digit separators in Decimal constructor (FURB157) (#20588)

Server

  • Avoid sending an unnecessary "clear diagnostics" message for clients supporting pull diagnostics (#21105)

Documentation

  • [flake8-bandit] Fix correct example for S308 (#21128)

Other changes

  • Clearer error message when line-length goes beyond threshold (#21072)

Contributors

... (truncated)

Commits
  • 8737a2d Bump v0.14.3 (#21152)
  • 3be3a10 [ty] Don't provide completions when in class or function definition (#21146)
  • 13375d0 [ty] Use the top materialization of classes for narrowing in class-patterns f...
  • c0b04d4 [ty] Update "constraint implication" relation to work on constraints between ...
  • 1c7ea69 [flake8-type-checking] Fix TC003 false positive with future-annotations...
  • 9bacd19 [ty] Fix lookup of __new__ on instances (#21147)
  • f0fe6d6 Fix syntax error false positive on nested alternative patterns (#21104)
  • 10bda3d [pyupgrade] Fix false positive for TypeVar with default on Python <3.13 (...
  • e55bc94 [ty] Reachability and narrowing for enum methods (#21130)
  • 1b0ee46 [ty] Use range instead of custom IntIterable (#21138)
  • Additional commits viewable in compare view

Updates memray from 1.18.0 to 1.19.1

Release notes

Sourced from memray's releases.

v1.19.1

What's Changed

Full Changelog: bloomberg/memray@v1.19.0...v1.19.1

v1.19.0

What's Changed

Full Changelog: bloomberg/memray@v1.18.0...v1.19.0

Changelog

Sourced from memray's changelog.

memray 1.19.1 (2025-09-29)

  • Fix a bug that caused Memray to refuse to produce stack traces for pymalloc allocations when --trace-python-allocators was used. (#832)

memray 1.19.0 (2025-09-26)

Features


- Add a mode that can be used in Python 3.13.3 and newer where Memray will track Python object creation and destruction events, which can be used to find leaked objects (ones that were created during a tracking session and not destroyed before the end of that tracking session). ([#752](https://github.com/bloomberg/memray/issues/752))
- Added ``--no-web`` flag to ``flamegraph`` and ``table`` commands for offline HTML report generation. When this flag is specified, memray bundles all external dependencies (Bootstrap, jQuery, D3, DataTables, Plotly.js) directly into the generated HTML files instead of loading them from CDNs. This enables memray to generate fully functional HTML reports on airgapped systems without internet connectivity. ([#790](https://github.com/bloomberg/memray/issues/790))
- Reduced memory profiling overhead and capture file size by changing how
  Python code locations are recorded. This makes allocation tracking
  faster, produces smaller capture files, and improves the accuracy of
  reports that group allocations by source location. ([#801](https://github.com/bloomberg/memray/issues/801))

Bug Fixes

  • Fix a crash that could occur if tracking was started in one thread while another thread was inside of a trace function installed with sys.settrace. This crash wasn't possible to hit with memray run, but could happen when using pytest-memray and pytest-cov together. (#823)
  • Fix timestamps on the heap usage line chart when Memray is run on a 32-bit platform. (#826)
Commits
  • 5756b60 Update textual snapshot tests
  • 28ca0c5 Prepare for 1.19.1 release
  • e80381e Fix enum value collision between AllocatorType and ObjectTrackingEvent
  • 6cfb8a4 Remove unneded 'type: ignore' comments
  • 431aa41 Prepare for 1.19.0 release
  • d8b6d00 ci: Remove duplicated Coverage job
  • 3452630 ci: Run coverage analysis with Python 3.13
  • 370a0bd tests: Add a longer pause in TUI snapshot tests
  • e567c3c Add Python object reference tracking
  • 87ff508 Avoid holding frames captured by another thread
  • Additional commits viewable 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 3 updates: [botocore](https://github.com/boto/botocore), [ruff](https://github.com/astral-sh/ruff) and [memray](https://github.com/bloomberg/memray).


Updates `botocore` from 1.40.42 to 1.40.64
- [Commits](boto/botocore@1.40.42...1.40.64)

Updates `ruff` from 0.13.2 to 0.14.3
- [Release notes](https://github.com/astral-sh/ruff/releases)
- [Changelog](https://github.com/astral-sh/ruff/blob/main/CHANGELOG.md)
- [Commits](astral-sh/ruff@0.13.2...0.14.3)

Updates `memray` from 1.18.0 to 1.19.1
- [Release notes](https://github.com/bloomberg/memray/releases)
- [Changelog](https://github.com/bloomberg/memray/blob/main/NEWS.rst)
- [Commits](bloomberg/memray@v1.18.0...v1.19.1)

---
updated-dependencies:
- dependency-name: botocore
  dependency-version: 1.40.64
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: python-dependencies
- dependency-name: ruff
  dependency-version: 0.14.3
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: python-dependencies
- dependency-name: memray
  dependency-version: 1.19.1
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: python-dependencies
...

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 Nov 1, 2025
@mindw mindw merged commit 2686ee2 into main Nov 2, 2025
2 checks passed
@mindw mindw deleted the dependabot/pip/python-dependencies-5f7d6120b4 branch November 2, 2025 04:46
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.

2 participants