Skip to content

fix: bump the python-packages group across 1 directory 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 across 1 directory with 8 updates#419
dependabot[bot] wants to merge 1 commit into
mainfrom
dependabot/pip/images/python-arcgis/python-packages-5dcaa6df78

Conversation

@dependabot

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

Copy link
Copy Markdown
Contributor

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

Package From To
geopandas 1.1.1 1.1.4
python-dotenv 1.1.1 1.2.2
boto3 1.34.52 1.43.40
datadog-api-client 2.44.0 2.57.0
pyshp 2.3.1 3.1.4
gdal 3.6.4 3.13.1
azure-storage-blob 12.26.0 12.30.0
arcgis-mapping 4.31.0 4.33.1

Updates geopandas from 1.1.1 to 1.1.4

Release notes

Sourced from geopandas's releases.

Version 1.1.4

What's Changed

Bug fixes:

  • Further hardening of to_postgis against SQL injection (#3800).
  • Ensure that points generated by sample_points are not sorted along x-axis (#3773).
  • Fix GeoDataFrame.explore() ignoring custom legend_kwds={"labels": ...} for categorical and boolean columns (#3496).
  • More graceful handling of keep_geom_type in the overlay() function with empty input (#3745).

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

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.4 (June 26, 2026)

Bug fixes:

  • Further hardening of to_postgis against SQL injection (#3800).
  • Ensure that points generated by sample_points are not sorted along x-axis (#3773).
  • Fix GeoDataFrame.explore() ignoring custom legend_kwds={"labels": ...} for categorical and boolean columns (#3496).
  • More graceful handling of keep_geom_type in the overlay() function with empty input (#3745).

Version 1.1.3 (March 10, 2026)

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
  • 91ec4af RLS: v1.1.4
  • b5d685f DOC: add changelog for 1.1.4
  • 158d993 BUG: further to_postgis hardening (#3800)
  • ce95930 BUG: honor legend_kwds["labels"] for categorical and boolean columns in explo...
  • 22bf845 BUG: overlay with empty input handles keep geom dtype gracefully (#3745)
  • 866a7f0 BUG: ensure that points from random sampling are not sorted (#3773)
  • 76b16ca DOC: update Code of Conduct reporting form link (#3794)
  • 3a04a5c switch to NumFOCUS Code of Conduct (#3671)
  • 6fedb19 BLD: setuptools 77+ required for PEP 639 support (#3746)
  • f5fe3ff RLS: v1.1.3
  • 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.40

Commits
  • dd59a59 Merge branch 'release-1.43.40'
  • b416ca0 Bumping version to 1.43.40
  • b228d05 Add changelog entries from botocore
  • 121db7a Merge branch 'release-1.43.39'
  • 00141f6 Merge branch 'release-1.43.39' into develop
  • 310317d Bumping version to 1.43.39
  • ff7c1cf Add changelog entries from botocore
  • 805c683 Update CODEOWNERS to shared Python SDK and CLI team (#4809)
  • efcfb65 Merge branch 'release-1.43.38'
  • d7aa957 Merge branch 'release-1.43.38' into develop
  • Additional commits viewable in compare view

Updates datadog-api-client from 2.44.0 to 2.57.0

Release notes

Sourced from datadog-api-client's releases.

2.57.0

See ./CHANGELOG.md for details

2.56.0

See ./CHANGELOG.md for details

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.57.0/2026-06-30

Added

  • Add the uk1 data center. #3730
  • [obs-pipelines] Add TLS support to cloud_prem destination #3724
  • Add OpenAPI spec for k9-integration-api security findings and vulnerabilities #3721
  • Document metrics volume includes #3719
  • Add buffer configuration to ClickHouse destination #3718
  • Add public API endpoints for feature flag variant create, update, and delete #3715
  • Add public v2 OpenAPI operations for governance controls #3713
  • Add ObservabilityPipelineClickhouseDestination to OpenAPI spec #3712
  • Add ObservabilityPipelineWebsocketSource to schema #3710
  • Add security_filters and rules resource types to terraform export endpoints #3708
  • Add OpenAPI for Cloud Cost Management custom forecast endpoints #3707
  • Add Edit and Delete Notice Update and Slack icon support in API spec #3702
  • Add OpenAPI spec for RUM Remote Config endpoints #3699
  • Add OpenAPI spec for code-coverage PR summary and files endpoints #3698
  • Add public API for security findings automation rules #3695
  • Add OpenAPI spec for governance insights #3690
  • Add OpenAPI specs for reporting schedule endpoints #3684
  • Add LogsArrayMapProcessor to OpenAPI v1 spec #3654
  • Update GetBudget API spec with cost query parameters and custom forecast fields #3653

Changed

  • Update worked_by param to accept handle instead of UUID #3728
  • Add support for running CI jobs #3714
  • feat(test-optimization): update service settings API with override and inherit fields #3697
  • Mark tag indexing rule endpoints as Preview in API spec #3696

Deprecated

  • Remove Compliance Findings rule-based view endpoint from OpenAPI v2 #3725

Fixed

  • Fix test by adding on_missing_data options to the req payload #3723

2.56.0/2026-06-17

Added

  • Add captureNetworkPayloads for Synthetics Browser tests #3694
  • Set x-keep-typed-in-additional-properties on UsageSummary schemas #3693
  • add OpenAPI spec for Tag Policies API #3689
  • Mark ServiceNow triage endpoints as stable #3687
  • Add restore rule version endpoint in detection rules #3680
  • Document LLM Observability Patterns API #3678
  • Add OpenAPI spec for max session duration endpoint #3676
  • Additional Forms v2 API endpoints #3675
  • Add observability pipelines Generate metrics processor #3672
  • Add GET /api/v2/integration/slack/user-bindings to Slack integration spec #3670
  • Add OpenAPI spec for CSM settings endpoints #3669
  • Add OpenAPI spec for CSM ownership-api endpoints #3668

... (truncated)

Commits
  • c5c7ab3 Merge pull request #3735 from DataDog/release/python_legacy_package-2026-06-30
  • 8970beb Bump versions and add changelog entries.
  • 85da4f3 Regenerate client from commit 3360349 of spec repo (#3728)
  • 71638c6 Regenerate client from commit 6a6a888 of spec repo (#3696)
  • 53be7d6 Regenerate client from commit b4e7c78 of spec repo (#3730)
  • 61c2cb8 Regenerate client from commit c7504fc of spec repo (#3724)
  • 8d48bf1 Regenerate client from commit a83cafd of spec repo (#3725)
  • 4610862 Regenerate client from commit af12d35 of spec repo (#3714)
  • ed5f3f3 Regenerate client from commit 1cc0120 of spec repo (#3723)
  • d2e1a36 Regenerate client from commit 6d8a672 of spec repo (#3721)
  • Additional commits viewable in compare view

Updates pyshp from 2.3.1 to 3.1.4

Release notes

Sourced from pyshp's releases.

v3.1.3 speed up encoding of utf8 and ascii text

No release notes provided.

v3.1.2 In strict mode, raise error if whole chars encoded to pad bytes

No release notes provided.

v3.0.13 Bug fix (read empty shp files)

No release notes provided.

v3.0.12 points_3D ! Polylines and Polygons pass round trip tests

No release notes provided.

Bug fix - convert out of bounds m values to None.

No release notes provided.

v3.0.9 ShpReader, ShpWriter, ShxReader, and ShxWriter

What's Changed

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

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

... (truncated)

Changelog

Sourced from pyshp's changelog.

VERSION 3.1.4 2026-06-29

  • Fix bug causing dates supplied as length 8 strings to be encoded by the custom codec, not ascii 2026-06-27
  • Test other codecs (ascii and UTF-8, UTF-16 & UTF-32 so far).
  • Test all other codecs in CI

VERSION 3.1.3

2026-06-25

  • Restore faster text writing paths for single-byte Ascii encodings, and Utf-8.

VERSION 3.1.2

2026-06-24

  • Raise error in strict mode when creating field with a name, or writing strings, that ends with whole code points that whose encoding is pad bytes.
  • Document handling of unicode.

VERSION 3.1.1

2026-06-24 Unicode support made even more robust and yet another encoding bug fixed!

  • When reading, only use minimum number of pad bytes to decode text successfully (fixes issue 423).
  • When writing, warn (or raise in strict mode) if the text's encoding ends in pad bytes.

VERSION 3.1.0

2026-06-23 Unicode support made more robust and encoding bugs fixed

  • Truncation of field names and text fields now respects unicode code point boundaries (fixes issues 416 and 148).
  • Warnings raised if truncation, or replacing b" " with b"_" would corrupt encoded field names, both if they would either be undecodable, or would silently decode to incorrect data (warns users if issue 421 applies).
  • Correctly truncated field names are now stored in field instances, as would actually be seen in the file.
  • New strict mode. Writer(strict=True) raises errors or refuse to create fields and text records with data that would be truncated or cannot be correctly decoded back again by PyShp, exactly as given by the user.
  • In strict mode, ascii spaces in encoded names are no longer replaced by ascii underscores at all (work around to avoid corrupting unicode field names - provides opt-in fix for issue 421)
  • BREAKING. When reading .dbf files, Trailing ascii spaces in text fields before a null terminator char (in the decoded string) is now removed (i.e. instead of .strip().rstrip('\x00') we now do: .rstrip("\x00").rstrip(" ")).
  • BREAKING. Enclosing Whitespace other than trailing ascii spaces (0x20) after null chars in text fields is now preserved, when reading .dbf files (fixes issue 418 - James feels this was a bug. Let him know if you think otherwise).
  • BREAKING Trailing null chars other than null terminators & null padding bytes, followed by whitespace other than ascii spaces, are now preserved
  • Writing dbf records is now atomic. Testing.
  • En/decoding of Dbf files and Fields round trips correctly.

... (truncated)

Commits
  • 3d6bb0b Merge pull request #434 from JamesParrott/Test_all_supported_encodings
  • fc96b16 v3.1.4. Fix bug with dates supplied as strings & test all encodings in CI
  • fc26395 Merge pull request #432 from JamesParrott/Synced_with_PyShp
  • d0e2a2b Test 13 more encodings
  • 981a994 Merge pull request #431 from JamesParrott/Test_more_codecs
  • 4d091fc Test against latin1, & UTF-16s and UTF-32s
  • 684d708 Stop hammering ucdavis's server, causing flakey test failures
  • 08d465d Merge pull request #430 from JamesParrott/Add_unicode_to_hypothesis_tests
  • 1905d73 Test fields and text field values against all Unicode code points
  • 8267a46 Don't nest "" quoted strings inside "" quoted f-string fields
  • Additional commits viewable in compare view

Updates gdal from 3.6.4 to 3.13.1

Release notes

Sourced from gdal's releases.

GDAL 3.13.1

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

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

... (truncated)

Changelog

Sourced from gdal's changelog.

GDAL/OGR 3.13.1 Release Notes

GDAL 3.13.1 is a bugfix release.

Build

  • Fix build against Poppler 26.06.00
  • JP2Grok requires Grok >= 20.3.2

GDAL 3.13.1

Port

  • /vsicurl/: make it year 2038 ready on 32-bit systems or Windows
  • /vsis3/: fix support for listing directory buckets that had been broken per 4bd8d578b50

Algorithms

  • Warper Lanczos: remove special case when the ratio of valid source pixels/total is below 1/2 (#14560)
  • Zonal stats: avoid undefined behavior when a raster zone dataset has a NaN value

Core

  • GeoHEIF: do not report geotransform when there is none
  • Factor code related to overview selection between RasterIO() and gdalwarp
  • GDALRasterBand::HasConflictingMaskSources(): fix potential nullptr dereference
  • CopyWords float -> signed int8/int16/int32 SSE2 code path: convert NaN to 0 for consistency with scalar code path
  • CopyWords float -> integer data type: optimization for NEON
  • GDALCopy4Words: slightly optimize float -> signed int8/16/32
  • CopyWords: int32 -> uint16: speed enhancement and code cleanup
  • GDALCopyWords uint32->int32 SSE4.1/NEON: fix wrong loop indices (only speed impact)
  • GDALCopyWords: optimize Int32<-->UInt32 in SSE2
  • GDALCopyWords(): add int32->int16 SSE2 optimized code path
  • GDALCopyWords(): add int16->uint8 SSE2 optimized code path
  • GDALAlgorithmArg::SetFrom(const GDALArgDatasetValue &): fix inappropriate check

Utilities

  • apps/: use non-deprecated argument names
  • gdal external: make sure temporary files are deleted on Windows
  • gdal pipeline: fix nested pipeline inside a step whose name can be raster or vector (such as clip) (#14637)
  • gdal pipeline: fix '.... ! materialize --output my.tif ! tile' (#14621)
  • gdal pipeline: address case like 'gdal pipeline read vector_dataset ! clip --input raster_dataset --like PIPE ! write output_raster'

... (truncated)

Commits
  • b2e6057 Update version numbers for 3.13.1
  • 12bec3b NEWS.md: update for 3.13.1
  • aed2e47 GeoJSON writer: support recognizing 'application/geo+json', in addition to 'a...
  • b2a0d28 gdal vector rename-layer: add SetOutputLayerNameAvailableInPipelineStep(true)
  • f8c7449 gdal raster polygonize: SetOutputLayerNameAvailableInPipelineStep(true) (prev...
  • 08a40f3 gdal raster polygonize: SetOutputLayerNameAvailableInPipelineStep(true)
  • 5cb74e2 Add export-schema examples
  • 4150217 gdal raster polygonize: fix empty output layer name in pipeline
  • 3cb180f Add TOCs for pipeline steps, and add missing steps
  • 4298758 gdal pipeline replay: make it work when the pipeline uses a short argument na...
  • Additional commits viewable in compare view

Updates azure-storage-blob from 12.26.0 to 12.30.0

Release notes

Sourced from azure-storage-blob's releases.

azure-storage-blob_12.30.0

12.30.0 (2026-06-08)

Features Added

  • Stable release of features from 12.30.0b1
Commits
  • 245d202 Branch prep for release
  • 28ec40e Modified changelogs
  • 3339854 Merge branch 'main' into release/storage/stg102
  • 33075a4 [Storage] Fix Changelog Typos (#46930)
  • 4b183cf [Storage] Updated changelogs after 101 GA (#46914)
  • edf5833 Regenerate azure-mgmt-storagesync with latest code generator tool (#46884)
  • 1f5e399 [Storage] [Datalake] Fixed all next-pylint errors for `azure-storage-file-d...
  • 1a07881 [Storage] Fixed all errors in next-pylint for azure-storage-file-share (#...
  • 49343c0 [Storage] Fix all next-pylint errors for azure-storage-blob (#46601)
  • a1e9a01 ensure that when azure-storage-extensions is added as a dev_req to any of azu...
  • Additional commits viewable in compare view

Updates arcgis-mapping from 4.31.0 to 4.33.1

@dependabot dependabot Bot added dependencies Pull requests that update a dependency file python Pull requests that update Python code labels May 25, 2026
@ardrigh
ardrigh requested review from a team and CallumNZ June 20, 2026 06:14
@CallumNZ

Copy link
Copy Markdown
Contributor

This doesn't work with the applications that use it.
I will need to spend quite a bit of time to get it working, and will probably have to make my own PR rather than using the Dependabot one/s.

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

| Package | From | To |
| --- | --- | --- |
| [geopandas](https://github.com/geopandas/geopandas) | `1.1.1` | `1.1.4` |
| [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.40` |
| [datadog-api-client](https://github.com/DataDog/datadog-api-client-python) | `2.44.0` | `2.57.0` |
| [pyshp](https://github.com/GeospatialPython/pyshp) | `2.3.1` | `3.1.4` |
| [gdal](https://github.com/OSGeo/gdal) | `3.6.4` | `3.13.1` |
| [azure-storage-blob](https://github.com/Azure/azure-sdk-for-python) | `12.26.0` | `12.30.0` |
| arcgis-mapping | `4.31.0` | `4.33.1` |



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

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.40
- [Release notes](https://github.com/boto/boto3/releases)
- [Commits](boto/boto3@1.34.52...1.43.40)

Updates `datadog-api-client` from 2.44.0 to 2.57.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.57.0)

Updates `pyshp` from 2.3.1 to 3.1.4
- [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.1.4)

Updates `gdal` from 3.6.4 to 3.13.1
- [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.1)

Updates `azure-storage-blob` from 12.26.0 to 12.30.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.30.0)

Updates `arcgis-mapping` from 4.31.0 to 4.33.1

---
updated-dependencies:
- dependency-name: arcgis-mapping
  dependency-version: 4.33.1
  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: 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: gdal
  dependency-version: 3.13.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: python-packages
- dependency-name: geopandas
  dependency-version: 1.1.3
  dependency-type: direct:production
  update-type: version-update:semver-patch
  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: python-dotenv
  dependency-version: 1.2.2
  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 changed the title fix: bump the python-packages group in /images/python-arcgis with 8 updates fix: bump the python-packages group across 1 directory with 8 updates Jul 6, 2026
@dependabot
dependabot Bot force-pushed the dependabot/pip/images/python-arcgis/python-packages-5dcaa6df78 branch from 047118a to c5f1856 Compare July 6, 2026 04:32
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