Skip to content

Update Python Dependencies (major)#265

Open
renovate[bot] wants to merge 1 commit intomainfrom
renovate/major-python-dependencies
Open

Update Python Dependencies (major)#265
renovate[bot] wants to merge 1 commit intomainfrom
renovate/major-python-dependencies

Conversation

@renovate
Copy link
Copy Markdown
Contributor

@renovate renovate bot commented Feb 4, 2026

ℹ️ Note

This PR body was truncated due to platform limits.

This PR contains the following updates:

Package Change Age Adoption Passing Confidence Type Update
Django (changelog) >=4.2,<5.2>=6,<7 age adoption passing confidence major
astral-sh/setup-uv v7.1.6v8.1.0 age adoption passing confidence action major
django (changelog) >=4.2,<5.2>=6,<7 age adoption passing confidence packages major
elasticsearch >=2.0.0,<=8.3.3>=9.3.0,<=9.3.0 age adoption passing confidence dev-packages major
elasticsearch >=2.0.0,<=8.3.3>=9.3.0,<=9.3.0 age adoption passing confidence major

Release Notes

django/django (Django)

v6.0.4

Compare Source

v6.0.3

Compare Source

v6.0.2

Compare Source

v6.0.1

Compare Source

v6.0

Compare Source

v5.2.13

Compare Source

v5.2.12

Compare Source

v5.2.11

Compare Source

v5.2.10

Compare Source

v5.2.9

Compare Source

v5.2.8

Compare Source

v5.2.7

Compare Source

v5.2.6

Compare Source

v5.2.5

Compare Source

v5.2.4

Compare Source

v5.2.3

Compare Source

v5.2.2

Compare Source

v5.2.1

Compare Source

v5.2

Compare Source

astral-sh/setup-uv (astral-sh/setup-uv)

v8.1.0: 🌈 New input no-project

Compare Source

Changes

This add the a new boolean input no-project.
It only makes sense to use in combination with activate-environment: true and will append --no project to the uv venv call. This is for example useful if you have a pyproject.toml file with parts unparseable by uv

🚀 Enhancements
🧰 Maintenance
📚 Documentation
⬆️ Dependency updates

v8.0.0: 🌈 Immutable releases and secure tags

Compare Source

This is the first immutable release of setup-uv 🥳

All future releases are also immutable, if you want to know more about what this means checkout the docs.

This release also has two breaking changes

New format for manifest-file

The previously deprecated way of defining a custom version manifest to control which uv versions are available and where to download them from got removed. The functionality is still there but you have to use the new format.

No more major and minor tags

To increase security even more we will stop publishing minor tags. You won't be able to use @v8 or @v8.0 any longer. We do this because pinning to major releases opens up users to supply chain attacks like what happened to tj-actions.

[!TIP]
Use the immutable tag as a version astral-sh/setup-uv@v8.0.0
Or even better the githash astral-sh/setup-uv@cec208311dfd045dd5311c1add060b2062131d57

🚨 Breaking changes
🧰 Maintenance

v7.6.0: 🌈 Fetch uv from Astral's mirror by default

Compare Source

Changes

We now default to download uv from releases.astral.sh.
This means by default we don't hit the GitHub API at all and shouldn't see any rate limits and timeouts any more.

🚀 Enhancements
🧰 Maintenance
⬆️ Dependency updates

v7.5.0: 🌈 Use astral-sh/versions as version provider

Compare Source

No more rate-limits

This release addresses a long-standing source of timeouts and rate-limit failures in setup-uv.

Previously, the action resolved version identifiers like 0.5.x by iterating over available uv releases via the GitHub API to find the best match. In contrast, latest and exact versions such as 0.5.0 skipped version resolution entirely and downloaded uv directly.

The manifest-file input was an earlier attempt to improve this. It allows providing an url to a file that lists available versions, checksums, and even custom download URLs. The action also shipped with such a manifest.
However, because that bundled file could become outdated whenever new uv releases were published, the action still had to fall back to the GitHub API in many cases.

This release solves the problem by sourcing version data from Astral’s versions repository via the raw content endpoint:

https://raw.githubusercontent.com/astral-sh/versions/refs/heads/main/v1/uv.ndjson

By using the raw endpoint instead of the GitHub API, version resolution no longer depends on API authentication and is much less likely to run into rate limits or timeouts.


[!TIP]
The next section is only interesting for users of the manifest-file input

The manifest-file input lets you override that source with your own URL, for example to test custom uv builds or alternate download locations.

The manifest file must be in NDJSON format, where each line is a JSON object representing a version and its artifacts. For example:

{"version":"0.10.7","artifacts":[{"platform":"x86_64-unknown-linux-gnu","variant":"default","url":"https://example.com/uv-x86_64-unknown-linux-gnu.tar.gz","archive_format":"tar.gz","sha256":"..."}]}
{"version":"0.10.6","artifacts":[{"platform":"x86_64-unknown-linux-gnu","variant":"default","url":"https://example.com/uv-x86_64-unknown-linux-gnu.tar.gz","archive_format":"tar.gz","sha256":"..."}]}

[!WARNING]
The old format still works but is deprecated. A warning will be logged when you use it.

Changes
🚀 Enhancements
📚 Documentation

v7.4.0: 🌈 Add riscv64 architecture support to platform detection

Compare Source

Changes

Thank you @​luhenry for adding support for riscv64 arch

🚀 Enhancements
🧰 Maintenance
⬆️ Dependency updates

v7.3.1: 🌈 fall back to VERSION_CODENAME when VERSION_ID is not available

Compare Source

Changes

This release adds support for running in containers like debian:testing or debian:unstable

🐛 Bug fixes
🧰 Maintenance
⬆️ Dependency updates

v7.3.0: 🌈 New features and bug fixes for activate-environment

Compare Source

Changes

This release contains a few bug fixes and a new feature for the activate-environment functionality.

🐛 Bug fixes

🚀 Enhancements

🧰 Maintenance

📚 Documentation

⬆️ Dependency updates

v7.2.1: 🌈 update known checksums up to 0.9.28

Compare Source

Changes
🧰 Maintenance
📚 Documentation
⬆️ Dependency updates

v7.2.0: 🌈 add outputs python-version and python-cache-hit

Compare Source

Changes

Among some minor typo fixes and quality of life features for developers of actions the main feature of this release are new outputs:

  • python-version: The Python version that was set (same content as existing UV_PYTHON)
  • python-cache-hit: A boolean value to indicate the Python cache entry was found

While implementing this it became clear, that it is easier to handle the Python binaries in a separate cache entry. The added benefit for users is that the "normal" cache containing the dependencies can be used in all runs no matter if these cache the Python binaries or not.

[!NOTE]
This release will invalidate caches that contain the Python binaries. This happens a single time.

🐛 Bug fixes
  • chore: remove stray space from UV_PYTHON_INSTALL_DIR message @​akx (#​720)
🚀 Enhancements
🧰 Maintenance
⬆️ Dependency updates
elastic/elasticsearch-py (elasticsearch)

v9.3.0: 9.3.0

Compare Source

Enhancements
  • Add pack_dense_vector helper function to pack dense vectors for efficient uploading (#​3219)
  • New and updated ES|QL functions in the ES|QL query builder for 9.3 and Serverless (#​3266)
API
  • Added cat.circuit_breaker API
  • Added experimental esql.get_view, esql.put_view and esql.delete_view APIs
  • Added experimental indices.get_sample_configuration, indices.put_sample_configuration, indices.delete_sample_configuration, indices.get_all_sample_configuration, indices.get_sample, indices.get_sample_stats APIs
  • Added inference.put_groq, inference.put_openshift_ai, inference.put_nvidia APIs
  • Added downsampling_method argument to indices.put_data_lifecycle API
  • Added return_documents and top_n arguments to inference.rerank API
  • Added close_job argument to ml.stop_datafeed API
  • Added certificate_identity to security.create_cross_cluster_api_key and security.update_cross_cluster_api_key APIs
Serverless-specific
  • Added project_routing argument to project.tags API
DSL
  • Added NumpyDenseVector field, with support for dense vectors based on numpy arrays (#​3218)
  • Added ExponentialHistogram field
  • Added time_series_metric argument to Histogram field
  • Added on_disk_rescore argument from DenseVectorIndexOptions type
  • Added slices argument to UpdateByQueryResponse type

v9.2.1: 9.2.1

Compare Source

Enhancements

  • Instrument ping with OTel (#​3160)
  • Make positional arguments in DSL generated classes explicit (#​3233)
  • Add warnings for private APIs (#​3212)

Bug fixes

  • ES|QL query builder: fix missing assignment (#​3151)
  • Use relative imports to fix elasticsearch9 package imports (#​3232)

API

  • Added transform.get_node_stats API
  • Added requests_per_second argument to delete_by_query_rethrottle, reindex_rethrottle and update_by_query_rethrottle APIs
  • Added allow_closed, allow_no_indices, expand_wildcards, ignore_throttled and ignore_available arguments to cat.segments API
  • Added chunking_settings argument to inference.put_watsonxai API
  • Added id argument to ml.stop_trained_model_deployment API
  • Removed chunking_settings argument from inference.put_anthropic, inference.put_contextualai, inference.put_deepseek APIs

DSL

  • Removed on_disk_score argument from DenseVectorIndexOptions type

v9.2.0: 9.2.0

Compare Source

Enhancements
  • Support Trio when using the HTTPX async client (#​3089)
  • Pydantic integration for the DSL module (#​3086)
  • Add flush_after_seconds option to streaming_bulk() (#​3064)
  • Add TS, FUSE and INLINE STATS commands to the ES|QL query builder (#​3096)
Bug Fixes
  • DSL: support passing inner documents as AttrDict instances (#​3080)
  • DSL: add some recently added field classes as top-level exports for the package (#​3078)
API
  • Add streams namespace with streams.logs_disable, streams.logs_enable, streams.status APIs
  • Add inference.contextualai API
  • Add security.get_stats API
  • Add bytes and time parameters to various APIs in the cat namespace.
  • Add include_execution_metadata parameter to esql.async_query and esql.query APIs
  • Add index_template parameter to indices.simulate_index_template API
  • Add input_type parameter to inference.text_embedding API
  • Add field_access_pattern parameter to ingest.put_pipeline API
  • Removed unsupported size parameter from reindex API
Serverless-specific
  • Add project namespace with project.tags API
  • Add project_routing parameter to count, field_caps, msearch, msearch_template, open_point_in_time, search, search_mvt, search_template, async_search.submit, cat.count, eql.search, indices.resolve_index, sql.query APIs
DSL
  • New CartesianBounds, CartesianCentroid, ChangePoint aggregations
  • Add p_value parameter to SignificantTerms aggregation
  • Add fields parameter to SemanticText field
  • Add visit_percentage parameter to Knn query
  • Add on_disk_rescore field to DenseVectorIndexOptions type
  • Add sparse_vector field to SemanticTextIndexOptions type
Other

v9.1.3: 9.1.3

Compare Source

Enhancements

  • Instrument ping with OTel (#​3160)
  • Make positional arguments in DSL generated classes explicit (#​3233)
  • Add warnings for private APIs (#​3212)

Bug fixes

  • ES|QL query builder: fix missing assignment (#​3151)
  • Use relative imports to fix elasticsearch9 package imports (#​3232)

API

  • Added transform.get_node_stats API
  • Added requests_per_second argument to delete_by_query_rethrottle, reindex_rethrottle and update_by_query_rethrottle APIs
  • Added allow_closed, allow_no_indices, expand_wildcards, ignore_throttled and ignore_available arguments to cat.segments API

DSL

  • Removed index_options argument from SemanticText field class
  • Removed visit_percentage argument from Knn query class
  • Removed on_disk_score argument from DenseVectorIndexOptions type

v9.1.2: 9.1.2

Compare Source

Enhancements
  • Add flush_after_seconds option to streaming_bulk() (#​3064)
Bug Fixes
  • DSL: support passing inner documents as AttrDict instances (#​3080)
  • DSL: add some recently added field classes as top-level exports for the package (#​3078)
API
  • Add streams namespace with streams.logs_disable, streams.logs_enable, streams.status APIs
  • Add bytes and time parameters to various APIs in the cat namespace.
  • Add index_template parameter to indices.simulate_index_template API
  • Add input_type parameter to inference.text_embedding API
DSL
  • New CartesianBounds, CartesianCentroid, ChangePoint aggregations
  • Add p_value parameter to SignificantTerms aggregation
  • Add index_options and fields parameters to SemanticText field
  • Add visit_percentage parameter to Knn query
  • Add on_disk_rescore field to DenseVectorIndexOptions type
Other

v9.1.1: 9.1.1

Compare Source

Enhancements and Fixes

  • ES|QL query builder integration with the DSL module (#​3058)
  • ES|QL query builder robustness fixes (#​3017)
  • Fix ES|QL multi_match() signature (#​3052)

API

  • Add support for ES|QL query builder objects to ES|QL Query and Async Query APIs
  • Add Transform Set Upgrade Mode API
  • Fix type of fields parameter of Term Vectors API to array of strings
  • Fix type of params parameter of SQL Query API to array

DSL

  • Preserve the skip_empty setting in to_dict() recursive serializations (#​3041)
  • Add separator_group and separators attributes to ChunkingSettings type
  • Add primary attribute to ShardFailure type
  • Fix type of key attribute of ArrayPercentilesItem to float

v9.1.0: 9.1.0

Compare Source

Enhancements

  • ES|QL query builder (technical preview) (#​2997)
  • Update OpenTelemetry conventions (#​2999)
  • Add option to disable accurate reporting of file and line location in warnings (Fixes #​3003) (#​3006)

APIs

  • Remove if_primary_term, if_seq_no and op_type from Create API
  • Remove master_timeout from Ingest Get Ip Location Database API
  • Remove application, priviledge and username from the Security Get User API
  • Rename type_query_string to type in License Post Start Trial API
  • Add require_data_stream to Index API
  • Add settings_filter to Cluster Get Component Template API
  • Add cause to Cluster Put Component Template API
  • Add master_timeout to Cluster State API
  • Add ccs_minimize_roundtrips to EQL Search API
  • Add keep_alive and keep_on_completion to ES|QL Async Query API
  • Add format to ES|QL Async Query Get API
  • Add ES|QL Get Query and List Queries APIs
  • Add Indices Delete Data Stream Options API
  • Add Indices Get Data Stream Options and Put Data Stream Options APIS
  • Add Indices Get Data Stream Settings and Put Data Stream Settings APIs
  • Add allow_no_indices, expand_wildcards and ignore_available to Indices Recovery API
  • Add Indices Remove Block API
  • Add Amazon Sagemaker to Inference API
  • Add input_type to Inference API
  • Add timeout to all Inference Put APIs
  • Add Inference Put Custom API
  • Add Inference Put DeepSeek API
  • Add task_settings to Put HuggingFace API
  • Add refresh to Security Grant API Key API
  • Add wait_for_completion to the Snapshot Delete API
  • Add state to Snapshot Get API
  • Add refresh to Synonyms Put Synonym, Put Synonym Rule and Delete Synonym Rule APIs

DSL

  • Handle lists in copy_to option in DSL field declarations correctly (Fixes #​2992) (#​2993)
  • Add index_options to SparseVector type
  • Add SparseVectorIndexOptions type
  • Add key to FiltersBucket type

Other changes

  • Drop support for Python 3.8 (#​3001)

v9.0.5: 9.0.5

Compare Source

  • ES|QL query builder: fix missing assignment (#​3151)

v9.0.4: 9.0.4

Compare Source

Enhancements and Fixes

  • ES|QL query builder integration with the DSL module (#​3058)
  • ES|QL query builder robustness fixes (#​3017)
  • Fix ES|QL multi_match() signature (#​3052)

API

  • Add support for ES|QL query builder objects to ES|QL Query and Async Query APIs
  • Add Transform Set Upgrade Mode API
  • Fix type of fields parameter of Term Vectors API to array of strings
  • Fix type of params parameter of SQL Query API to array

DSL

  • Preserve the skip_empty setting in to_dict() recursive serializations (#​3041)
  • Add primary attribute to ShardFailure type
  • Fix type of key attribute of ArrayPercentilesItem to float

v9.0.3: 9.0.3

Compare Source

Enhancements

  • ES|QL query builder (technical preview) (#​2997)
  • Add option to disable accurate reporting of file and line location in warnings (Fixes #​3003) (#​3006)

APIs

  • Remove if_primary_term, if_seq_no and op_type from Create API
  • Remove stored_fields from Get Source API
  • Remove master_timeout from Ingest Get Ip Location Database API
  • Remove application, priviledge and username from the Security Get User API
  • Rename type_query_string to type in License Post Start Trial API
  • Add require_data_stream to Index API
  • Add settings_filter to Cluster Get Component Template API
  • Add cause to Cluster Put Component Template API
  • Add ccs_minimize_roundtrips to EQL Search API
  • Add keep_alive and keep_on_completion to ES|QL Async Query API
  • Add format to ES|QL Async Query Get API
  • Add allow_no_indices, expand_wildcards and ignore_available to Indices Recovery API
  • Add timeout to all Inference Put APIs
  • Add refresh to Security Get User Profile API
  • Add wait_for_completion to the Snapshot Delete API

DSL

  • Handle lists in copy_to field option correctly (Fixes #​2992) (#​2993)
  • Add key to FiltersBucket type

v9.0.2: 9.0.2

Compare Source

DSL

  • Add rescore_vector to DenseVectorIndexOptions

v9.0.1: 9.0.1

Compare Source

  • Surface caused_by in ApiError (#​2932)
  • Clarify Elasticsearch 9.x compatibility (#​2928)
  • Reorganize Sphinx docs to only include reference pages (#​2776)

v9.0.0: 9.0.0

Compare Source

[!IMPORTANT]
Upgrade to Elasticsearch 9 before using elasticsearch-py 9.0.0 or later. Using elasticsearch-py 9.0.0 on an Elasticsearch 8 server will fail.
Since language clients are forward-compatible, you should first upgrade Elasticsearch, then the Elasticsearch client. See the compatibility documentation for more details.

  • Remove deprecated Elasticsearch() options (#​2840)
  • Remove deprecated url_prefix and use_ssl options (#​2797)
  • Merge Elasticsearch-DSL package (#​2736)
  • Add Python DSL documentation (#​2761)
  • Autogenerate DSL field classes from schema (#​2780)
  • Improve DSL documentation examples with class-based queries and type hints (#​2857)
  • Document the use of param() in Python DSL methods (#​2861)
  • Migrate documentation from AsciiDoc to Markdown format (#​2806)
  • Document use of sub-clients (#​2798)
  • Document how to making API calls (#​2843)
  • Fix simulate sub-client documentation (#​2749)
  • Update APIs
    • Remove Unfreeze an index API
    • Remove min_compatible_shard_node from Search and Async Search Submit APIs
    • Remove local parameter from cat alias, Alias exists, and Get alias APIs
    • Remove verbose from Index segments API
    • Remove include_model_definition from Get trained model configuration info API
    • Remove wait_for_active_shards from experimental Get field usage stats API
    • Support soft-deletes in connectors:
      • Add hard to Delete connector API
      • Add include_deleted to Get and List Connector APIs
    • Add master_timeout to Migrate to data tiers routing APIs
    • Add master_timeout to the Alias exists and Get alias APIs.
    • Add expand_wildcards to Create snapshot API
    • Rename incorrect access_token to token in Logout of OpenID Connect API
    • Add inference APIs: Alibaba Cloud AI Search, Amazon Bedrock, Anthropic, Azure AI Studio, Azure OpenAI, Cohere, Elasticsearch, ELSER, Google AI Studio, Google Vertex AI, Hugging Face, Jina AI, Mistral, OpenAI, and Voyage AI
    • Add Reindex legacy backing indices APIs
    • Add Create an index from a source index API
    • Add include_source_on_error to Create, Index, Update and Bulk APIs
    • Add Stop async ES|QL query API
    • Add timeout to Resolve Cluster API
    • Add adaptive_allocations body field to Start and Update a trained model deployment API
    • Rename index_template_subtitutions to index_template_substitutions in Simulate data ingestion API* Add if_primary_term, if_seq_no, op_type, require_alias and require_data_stream to Create API
    • Add max_concurrent_shard_requests to Open point in time API
    • Add local and flat_settings to Check index templates API
    • Add reopen to Update index settings API
    • Add resource to Reload search analyzer API
    • Add lazy to Roll over to a new index API
    • Add cause and create to Simulate index template APIs
    • Add Elastic Inference Service (EIS) chat completion
    • Add inference APIs: Alibaba Cloud AI Search, Amazon Bedrock, Anthropic, Azure AI Studio, Azure OpenAI, Cohere, Elastic Inference Service (EIS), Elasticsearch, ELSER, Google AI Studio, Google Vertex AI, Hugging Face, Jina AI, Mistral, OpenAI, and Voyage AI
  • Update DSL
    • Add ignore_malformed, script, on_script_error and time_series_dimension to Boolean field
    • Add index to GeoShape field
    • Add search_inference_id to SemanticText field

v8.19.3: 8.19.3

Compare Source

Enhancements

  • Instrument ping with OTel (#​3160)
  • Add warnings for private APIs (#​3212)
  • Make positional arguments in DSL generated classes explicit (#​3233)

Bug fixes

  • ES|QL query builder: fix missing assignment (#​3151)
  • Use relative imports to fix elasticsearch9 package imports (#​3232)

API

  • Added indices.delete_data_stream_options, indices.get_data_stream_options and indices.put_data_stream_options APIs
  • Added transform.get_node_stats API
  • Added requests_per_second argument to delete_by_query_rethrottle, reindex_rethrottle and update_by_query_rethrottle APIs
  • Added allow_closed, allow_no_indices, expand_wildcards, ignore_throttled and ignore_available arguments to cat.segments API
  • Added id argument to ml.stop_trained_model_deployment API

v8.19.2: 8.19.2

Compare Source

Enhancements
  • Add flush_after_seconds option to streaming_bulk() (#​3064)
Bug Fixes
  • DSL: support passing inner documents as AttrDict instances (#​3080)
  • DSL: add some recently added field classes as top-level exports for the package (#​3078)
API
  • Add streams namespace with streams.logs_disable, streams.logs_enable, streams.status APIs
  • Add indices.get_data_stream_settings API
  • Add indices.put_data_stream_settings API
  • Add bytes and time parameters to various APIs in the cat namespace.
  • Add index_template parameter to indices.simulate_index_template API
  • Add input_type parameter to inference.text_embedding API
  • Removed unsupported size parameter from reindex API
DSL
  • New CartesianBounds, CartesianCentroid, ChangePoint aggregations
  • Add p_value parameter to SignificantTerms aggregation
  • Add fields parameter to SemanticText field
Other

v8.19.1: 8.19.1

Compare Source

Enhancements and Fixes

  • ES|QL query builder integration with the DSL module (#​3058)
  • ES|QL query builder robustness fixes (#​3017)
  • Fix ES|QL multi_match() signature (#​3052)

API

  • Add support for ES|QL query builder objects to ES|QL Query and Async Query APIs
  • Add Amazon Sagemaker to Inference API
  • Add expand_wildcards parameter to Snapshot Create API
  • Add Transform Set Upgrade Mode API
  • Fix type of params parameter of SQL Query API to array
  • Fix type of fields parameter of Term Vectors API to array of strings

DSL

  • Preserve the skip_empty setting in to_dict() recursive serializations (#​3041)
  • Add ChunkingSettings type
  • Add SemanticTextIndexOptions type
  • Add exclude_vectors attribute to SourceFilter type
  • Add SparseVectorIndexOptions type
  • Add execution_hint attribute to TDigest type
  • Add primary attribute to ShardFailure type
  • Fix type of key attribute of ArrayPercentilesItem to float

v8.19.0: 8.19.0

Compare Source

Enhancements

  • ES|QL query builder (technical preview) (#​2997)
  • Add option to disable accurate reporting of file and line location in warnings (Fixes #​3003) (#​3006)

API updates

  • Remove if_primary_term, if_seq_no and op_type from Create API
  • Remove stored_fields from Get Source API
  • Remove min_compatible_shard_node from Async Search Submit API
  • Remove master_timeout from Cat Aliases API
  • Remove master_timeout from Ingest Get Ip Location Database API
  • Remove application, priviledge and username from the Security Get User API
  • Rename type_query_string to type in License Post Start Trial API
  • Add require_data_stream to Index API
  • Add settings_filter to Cluster Get Component Tem

Configuration

📅 Schedule: (UTC)

  • Branch creation
    • Between 12:00 AM and 03:59 AM, on day 1 of the month (* 0-3 1 * *)
  • Automerge
    • At any time (no schedule defined)

🚦 Automerge: Disabled by config. Please merge this manually once you are satisfied.

Rebasing: Whenever PR becomes conflicted, or you tick the rebase/retry checkbox.

👻 Immortal: This PR will be recreated if closed unmerged. Get config help if that's undesired.


  • If you want to rebase/retry this PR, check this box

This PR was generated by Mend Renovate. View the repository job log.

@renovate renovate bot added the dependencies Pull requests that update a dependency file label Feb 4, 2026
@renovate renovate bot force-pushed the renovate/major-python-dependencies branch 3 times, most recently from bd8a2ea to c496d8d Compare February 4, 2026 14:35
@renovate renovate bot force-pushed the renovate/major-python-dependencies branch from c496d8d to 6ded2ae Compare February 12, 2026 11:02
@renovate renovate bot force-pushed the renovate/major-python-dependencies branch 4 times, most recently from 5ca1df6 to ee4ac4c Compare March 5, 2026 00:02
@renovate renovate bot force-pushed the renovate/major-python-dependencies branch from ee4ac4c to b4dc45d Compare March 13, 2026 11:08
@renovate renovate bot force-pushed the renovate/major-python-dependencies branch 2 times, most recently from edc57be to ba36251 Compare March 29, 2026 21:15
@renovate renovate bot force-pushed the renovate/major-python-dependencies branch 2 times, most recently from 7fc6071 to 9567b17 Compare April 8, 2026 17:02
@renovate renovate bot changed the title chore(deps): update python dependencies (major) Update Python Dependencies (major) Apr 8, 2026
@renovate renovate bot force-pushed the renovate/major-python-dependencies branch from 9567b17 to fda49f3 Compare April 15, 2026 13:11
@renovate renovate bot force-pushed the renovate/major-python-dependencies branch from fda49f3 to 271ab98 Compare April 16, 2026 23: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

Projects

None yet

Development

Successfully merging this pull request may close these issues.

0 participants