Vlastimil Zíma

Results 72 issues of Vlastimil Zíma

### Describe the bug After upgrade of discourse to `2.8.14~ynh2`, it's umpossible to login to the discourse using LDAP provider. ### Context - Hardware: *VPS bought online* - YunoHost version:...

### Describe the bug LDAP plugin fails to create new discourse users. Login to existing users works correctly. ### Context - Hardware: VPS - YunoHost version: 11.1.13 - I have...

I used a `customise_sources` in pydantic V1 to pass a custom config file and recently discovered that this no longer works under pydantic V2. ### MWE pydantic V1 In pydantic...

V3

I run into a serious problem with Discourse login using LDAP. When a new user tries to login, he is redirected back to a login page without any message. Logs...

`pycountry.countries.search_fuzzy('')` returns all countries in somewhat random order. I would expect either an error or an empty result set. Not sure which one is better.

I've stumbled upon #18 so I tried to resolve the issue based on suggestions provided there. Known limitations: `search_fuzzy` only works for country names. It should be quite easy to...

In Django, e.g. forms, it is common to validate transformed, not raw, values. It's quite beneficial, because validation of raw values often requires their transformation anyway.

We have a `DictSetting` and a `NestedDictSetting`, but we lack a setting which would define a dictionary with specific values, but various keys, such as `CACHES` and `DATABASES`. I suggest...

Trying to implement a `MappingSetting` (#94), we encountered a problems with validation of a custom nested settings. Current implementation relies on exceptions for `NestedListSetting` and `NestedDictSetting` in [`Setting.raw_value`](/pawamoy/django-appsettings/blob/master/src/appsettings/settings.py#L123-L142). We need...

Using a settings in an annotated code may cause mypy to complain about their API ``` from appsettings import AppSettings, ListSetting class FooSettings(AppSettings): a_list = ListSetting() # mypy complains: error:...