nikhilnadig28 commented on issue #59259: URL: https://github.com/apache/airflow/issues/59259#issuecomment-3635268301
I've verified that my change is compatible with **apache-airflow-providers-google==19.2.0rc1**. ## Verification Summary ✅ **The RC version includes all changes from PR #58766** ### What I tested: 1. **Dependency Requirement**: Confirmed the RC correctly requires `google-cloud-pubsub>=2.24.0` (bumped from `>=2.21.3`) 2. **Code Presence**: Verified `enable_open_telemetry_tracing` parameter exists in the RC package at the correct locations 3. **Library Compatibility**: Tested that `PublisherOptions` accepts the `enable_open_telemetry_tracing` parameter with `google-cloud-pubsub==2.33.0` 4. **Backward Compatibility**: Parameter defaults to `False`, maintaining backward compatibility ### Test Results: ```python from google.cloud.pubsub_v1.types import PublisherOptions # Verified this works with google-cloud-pubsub>=2.24.0 opt = PublisherOptions(enable_open_telemetry_tracing=True) assert opt.enable_open_telemetry_tracing == True # ✅ Passes ``` The change is **non-breaking** (new optional parameter with safe default) and properly versioned. **Status**: ✅ Ready for release See full verification report: [markdown madness/airflow-pr-58766-rc-compatibility-test.md](https://github.com/nikhilnadig28/code/blob/main/markdown%20madness/airflow-pr-58766-rc-compatibility-test.md) -- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to the specific comment. To unsubscribe, e-mail: [email protected] For queries about this service, please contact Infrastructure at: [email protected]
