PK
PK
### What happened? I noticed the `BrowserLink`s in all `HelpTooltip`s are not showing up anymore:   ### Relevant log output or stack trace ```shell There are no logs or...
Closes #15 When `isEnabledSwipe=true` instead of only allowing to swipe to `CLOSE_POSITION`, skip the `onTouchEvent`
Fixes #6785 Currently when importing e.g. an OpenAPI YAML, the `baseEnvironment` is not updated correctly. Its data is overwritten (not merged with the existing data, which is very annoying) and...
Fixes described problem in https://github.com/Kong/insomnia/issues/6785#issuecomment-2147209531 Currently when importing an OpenAPI spec, parameters in the path are converted to environment variables. This PR instead converts parameters in the path to actual...
## What's changed? - [x] Update kotlin-compiler dependencies to `2.2.21` - [x] Implement `JvmFirPipeline` to use current [K2 phased compiler API](https://github.com/JetBrains/kotlin/tree/1d471395dccaa748f1ae7ea6d02bb0461e57cca8/compiler/cli/src/org/jetbrains/kotlin/cli/pipeline) to generate `FirFile`s - [x] Update `KotlinIrTypeMapping`, `IrTreeVisitor`, `KotlinTypeIrSignatureBuilder`...
For Recipes like [RemoveBuildPlugin](https://github.com/openrewrite/rewrite/blob/main/rewrite-gradle/src/main/java/org/openrewrite/gradle/plugins/RemoveBuildPlugin.java) we can use MethodMatcher patterns like: - `RewriteGradleProject plugins(..)` - `PluginSpec id(..)` - ... To match e.g. plugins But for `build.gradle.kts` the `J.MethodInvocation.methodType` is simply `null`....
Closes #3220 I looked at how e.g. MQTT messages are converted via e.g. [StringMessageConverter](https://github.com/smallrye/smallrye-reactive-messaging/blob/main/smallrye-reactive-messaging-mqtt/src/main/java/io/smallrye/reactive/messaging/mqtt/converter/StringMessageConverter.java) and came up with the following changes: - Removed the String/generic JSON deserialization from `IncomingRabbitMQMessage.convertPayload` -...
Similiar to #465, it would be great if for the RabbitMQ connector we could automatically **deserialize a JSON Payload to a given complex object type**. Something like: ```java @Incoming("prices") public...