Victorien

Results 142 issues of Victorien

### Product versie / Product version latest ### Customer reference _No response_ ### Omschrijf het probleem / Describe the bug This part of the code in `evaluate_form_logic` seems off: https://github.com/open-formulieren/open-forms/blob/4734c038dc0c4e668da677ade5671e9867405b27/src/openforms/submissions/form_logic.py#L149-L159...

topic: form builder

And everything using our `get_function_type_hints()`.

bug V2

Basic use cases of deferred annotations currently work since https://github.com/pydantic/pydantic/pull/11991: ```python from pydantic import BaseModel class Model(BaseModel): a: Int Int = int Model.model_rebuild() # Ok ``` However, more complex use...

feature request

## Change Summary ## Related issue number ## Checklist * [ ] The pull request title is a good summary of the changes - it will be used in the...

relnotes-fix

## Change Summary ## Related issue number ## Checklist * [ ] The pull request title is a good summary of the changes - it will be used in the...

relnotes-ignore

### Initial Checks - [x] I have searched Google & GitHub for similar requests and couldn't find anything - [x] I have read and followed [the docs](https://docs.pydantic.dev) and still think...

feature request
feedback wanted

This will depend on the fate of [PEP 661](https://peps.python.org/pep-0661/). Things to consider: - We probably should push down constraints, e.g. `int | MISSING = Field(gt=1)` should be equivalent to `Annotated[int,...

feature request
deferred

Defining multiple serializers for the same field is currently unsupported. This was tracked in issue https://github.com/pydantic/pydantic/issues/5337. PR https://github.com/pydantic/pydantic/pull/5378 made it so that it would raise an error, but it wasn't...

feature request
feedback wanted
topic-serialization
topic-validators-serializers

### Initial Checks - [x] I have searched Google & GitHub for similar requests and couldn't find anything - [x] I have read and followed [the docs](https://docs.pydantic.dev) and still think...

feature request
topic-generics