Julio C. Galindo

Results 6 issues of Julio C. Galindo

```yaml - repo: https://github.com/avilaton/add-msg-issue-prefix-hook rev: v0.0.x hooks: - id: add-msg-issue-prefix args: - '--template=[{}]' - '--pattern=[a-zA-Z0-9]{1,10}-[0-9]{1,5}' - '--default=[NO-ISSUE]' - '--insert-after=^feat.?:|^fix.?:|^docs.?:|^style.?:|^refactor.?:|^test.?:|^chore.?:|^ci.?:|^build.?:|^perf.?:|^revert.?:' ``` `rev: v0.0.8` outputs -> `feat: [NO-ISSUE] commit message` `rev: v0.0.11`...

I faced this issue with Pydantic V2 and there is a simple workaround to it by passing the `pattern` Field parameter as schema extra: Ex: ```python class MyClass(SQLModel) id: str...

feature

# Intro OpenAPI generators have grom a lot by themselves and despite all comply with base OpenAPI specs, many have implemented extra features that would be good to have when...

feature
conflicts

After `pydantic` update to support Python 3.14, different declaration syntax were affected by the changed. I check and on `pydantic` side there is not changes on the resulting `FieldInfo` structure,...

bug

As a language feature for Python 3.12+ was introduced new type-alias definitions. [Reference here](https://typing.python.org/en/latest/spec/aliases.html) They are not working in `sqlmodel` hence this PR to support them.

feature