Skip to content
Snippets Groups Projects
Commit ecdc1879 authored by Pavel Semyonov's avatar Pavel Semyonov Committed by Kirill Yukhin
Browse files

Fix line length

NO_CHANGELOG=changelog
NO_DOC=changelog
NO_TEST=changelog
parent baa69102
No related branches found
No related tags found
No related merge requests found
......@@ -3,5 +3,5 @@
* **[Breaking change]** Now the log message contains the name of a module from
which the logging function was called (gh-3211).
* Now the log level can be set for specific modules using `log.cfg{modules = {...}}` or
`box.cfg{log_modules = {...}}` (gh-3211).
* Now the log level can be set for specific modules using `log.cfg{modules = {...}}`
or `box.cfg{log_modules = {...}}` (gh-3211).
## bugfix/sql
* Now the `ROUND()` functions works correctly on arguments with big precision (gh-6650).
* Now the `ROUND()` functions works correctly on arguments with big precision
(gh-6650).
## feature/lua/http client
* Added a new option `params` to add query parameters to URI using a Lua table.
These parameters are encoded to a query string and passed to the HTTP request (gh-6832).
These parameters are encoded to a query string and passed to the HTTP request
(gh-6832).
## feature/lua/http client
* Added a new method `response:decode()`. It decodes an HTTP response body to
a Lua object. The decoding result depends on the response content type. The following
content types are supported by default: `application/json`, `application/yaml`,
`application/msgpack`. Users can define decoding rules for other content types
by writing their own decoding functions. (gh-6833).
a Lua object. The decoding result depends on the response content type. The
following content types are supported by default: `application/json`,
`application/yaml`, `application/msgpack`. Users can define decoding rules for
other content types by writing their own decoding functions (gh-6833).
## feature/lua/http client
* Now the HTTP client is able to encode Lua objects automatically when it is possible.
The encoding format depends on the request content type. The following
content types are supported by default: `application/json`, `application/yaml`,
`application/msgpack`. Users can define encoding rules for other content types
by writing their own encoding functions. (gh-6833).
* Now the HTTP client is able to encode Lua objects automatically when it is
possible. The encoding format depends on the request content type.
The following content types are supported by default: `application/json`,
`application/yaml`, `application/msgpack`. Users can define encoding rules
for other content types by writing their own encoding functions (gh-6833).
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment