kaxil opened a new pull request, #62817: URL: https://github.com/apache/airflow/pull/62817
## Summary RFC 3986 Section 3.1 defines URI scheme syntax as `ALPHA *( ALPHA / DIGIT / "+" / "-" / "." )`. The underscore in `pydantic_ai` is not allowed and triggers a validation warning: ``` WARNING - Connection schemes (type: pydantic_ai) shall not contain '_' according to RFC3986. ``` Renamed to `pydanticai` (no separator), consistent with existing Airflow providers like `openai` and `cohere`. ## Changes - `conn_type`: `pydantic_ai` -> `pydanticai` - `default_conn_name`: `pydantic_ai_default` -> `pydanticai_default` - Updated all example DAGs, docs, and tests to use the new names -- 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]
