Cédric Belin

Results 30 issues of Cédric Belin

Like the GitHub "checks" badge, but for [Bitbucket](https://bitbucket.org). Not sure if this is possible... Bitbucket provides a dedicated REST API, it seems that we must get the more recent pipeline...

Dealing with callback-based APIs is harder than Promise-based ones when you need to compose multiple consecutive calls. So, it would be very cool to add all the functions from the...

I can't generate the documentation of [module-level fields](https://haxe.org/blog/module-level-fields/) no matter what I try. For this sample: ```haxe /** A sample typedef. **/ typedef SampleTypedef = { /** A sample field....

Nowadays, most package managers ([composer](https://getcomposer.org/doc/03-cli.md#outdated), [npm](https://docs.npmjs.com/cli/v7/commands/npm-outdated), [pub](https://dart.dev/tools/pub/cmd/pub-outdated), ...) include an `outdated` command that displays the packages of the current project which are outdated. It would be very useful to have...

```json "esdoc": "^1.1.0", "esdoc-ecmascript-proposal-plugin": "^1.0.0", "esdoc-standard-plugin": "^1.0.0" ``` I get the following error : `warning: could not parse the following code` When the parser encounter an optional `catch` binding: ```js...

I don't know exactly when it happened (i.e. which VSCode update broke this feature), but since some time, the dependency explorer doesn't display the project dependencies anymore. Only the Haxe...

An ISO date like `2000-13-48T00:00:00Z` or `2000-01-01T29:73:82Z` is invalid: the `DateTime.fromString()` method should throw an exception in this case. Instead, it returns a date where the timestamp is adjusted according...

The `DateTime.fromString()` method only allows ISO 8601 dates that have the following format: `YYYY-MM-DDThh:mm:ss[.SSS]Z` But it is **very common** to have dates that use a timezone offset, like `2020-04-24T16:20:07+02:00`. So...

I query an SQL Server instance through a MariaDB server (more on this: #133). When we call `insertOne` or `insertMany` methods, the generated SQL query use a `NULL` value for...

Some SQL statements are not yet implemented (cf. [`DISTINCT`](https://github.com/haxetink/tink_sql/issues/108)), and others will probably never be implemented (i.e. `SET foreign_key_checks = 0` or `ALTER TABLE my_table CONVERT TO CHARACTER SET utf8mb4...