"PydanticDeprecatedSince20" warning: "The `parse_obj` method is deprecated"

Seeing this warning a lot in our logs. Is there something we can or should configure/implement to use the proper Pydantic function here?

/Users/…/.venv/lib/python3.12/site-packages/temporalio/converter.py:1582: PydanticDeprecatedSince20: The parse_obj method is deprecated; use model_validate instead. Deprecated in Pydantic V2.0 to be removed in V3.0. See Pydantic V2 Migration Guide at Migration Guide - Pydantic
return getattr(hint, “parse_obj”)(value)