Ping-Che Hsiao
Ping-Che Hsiao
### Issue type - Bug report ### cli53 version (cli53 --version) cli53 version 0.8.8 ### OS / Platform Ubuntu 16.04.2 LTS ### Steps to reproduce zone file ``` webserver 86400...
``` lua -- test.lua local fleece = require "fleece" local tbl = {1,2,3} local result = fleece.json(tbl) print(result) ``` It works just fine by /usr/bin/lua : > $ lua test.lua...
`deb-s3 show` is broken in `v1.10.0`, which works as a charm in `v0.9.3` Command: ``` deb-s3 show --bucket mybucket --s3-region ap-northeast-1 mypackage 1.1.0-0024 amd64 ``` Result: ``` /var/lib/gems/2.3.0/gems/deb-s3-0.10.0/lib/deb/s3/package.rb:138:in `generate': wrong...
In order to distinguish between zero value and missing field, pointer is sometimes used in body fields. For example, ```golang type InputBody struct { Quota *int64 `json:"quota" example:"1611198330"` } ```...
Currently, the `query` parameters are optional in the generated openapi docuemntation. However, some parameters are required in the API, and they are not suitable for `path`. It would be great...
> NFO: Process 1 has 1 messages, sending... > INFO: Sending messages queue, run #1: 1 message(s) left in queue. > ERROR: Unable to send message ID 1: {"reason":"BadDeviceToken"} (400)....
Safari push notification is basically based on APNS. The only difference is the format of JSON dictionary of notification body: ``` json { "aps": { "alert": { "title": "Flight A998...
According to Apple documentation, it does support multiplexing in its HTTP/2 connection. I think the transfer would be faster if it is used. Curl supports `CURLPIPE_MULTIPLEX` if `>= 7.43.0`.
Originally, this module does not support setting multiple tags for an operation. This PR introduces a new OperationOption that can be used to add arbitrary tags to an operation.
Although in OpenAPI, it supports multiple tags in the tags field of each path operation. However, only a single tag can be set using the `Group()` method. It would be...