Jens Reimann
Jens Reimann
**Description** Running a container build with `podman build` works as expected, using `buildah bud` (which is being used by Red Hat's github action) fails due to missing files. **Steps to...
# Versions and Operating System - Kubernetes version: **Output of `kubectl version`:** ``` Client Version: v1.28.2 Kustomize Version: v5.0.4-0.20230601165947-6ce0bf390ce3 Server Version: v1.25.11+1485cc9 WARNING: version difference between client (1.28) and server...
# Versions and Operating System - Kubernetes version: **Output of `kubectl version`:** ``` Client Version: v1.28.2 Kustomize Version: v5.0.4-0.20230601165947-6ce0bf390ce3 Server Version: v1.25.11+1485cc9 WARNING: version difference between client (1.28) and server...
Parsing scores from the `cvelistV5` repository make some scores fail with: ``` unknown CVSS metric name: `E` ``` It looks like there's a todo remaining for this: https://github.com/rustsec/rustsec/blob/f79b59b45dc7b04f584c524b4c482dffce7f158a/cvss/src/v3.rs#L5 I might...
In some cases the tags should not be replaced, but kept as they are. This allows Closes: trunk-rs/trunk#742
In the documentation is says: > - The default repository is `https://crates.io/` But what if one doesn't use the default repository (https://doc.rust-lang.org/cargo/reference/specifying-dependencies.html#specifying-dependencies-from-other-registries)? Or what if one uses a git (or...
**Is your feature request related to a problem? Please describe.** Automating releases, using pre-releases (RCs) like `-alpha.1` doesn't allow to properly generate change logs that make sense to the user....
I need to create a reproducer, but I think there is a bug in the `use_drop` when the ref is placed in a nested context: ```rust #[function_component(Other)] fn other(props: &ChildrenProps)...
I am implementing a component consisting of two part: a toggle and some content. The content is shows using a portal. I do want to use `use_click_away`, but actually both...