Results 10 issues of Sergey Okatov

Now I see the list of supported mime-types: ```kotlin enum class MimeType(val mimeText: String, val isBinary: Boolean, val extension: String) { PLAIN("text/plain", false, "txt"), HTML("text/html", false, "html"), CSS("text/css", false, "css"),...

enhancement

Please, add these two platforms to the build

Please, add support for linuxX64 platform. I have checked all tests are passing properly. Just add it in kotlin.gradle.kts.

Please accept this pull request. It includes the following changes 1. Native platforms are added to build.gradle 2. Runner environment is changed to macos to provide Apple's native platforms builds...

I'm trying to generate header file for a test with async-ffi crate and getting such a result: ```h enum FfiPoll_u32_Tag { Ready_u32, Pending_u32, Panicked_u32, }; typedef uint8_t FfiPoll_u32_Tag; typedef struct...

Elassandra contains both Cassandra and ElasticSearch databases, so they both require migrations. The current project is the closest one capable to provide both types of migrations. For that purpose I...

We plan to use cassandra migrations in different packages. Right now this tool does not allow that due to the following: 1. This package has no basePackage option. Here in...

enhancement

The following code: ``` php

The following code yields an unexpected behavior: ``` html+php public function getCity() { return $this->hasOne(Cities::className(), ['id' => 'city_id']) ->via('orderPts',function($q){ $q->andWhere(['order_pts.idx' => 1]); }) } ``` The problem is due to...

type:bug

### Describe the bug I use docker-compose file with the following content: ```yaml fluent-bit: container_name: fluent-bit image: fluent/fluent-bit ports: - "24224:24224" - "24224:24224/udp" - "2020:2020" environment: - opensearch_host=opensearch - opensearch_user=admin...

bug