After upgrading google-genai to v1.37, async users started seeing Unclosed client session and Unclosed connector warnings at shutdown. The root cause is that the async client holds an aiohttp session that needs an async context manager to close cleanly. A maintainer showed the correct pattern: async with genai.Client(...).aio. The reporter later confirmed the warnings were gone in v1.52.0.