Results 7 issues of msmerc

I've noticed that `Iterators.mergeSorted()` is unstable. So for example if I have arrays: `[A_1, B_1, C_1]` `[A_2, B_2, C_2]` (where the comparator looks only at the letter), I'd like the...

type=enhancement
package=collect
status=triaged
P3

I'm trying to get Retrofit to work with polymorphic types, something like this: ```java public static interface Vehicle { } public static class Car implements Vehicle { @JsonProperty("type") public String...

Right now you can configure the exporter to monitor specific collections, but this is verbose if you want to monitor all the collections but only in a certain database. Would...

enhancement
community
good first issue

I'm trying to consolidate some my annotations like so: ```java @Retention(RetentionPolicy.RUNTIME) @JacksonAnnotationsInside @JsonProperty("_id") @JsonInclude(JsonInclude.Include.NON_NULL) //Unfortunately immutables has no equivalent of @JacksonAnnotationsInside, so the following won't work: @Nullable @Value.Auxiliary @Value.Redacted public...

enhancement

## Description `ChangeLogRuntimeImpl` assumes that a `@ChangeUnit` has constructors and that the first constructor is the one it should use. If this is the case then the ## PRIORITY Minor...

If we have an API definition like so: ``` components: schemas: Foo: type: object properties: foo: type: string Bar: type: object properties: bar: type: string Schema: oneOf: - $ref: '#/components/schemas/Foo'...

I have a really simple spring application that's misconfigured: ```java @SpringBootApplication() public class SimpleApplication implements CommandLineRunner { public static void main(String[] args) { var ctx = SpringApplication.run(SimpleApplication.class, args); System.exit(SpringApplication.exit(ctx)); }...

type: bug