ZbigniewRA
ZbigniewRA
This library has this great property that it can be used not only for strings. In fact it works for any Sequence of Hashable types. This is great, because it...
`post_migrate` handler `create_anonymous_user()` breaks when a migration that adds a field to the User model is rolled back. Bug is in this line: ``` User.objects.using(kwargs['using']).get(**lookup) ``` The problem is that...
In Conan 2.0 documentation page [self.cpp and self.cpp_info](https://docs.conan.io/en/2.0-alpha/reference/conanfile/other/cpp_info.html) the following sections are not clear to someone not familiar with Conan (like me): 1. ``` .builddirs Ordered list with build scripts...
Conan 2.0 documentation for [package_type](https://docs.conan.io/en/2.0-alpha/reference/conanfile/attributes.html#package-type) is not precise enough to actually inform users of the bahaviour. Things to improve: 1. For each `package_type` describe precisely how those map to requirement...
This PR builds on top of PR #800, which adds support for Django 4.1, 4.2, and Python 3.11. My additions: - Added support for newer Django versions, up to 5.0....
In Django 5.0, Django Admin adds `log_entries` QuerySet to the context. `django-xss-fuzzer` converts all QuerySets to lists, which causes Internal Server Error when that QuerySet is filtered inside `AdminLogNode`.
The following options added by default by mongobox are problematic: - `--nounixsocket` is not supported on Windows, - `--smallfiles` option was removed in MongoDB 4.2, (addressed in #17), - `--noprealloc`...
### Description When CMakeDeps is used for `pybind11` it generates the following in `pybind11_json-Target-release.cmake` (tested on Windows): ``` set_property(TARGET pybind11_json_DEPS_TARGET APPEND PROPERTY INTERFACE_LINK_LIBRARIES $ $ $) ``` As the name...
**Feature request** Metrics sent by Prometheus exporter are hard to use. For example for mount points `/`, `/var/tmp` and `/var-tmp` it will generate metrics like: - `glances_fs___percent` - `glances_fs__var_tmp_percent` -...
**Feature request** I needed to modify Prometheus exporter. It is not possible to register a new exporter with Glances however, so I had to patch Glances code itself. **Describe the...