fix: Master release bug fixes#2485
Conversation
|
Hey @BrendanWalsh 👋! We use semantic commit messages to streamline the release process. Examples of commit messages with semantic prefixes:
To test your commit locally, please follow our guild on building from source. |
|
/azp run |
|
Azure Pipelines successfully started running 1 pipeline(s). |
Codecov Report❌ Patch coverage is
Additional details and impacted files@@ Coverage Diff @@
## master #2485 +/- ##
==========================================
- Coverage 84.43% 84.23% -0.21%
==========================================
Files 335 335
Lines 17779 17781 +2
Branches 1603 1592 -11
==========================================
- Hits 15012 14978 -34
- Misses 2767 2803 +36 ☔ View full report in Codecov by Sentry. 🚀 New features to boost your workflow:
|
f0388b2 to
5f85b45
Compare
- Handle retired Azure Maps Spatial API (CheckPointInPolygon throws on transform) - Remove AzMapsPointInPolygonSuite test class and add fuzzing exemptions - Update Language API version from 2022-10-01-preview to 2024-11-01 - Fix PEP 440 Python wheel version normalization (lowercase + local version) - Fix conda environment activation on Linux (use conda run) See: https://azure.microsoft.com/en-us/updates/v2/azure-maps-creator-services-retirement-on-30-september-2025
5f85b45 to
d2a9dde
Compare
|
/azp run |
|
Azure Pipelines successfully started running 1 pipeline(s). |
Azure Maps Spatial API was retired on 9/30/2025. The notebooks 'Quickstart - Flooding Risk.ipynb' and 'Geospatial Services.ipynb' use CheckPointInPolygon which calls this retired API. Exclude these from DatabricksCPUTests to prevent E2E test failures.
* fix: Master release bug fixes - Handle retired Azure Maps Spatial API (CheckPointInPolygon throws on transform) - Remove AzMapsPointInPolygonSuite test class and add fuzzing exemptions - Update Language API version from 2022-10-01-preview to 2024-11-01 - Fix PEP 440 Python wheel version normalization (lowercase + local version) - Fix conda environment activation on Linux (use conda run) See: https://azure.microsoft.com/en-us/updates/v2/azure-maps-creator-services-retirement-on-30-september-2025 * test: Exclude geospatial notebooks from E2E tests Azure Maps Spatial API was retired on 9/30/2025. The notebooks 'Quickstart - Flooding Risk.ipynb' and 'Geospatial Services.ipynb' use CheckPointInPolygon which calls this retired API. Exclude these from DatabricksCPUTests to prevent E2E test failures.
Summary
Backports critical bug fixes from the Spark 4.0 release testing to master.
Changes
1. Azure Maps Spatial API Retired (9/30/2025)
UnsupportedOperationExceptionontransform()AzMapsPointInPolygonSuitetest classCheckPointInPolygon2. PEP 440 Python Version Normalization
pythonizedVersionnow uses+local version separator and.toLowerCase()to match pip/wheel filename normalization3. Conda Environment Activation
activateCondaEnvnow usesconda runon Linux to ensure correct environment4. Language API Version Update
2022-10-01-previewto2024-11-015. R Tests Local Jar Loading
Testing
Verified against spark4.0 branch where these fixes have passed CI.
Related