Skip to content

fix: bump the python-packages group in /images/python-arcgis with 8 updates#419

Open
dependabot[bot] wants to merge 1 commit into
mainfrom
dependabot/pip/images/python-arcgis/python-packages-5dcaa6df78
Open

fix: bump the python-packages group in /images/python-arcgis with 8 updates#419
dependabot[bot] wants to merge 1 commit into
mainfrom
dependabot/pip/images/python-arcgis/python-packages-5dcaa6df78

Conversation

@dependabot
Copy link
Copy Markdown
Contributor

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

Bumps the python-packages group in /images/python-arcgis with 8 updates:

Package From To
geopandas 1.1.1 1.1.3
python-dotenv 1.1.1 1.2.2
boto3 1.34.52 1.43.14
datadog-api-client 2.44.0 2.55.0
pyshp 2.3.1 3.0.8
gdal 3.6.4 3.13.0
azure-storage-blob 12.26.0 12.29.0
arcgis-mapping 4.31.0 4.33.1

Updates geopandas from 1.1.1 to 1.1.3

Release notes

Sourced from geopandas's releases.

Version 1.1.3

What's Changed

This release addresses a handful of small compatibility issues with pandas 3.0 and backports some bugfixes.

Bug fixes:

  • Improved compatibility with pandas 3.0 Copy-on-Write feature, making use of deferred copies where possible (#3298, #3711).
  • Fix GeoSeries.sample_points not accepting list-like size when generating points using pointpaterns (#3710).
  • Fix from_wkt/wkb to correctly handle missing values with pandas 3 (where the new str dtype is used) (#3714).
  • Fix to_postgis to correctly handle missing values with pandas 3 (where the new str dtype is used) (#3722).
  • Using loc to assign column values to a new row index now correctly preserves the column CRS and geometry dtype on pandas 3.1, due to an upstream bug fix (#3741, Pandas #62523)
  • Random states in pointpats methods of sample_points can now be fixed with rng (#3737).

Full Changelog: geopandas/geopandas@v1.1.2...v1.1.3

Version 1.1.2

What's Changed

Bug fixes:

  • Fix an issue that caused an error in GeoDataFrame.from_features when there is no properties field (#3599).
  • Fix read_file and to_file errors (#3682)
  • Fix read_parquet with to_pandas_kwargs for complex (list/struct) arrow types (#3640)
  • value_counts on GeoSeries now preserves CRS in index (#3669)
  • Fix f-string placeholders appearing in error messages when pyogrio cannot be imported (#3682).
  • Fix read_parquet with to_pandas_kwargs for complex (list/struct) arrow types (#3640).
  • .to_json now provides a clearer error message when called on a GeoDataFrame without an active geometry column (#3648).
  • Calling del gdf["geometry"] now will downcast to a pd.DataFrame if there are no geometry columns left in the dataframe (#3648).
  • Fix SQL injection in to_postgis via geometry column name (#3681).

Full Changelog: geopandas/geopandas@v1.1.1...v1.1.2

Changelog

Sourced from geopandas's changelog.

Version 1.1.3 (March 10, 2026)

This release addresses a handful of small compatibility issues with pandas 3.0 and backports some bugfixes.

Bug fixes:

  • Improved compatibility with pandas 3.0 Copy-on-Write feature, making use of deferred copies where possible (#3298, #3711).
  • Fix GeoSeries.sample_points not accepting list-like size when generating points using pointpaterns (#3710).
  • Fix from_wkt/wkb to correctly handle missing values with pandas 3 (where the new str dtype is used) (#3714).
  • Fix to_postgis to correctly handle missing values with pandas 3 (where the new str dtype is used) (#3722).
  • Using loc to assign column values to a new row index now correctly preserves the column CRS and geometry dtype on pandas 3.1, due to an upstream bug fix (#3741, Pandas #62523)
  • Random states in pointpats methods of sample_points`` can now be fixed with rng` (#3737).

Version 1.1.2 (December 22, 2025)

Bug fixes:

  • Fix an issue that caused an error in GeoDataFrame.from_features when there is no properties field (#3599).
  • Fix read_file and to_file errors (#3682)
  • Fix read_parquet with to_pandas_kwargs for complex (list/struct) arrow types (#3640)
  • value_counts on GeoSeries now preserves CRS in index (#3669)
  • Fix f-string placeholders appearing in error messages when pyogrio cannot be imported (#3682).
  • Fix read_parquet with to_pandas_kwargs for complex (list/struct) arrow types (#3640).
  • .to_json now provides a clearer error message when called on a GeoDataFrame without an active geometry column (#3648).
  • Calling del gdf["geometry"] now will downcast to a pd.DataFrame if there are no geometry columns left in the dataframe (#3648).
  • Fix SQL injection in to_postgis via geometry column name (#3681).
Commits
  • f5fe3ff RLS: v1.1.3
  • c104670 pointpats <2.5.3 test compat
  • af36b14 ENH: add pointpats as an optional dependency & pass in rng (#3737)
  • d9ed84a COMPAT: fix failing test for loc concatenation crs preservation with pandas 3...
  • 1b1ddc2 MAINT: use trusted publishing for releasing to PyPI (#3734)
  • 8d0c05d changelog
  • a424f17 Avoid returning deep copies with pandas 3.0 (with Copy-on-Write) (#3298)
  • 03fa43e MAINT: cleanup release warning for project.license table (#3603)
  • 29fdb30 CI: remove usage of PANDAS_FUTURE_INFER_STRINGS=0 (#3715)
  • 9070e13 missing changelog entries
  • Additional commits viewable in compare view

Updates python-dotenv from 1.1.1 to 1.2.2

Release notes

Sourced from python-dotenv's releases.

v1.2.2

Added

  • Support for Python 3.14, including the free-threaded (3.14t) build. (#)

Changed

  • The dotenv run command now forwards flags directly to the specified command by @​bbc2 in theskumar/python-dotenv#607
  • Improved documentation clarity regarding override behavior and the reference page.
  • Updated PyPy support to version 3.11.
  • Documentation for FIFO file support.
  • Support for Python 3.9.

Fixed

Breaking Changes

  • dotenv.set_key and dotenv.unset_key used to follow symlinks in some situations. This is no longer the case. For that behavior to be restored in all cases, follow_symlinks=True should be used.

  • In the CLI, set and unset used to follow symlinks in some situations. This is no longer the case.

  • dotenv.set_key, dotenv.unset_key and the CLI commands set and unset used to reset the file mode of the modified .env file to 0o600 in some situations. This is no longer the case: The original mode of the file is now preserved. Is the file needed to be created or wasn't a regular file, mode 0o600 is used.

Misc

New Contributors

Full Changelog: theskumar/python-dotenv@v1.2.1...v1.2.2

v1.2.1

What's Changed

... (truncated)

Changelog

Sourced from python-dotenv's changelog.

[1.2.2] - 2026-03-01

Added

  • Support for Python 3.14, including the free-threaded (3.14t) build. (#588)

Changed

  • The dotenv run command now forwards flags directly to the specified command by [@​bbc2] in #607
  • Improved documentation clarity regarding override behavior and the reference page.
  • Updated PyPy support to version 3.11.
  • Documentation for FIFO file support.
  • Dropped Support for Python 3.9.

Fixed

  • Improved set_key and unset_key behavior when interacting with symlinks by [@​bbc2] in [790c5c0]
  • Corrected the license specifier and added missing Python 3.14 classifiers in package metadata by [@​JYOuyang] in #590

Breaking Changes

  • dotenv.set_key and dotenv.unset_key used to follow symlinks in some situations. This is no longer the case. For that behavior to be restored in all cases, follow_symlinks=True should be used.

  • In the CLI, set and unset used to follow symlinks in some situations. This is no longer the case.

  • dotenv.set_key, dotenv.unset_key and the CLI commands set and unset used to reset the file mode of the modified .env file to 0o600 in some situations. This is no longer the case: The original mode of the file is now preserved. Is the file needed to be created or wasn't a regular file, mode 0o600 is used.

[1.2.1] - 2025-10-26

  • Move more config to pyproject.toml, removed setup.cfg
  • Add support for reading .env from FIFOs (Unix) by [@​sidharth-sudhir] in #586

[1.2.0] - 2025-10-26

Commits

Updates boto3 from 1.34.52 to 1.43.14

Commits
  • 07953b0 Merge branch 'release-1.43.14'
  • 25c77c3 Bumping version to 1.43.14
  • 5e64afc Add changelog entries from botocore
  • 97921f4 Merge branch 'release-1.43.13'
  • 4e58a35 Merge branch 'release-1.43.13' into develop
  • 1307ac2 Bumping version to 1.43.13
  • c75c901 Add changelog entries from botocore
  • d3f2433 Merge branch 'release-1.43.12'
  • d5eddf9 Merge branch 'release-1.43.12' into develop
  • 93f3a42 Bumping version to 1.43.12
  • Additional commits viewable in compare view

Updates datadog-api-client from 2.44.0 to 2.55.0

Release notes

Sourced from datadog-api-client's releases.

2.55.0

See ./CHANGELOG.md for details

2.54.0

See ./CHANGELOG.md for details

2.53.0

See ./CHANGELOG.md for details

2.52.0

See ./CHANGELOG.md for details

2.51.0

See ./CHANGELOG.md for details

2.50.0

See ./CHANGELOG.md for details

2.49.0

See ./CHANGELOG.md for details

2.48.0

See ./CHANGELOG.md for details

2.47.0

See ./CHANGELOG.md for details

2.46.0

See ./CHANGELOG.md for details

2.45.0

See ./CHANGELOG.md for details

Changelog

Sourced from datadog-api-client's changelog.

2.55.0/2026-05-15

Added

  • Add Compliance Findings rule-based view endpoint to OpenAPI v2 #3523
  • Add window[seconds] query parameter for look back #3521
  • Add OpenAPI spec for cost-planning-api commitment program endpoints #3518
  • Add regression fields to Error Tracking API responses #3517
  • Add OpenAPI for Cloud Cost Management anomalies endpoints #3514
  • Allow errors data source in formula event queries for dashboards #3508
  • Document Cloud Cost Management v2 tags and tag_keys endpoints #3507
  • Add OpenAPI definition for CCM ListCostTagDescriptions #3504
  • Add OpenAPI spec for current user endpoints #3500
  • Add state filter for Search Error Tracking Issues API #3494
  • Add OpenAPI spec for email transport webhook intake #3493
  • Add integration_type for Microsoft Teams to IncidentIntegrationMetadataAttributes #3492
  • Add infra_storage_mgmt_objects_count_avg fields to usage summary API #3490
  • Add cross_org_uuids to v2 query endpoints #3488
  • Add GKE Autopilot usage types to API documentation #3484
  • Add session interaction type to LLM Observability API spec #3483
  • Add OpenAPI spec for authn-validation /api/v2/validate endpoint #3482
  • Add OpenAPI definitions for CCM status endpoints #3481
  • Add style and sort to TreeMapWidgetRequest and sort to SunburstWidgetRequest for Dashboards #3469
  • Add compression_method field to Log Archives #3468
  • Cloud inventory api sync config endpoint documentation #3467
  • Add Point Plot widget to dashboard API spec #3465
  • Add backfilled degradation and maintenance endpoints to Status Pages #3464
  • Add Cloud Cost Management ListCostOCIConfigs endpoint #3463
  • Add Observability pipelines databricks_zerobus destination #3456
  • RUM - Add Source Map Intake API endpoint specification #3455
  • Document bulk delete security monitoring rules endpoint #3450
  • Add compliance_host to Agentless Scanning scan options #3449
  • Add MuteSecurityFindings endpoint spec #3443
  • Add OpenAPI documentation for Synthetics downtime endpoints #3442
  • Add feature_flags_config_requests to usage summary API #3415
  • Add specs for ListOrgsV2 and DeleteUserInvitations #3396
  • Add infra_host_basic and eph_infra_host_basic to usage metering API #3365

Changed

  • Mark email transport webhook endpoint as private #3512
  • Continue cursor pagination until results are empty #3474
  • Mark Test Optimization endpoints as stable #3461
  • Document Annotations label schema API for AI Observability #3458
  • Security Monitoring - expand learningDuration and forgetAfter to support up to 30 days #3421

Removed

  • Remove deprecated incident teams endpoints #3498
  • Remove deprecated allocation key fields from feature flags API #3436

Fixed

  • Widgets API - add complete create/update example for cloud_cost_summary #3479

... (truncated)

Commits
  • 5c6f8ac Merge pull request #3531 from DataDog/release/python_legacy_package-2026-05-15
  • 4db49f7 [incidents] Skip terraform generation for noisy synthetics (#3530)
  • b85930a Bump versions and add changelog entries.
  • 12dc907 Add app-builder lifecycle endpoints to public OpenAPI spec (#3496)
  • bcdd9a5 Add OpenAPI spec for cost-planning-api commitment program endpoints (#3518)
  • e895c13 Allow errors data source in formula event queries for dashboards (#3508)
  • c8592d6 [ATRAIL-254] Modify CODEOWNERS for audit_logs.yaml ownership (#3495)
  • ccdcea7 Add Compliance Findings rule-based view endpoint to OpenAPI v2 (#3523)
  • 47b9973 Regenerate client from commit d7ce919 of spec repo (#3512)
  • fd58c5a Regenerate client from commit 8c9b068 of spec repo (#3521)
  • Additional commits viewable in compare view

Updates pyshp from 2.3.1 to 3.0.8

Release notes

Sourced from pyshp's releases.

v3.0.8 DbfWriter

What's Changed

Full Changelog: GeospatialPython/pyshp@3.0.7...3.0.8

v3.0.7 DbfReader

What's Changed

Full Changelog: GeospatialPython/pyshp@3.0.6...3.0.7

v3.0.6 Warn about failed shapefile downloads (and provide a hint to download from Github)

What's Changed

Full Changelog: GeospatialPython/pyshp@3.0.5...3.0.6

v3.0.5 PEP 735 Dependendency groups (drop dev and test optional deps))

What's Changed

Full Changelog: GeospatialPython/pyshp@3.0.4...3.0.5

v3.0.4 Fix pyshp-stubs

Fix pyshp-stubs

What's Changed

Full Changelog: GeospatialPython/pyshp@3.0.3...3.0.4

Documentation fix. Correct the version number in README.md

A rerelease of 3.0.2 for PyPi (to retrigger the CD deploy job)

No release notes provided.

Remove py.typed

so as not to enforce type checking on user's other projects.

More support for Paths, and no longer modifies the doctest module.

... (truncated)

Changelog

Sourced from pyshp's changelog.

VERSION 3.0.9.dev

2026-05-23 Bug fix (BREAKING CHANGE):

  • Correct NODATA lower threshold to -1e38 (as per spec page 2, Numeric Types). This is a tenth of PyShp's previous threshold -10e38, but still a huge negative number.

2026-05-20 Security:

  • Add python_version >= 3.10 to pre-commit dev & lint groups' 'dependency' (due to CVE in filelock 3.19).

VERSION 3.0.8

2026-05-20 Testability / separation of concerns:

  • Separate dbf only writing methods into a new dbfWriter class (an instance of which is owned by the regular Shapefile Writer class).

VERSION 3.0.7

2026-05-20 Testability / separation of concerns:

  • Separate dbf only reading methods into a new dbfReader class (an instance of which is owned by the regular Shapefile Reader class).

VERSION 3.0.6

2026-05-19 URL Downloading:

  • Unify tempfile creation and shapefile download logic.
  • Check "Content-Type" header and sniff initial bytes of response in order to possibly reject html responses, before parsing as a shapefile, to give a more useful error to users.
  • Special case shapefiles hosted in Github repos to suggest appending the query string ?raw=true.

2026-05-18 Testing:

VERSION 3.0.5

2026-05-18 Project structure:

  • Use dependency groups for dev and test instead of optional-dependencies in pyproject.toml (Mike Toews)

VERSION 3.0.4

2026-05-17 Type checking:

  • Fix PyShp-stubs, and add test to it. Remove all actual stubs from it, and replace with empty "shapefile-stubs/py.typed".

... (truncated)

Commits
  • c979d39 v3.0.8
  • 7a2b7b1 Merge pull request #391 from JamesParrott/DbfWriter
  • 3175910 Add DbfWriter and refactor Writer to use it
  • cda7ccb Merge pull request #390 from JamesParrott/dbfReader
  • d79d5cb Create DbfReader class
  • f10ba79 Merge pull request #389 from JamesParrott/Separate_download_and_tempfile_crea...
  • 0ee5025 Refactor NamedTemporaryFile code into common function (save_to_named_tmp_file)
  • 6b63fea Merge pull request #387 from GeospatialPython/Test_Polylinez_no_m
  • 4c6787a Don't test other ONHM shapefiles (investigate later)
  • 6570625 pytest.parametrize => pytest.mark.parametrize
  • Additional commits viewable in compare view

Updates gdal from 3.6.4 to 3.13.0

Release notes

Sourced from gdal's releases.

GDAL 3.13.0 "Iowa City"

The 3.13.0 release is a new feature release with the following highlights:

In a nutshell...

Detailed release notes

At https://github.com/OSGeo/gdal/blob/v3.13.0/NEWS.md

Backward compatibility issues

See migration guide

GDAL 3.12.4

Bug fix release. See release notes: https://github.com/OSGeo/gdal/blob/v3.12.4/NEWS.md

GDAL 3.12.3

... (truncated)

Changelog

Sourced from gdal's changelog.

GDAL/OGR 3.13.0 "Iowa City" Release Notes

GDAL 3.13.0 is a feature release These notes include changes since GDAL 3.12.0, but not already included in a GDAL 3.12.x bugfix release.

In a nutshell...

New installed files

  • Include files: gdal_mem.h gdal_thread_pool.h ogr_refcountedptr.h

Backward compatibility issues

... (truncated)

Commits
  • 130cb46 Avoid hang on Windows with curl 8.20.0
  • 42562b3 autotest/gcore/basic_test.py: avoid stalling when TileDB driver is present
  • f86159d NEWS.md: mention gdal_mem.h [ci skip]
  • e25edb4 Update version numbers for 3.13.0
  • 1c92b1d NEWS.md: 3.13.0 update
  • e231044 test_vsis3_random_write_gtiff_create_copy(): update to suppress error messages
  • 56cff99 TileDB: do not try to identify /vsis3/.../file.tif files
  • 27395ff Merge pull request #14480 from AbelPau/MIraMonVector-fix-issue-508096396
  • c38c931 autotest/utilities: make test robusts to source directory with a space [ci skip]
  • 49026ea MIraMonVector: fix issue 508096396
  • Additional commits viewable in compare view

Updates azure-storage-blob from 12.26.0 to 12.29.0

Release notes

Sourced from azure-storage-blob's releases.

azure-storage-blob_12.29.0

12.29.0 (2026-05-14)

Features Added

  • Stable release of features from 12.29.0b1

Bugs Fixed

  • Fixed an issue where BlobClient's download_blob did not retry upon ServiceReponseError and ServiceResponseTimeoutError exceptions
  • Fixed various issues with configuring logging via logging_enable and logging_body keywords on a per-request basis and with retries. Prior to this fix logging may have not behaved as expected, especially on retries.
  • Fix a potential memory leak caused by improper exception handling that could occur under rare circumstances.
Commits
  • e73548b Release date
  • 60f7b16 Changed release date
  • 5280297 Modified release date to 5/12/2026
  • 15e1ae9 NO_CI [Doc] Update references to wiki pages (#46169)
  • 3f5c4d2 cibuildwheel not necessary in build-system metadata for `azure-storage-ex...
  • 5b5b757 Modified release date to 2026-05-11
  • 8b9a3e5 [Storage][101] Cherry pick recent fixes and release prep (#46659)
  • fdae976 Merge branch 'main' into release/storage/stg101
  • 1e540de Fix typing contract for max_concurrency in File Share client (#45637)
  • fa44dea Fix typing contract for max_concurrency in Datalake client (#45631)
  • Additional commits viewable in compare view

Updates arcgis-mapping from 4.31.0 to 4.33.1

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 python-packages group in /images/python-arcgis with 8 updates:

| Package | From | To |
| --- | --- | --- |
| [geopandas](https://github.com/geopandas/geopandas) | `1.1.1` | `1.1.3` |
| [python-dotenv](https://github.com/theskumar/python-dotenv) | `1.1.1` | `1.2.2` |
| [boto3](https://github.com/boto/boto3) | `1.34.52` | `1.43.14` |
| [datadog-api-client](https://github.com/DataDog/datadog-api-client-python) | `2.44.0` | `2.55.0` |
| [pyshp](https://github.com/GeospatialPython/pyshp) | `2.3.1` | `3.0.8` |
| [gdal](https://github.com/OSGeo/gdal) | `3.6.4` | `3.13.0` |
| [azure-storage-blob](https://github.com/Azure/azure-sdk-for-python) | `12.26.0` | `12.29.0` |
| arcgis-mapping | `4.31.0` | `4.33.1` |


Updates `geopandas` from 1.1.1 to 1.1.3
- [Release notes](https://github.com/geopandas/geopandas/releases)
- [Changelog](https://github.com/geopandas/geopandas/blob/main/CHANGELOG.md)
- [Commits](geopandas/geopandas@v1.1.1...v1.1.3)

Updates `python-dotenv` from 1.1.1 to 1.2.2
- [Release notes](https://github.com/theskumar/python-dotenv/releases)
- [Changelog](https://github.com/theskumar/python-dotenv/blob/main/CHANGELOG.md)
- [Commits](theskumar/python-dotenv@v1.1.1...v1.2.2)

Updates `boto3` from 1.34.52 to 1.43.14
- [Release notes](https://github.com/boto/boto3/releases)
- [Commits](boto/boto3@1.34.52...1.43.14)

Updates `datadog-api-client` from 2.44.0 to 2.55.0
- [Release notes](https://github.com/DataDog/datadog-api-client-python/releases)
- [Changelog](https://github.com/DataDog/datadog-api-client-python/blob/master/CHANGELOG.md)
- [Commits](DataDog/datadog-api-client-python@2.44.0...2.55.0)

Updates `pyshp` from 2.3.1 to 3.0.8
- [Release notes](https://github.com/GeospatialPython/pyshp/releases)
- [Changelog](https://github.com/GeospatialPython/pyshp/blob/master/changelog.txt)
- [Commits](GeospatialPython/pyshp@2.3.1...3.0.8)

Updates `gdal` from 3.6.4 to 3.13.0
- [Release notes](https://github.com/OSGeo/gdal/releases)
- [Changelog](https://github.com/OSGeo/gdal/blob/master/NEWS.md)
- [Commits](OSGeo/gdal@v3.6.4...v3.13.0)

Updates `azure-storage-blob` from 12.26.0 to 12.29.0
- [Release notes](https://github.com/Azure/azure-sdk-for-python/releases)
- [Commits](Azure/azure-sdk-for-python@azure-storage-blob_12.26.0...azure-storage-blob_12.29.0)

Updates `arcgis-mapping` from 4.31.0 to 4.33.1

---
updated-dependencies:
- dependency-name: geopandas
  dependency-version: 1.1.3
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: python-packages
- dependency-name: python-dotenv
  dependency-version: 1.2.2
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: python-packages
- dependency-name: boto3
  dependency-version: 1.43.14
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: python-packages
- dependency-name: datadog-api-client
  dependency-version: 2.55.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: python-packages
- dependency-name: pyshp
  dependency-version: 3.0.8
  dependency-type: direct:production
  update-type: version-update:semver-major
  dependency-group: python-packages
- dependency-name: gdal
  dependency-version: 3.13.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: python-packages
- dependency-name: azure-storage-blob
  dependency-version: 12.29.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: python-packages
- dependency-name: arcgis-mapping
  dependency-version: 4.33.1
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: python-packages
...

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 25, 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