Martin Häusler

Results 30 issues of Martin Häusler

In Ktor, accessing the incoming call is easy: just use the `call` field. However, this field is not global, it is provided by the REST API builder. Assume you are...

design

I've just tried upgrading from strikt 0.33 to strikt 0.34. It's a kotlin-JVM project with Kotlin 1.6.10. In strikt 0.34, a second overload of the `IsNotNull` method was introduced: ```kotlin...

I've dealt with a case today where an `expectThat` statement actually caused an `OutOfMemoryError` because the subject was a rather large collection (several 100k elements). Strikt called `toString()` on it,...

Self-contained Test Case: ```kotlin import org.junit.Test import strikt.api.expectThat import strikt.assertions.any import strikt.assertions.isNotEmpty class AnyTest { @Test fun anyTest() { val strings = listOf() expectThat(strings).any { get { trim() }.isNotEmpty() }...

🦄 enhancement

For example, [`callsInPlace`](https://kotlinlang.org/api/latest/jvm/stdlib/kotlin.contracts/-contract-builder/calls-in-place.html) would be very useful (I assume that this is actually the case in strikt?). Maybe even [`implies`](https://kotlinlang.org/api/latest/jvm/stdlib/kotlin.contracts/-simple-effect/implies.html) for `.isNotNull()` checks, if it is possible. For example, I...

🦄 enhancement
⚗️ experimental

**Affects:** 5.3.19 --- The following exception appeared in our central error logging. I don't know what the input URL was exactly; unfortunately the following stack trace is all the information...

status: waiting-for-triage
in: web

Hi, first of all: thanks for making this tool and providing it to the community! I'm relatively new to the HDRP workflows in unity, and I stumbled across those things...

enhancement

I really love the power and simplicity of the redux dev tools. There's just one little thing that bugs me about it. I'm the kind of guy who has very...

feature

**What?** This PR adds the ability to start a read-only transaction, i.e. it adds support for the JDBC `setReadonly(boolean)` method *after* opening a JDBC connection. **Why?** When working with Spring...

enhancement:JDBC
waiting for feedback
needs rework

## What happened? I noticed that several important pieces of information are missing in the `VersionDetails` object: - the *author* of the commit (name, email) - the *date & time*...