Kim Wittenburg

Results 15 issues of Kim Wittenburg

Hey, I just discovered this project. Very cool. Is there a way to add captions to images (e.g. a title or some metadata)? I saw that in the `template.go` there...

### Terraform CLI and Provider Versions ``` Terraform v1.1.9 on darwin_amd64 + provider registry.terraform.io/hashicorp/dns v3.2.3 ``` ### Terraform Configuration ```terraform terraform { required_version = ">= 1.1.9" required_providers { dns =...

bug

Sometimes a database schema changes drastically. In those cases it might be simpler to migrate all existing data according to some rules instead of dealing with two different kinds of...

enhancement

The workflows should [automatically](https://github.com/marketplace/actions/automatic-releases) publish tagged versions and mark them as pre-release if appropriate.

enhancement

Motor-ODM should support creating views. A `View` class could be a subclass of `Document` supporting the respective keys in the `Mongo` class. The creation of a view should happen in...

enhancement

Index Generation (#4), Schema Validation (#5) and Migrations (#12) usually happen outside of the standard application context (normally once on startup or manually at some time). To simplify this process...

enhancement

The documentation should include a guide how to use Motor-ODM.

documentation

In a similar way that indexes and validation can be implemented it should be possible to automatically create a capped collection.

enhancement

Pydantic supports the generation of JSON Schema. This can be used to automatically support the validation of collections. The implementation should support the following: - Enabling/disabling validation via a `validate`...

enhancement

Mongo collections can contain documents of different shapes. Polymorphic models implement support for having multiple models in one collection. This comes with the following restrictions: - The Collection name must...

enhancement