Samuel Colvin

Results 1016 comments of Samuel Colvin

That sounds like a different issue. This issue is about Config not being updated. Please can you explain what you're seeing with a reproducible example.

Confirmed, here's the simplest demo of the bug: ```py from typing import List from typing_extensions import Annotated from pydantic import BaseModel, Field B = Annotated[List[int], Field(max_items=2)] class CC(BaseModel): c: List[B]...

Is this related to #3641? How does the memory profile compare with v1.8.2? Can you provide a self contained, minimal example?

opposite problem, but might be worth looking at #3829 too.

Well without a clear culprit and even proposed solution, there's not much we can do for v1.10. The entire design has changed completely for V2 so I would hope this...

Please no more "me too" comments, use the emoji reactions. I acknowledge the problem, sorry for the slow response, see #1340. I agree the that the correct solution would be...

I've reviewed the PR #1611, and broadly it looks good, just a few things to fix. The biggest question is about whether this is a breaking change and needs to...

I think this overlaps a lot with #4216, but that solution is more complete, even that we're deferring to V2.