Alexander Sedov

Results 6 issues of Alexander Sedov

The "contains" restriction was enhanced in 2019-09, please see https://json-schema.org/understanding-json-schema/reference/array.html#mincontains-maxcontains I can try to add this support myself and prepare a PR but please point me in the right direction.

I changed the default key bindings the next way ``` "keyBindings": { "core.open": ["Right", "Return"], "core.go.up": ["Left", "Backspace"], }, ``` Now, when I open etty (Cmd+O) and start to enter...

bug

Here is the case: ``` class Group(entity: Entity) : XdEntity(entity) { companion object : XdNaturalEntityType() { fun new() = new { this.resource = Resource.new() } } var resource by xdLink1(Resource,...

I would be helpfull to have a possibility to extract migrations from an IoC-container. It can be done by adding custom JavaMigrationResolver. So please make CassandraMigration.createMigrationResolver protected instead of private.

Turned out that - the plugin is not compatible with Gradle 7 because of missing input/output annotations for the `AjcTask` - bintray repository is no longer available In this PR,...

Here is how I create a client: ``` AthenaClient .builder() .region(Region.of(environment.aws.region)) .credentialsProvider(DefaultCredentialsProvider.create()) .overrideConfiguration { it.apiCallTimeout(Duration.ofMillis(environment.athena.executionTimeout.toLong())) // it.gzipEnabled(true) // it.totalExecutionTimeout(Duration.ofMillis(environment.athena.executionTimeout.toLong())) } .build() ``` Previously I could use the `gzipEnabled` property to...

feature-request
p2