Jamie Neil
Jamie Neil
Docs (https://buildkite.com/docs/agent/v3/plugins#plugin-sources) describe a short form of the github plugin source (e.g. foo/bar#baz = https://github.com/foo/bar-buildkite-plugin.git#baz), however this doesn't work with a branch containing a slash: ``` - label: "Deploy" plugins:...
If I create an input schema from a model: ```python class Foo(models.Model): id = models.UUIDField(primary_key=True, default=uuid4, editable=False) name = models.TextField() bar = models.ForeignKey(Bar) class FooInSchema(ModelSchema): class Meta: model = Foo...
**Describe the bug** Filtering docs (https://django-ninja.dev/guides/input/filtering/) describe passing q string to Field definition: ```python class BookFilterSchema(FilterSchema): name: Optional[str] = Field(None, q='name__icontains') ``` I had this working fine, but following package...
**Describe the bug** Given a model field: ```Python description = models.TextField(blank=True) ``` `ModelSchema` treats it as an optional field (which is I guess correct), but doesn't default it to an...