Age | Commit message (Collapse) | Author | Files | Lines | |
---|---|---|---|---|---|
2019-02-07 | 1.7.1-1 tag updated | Andrei Belov | 1 | -1/+1 | |
2019-02-07 | Packages: removed duplicate entry of unit-python3.7 changelog. | Andrei Belov | 1 | -13/+0 | |
2019-02-07 | Added tag 1.7.1-1 for changeset 79af31a77bfe | Andrei Belov | 1 | -0/+1 | |
2019-02-07 | Merged with the default branch. | Andrei Belov | 18 | -24/+98 | |
2019-02-07 | Added tag 1.7.1 for changeset 0f04ef991fbc | Valentin Bartenev | 1 | -0/+1 | |
2019-02-07 | Generated Dockerfiles for Unit 1.7.1.1.7.1 | Valentin Bartenev | 9 | -9/+9 | |
2019-02-07 | Added version 1.7.1 CHANGES. | Valentin Bartenev | 2 | -0/+52 | |
2019-02-07 | Rejecting requests with invalid "Content-Length". | Valentin Bartenev | 1 | -3/+9 | |
2019-01-28 | Packages: reverted abb8cfb421f6 as it is no longer needed. | Andrei Belov | 2 | -4/+2 | |
The fix has arrived in 1e802c31bbd9. | |||||
2019-01-21 | Go: fixed module installation, broken in ed8b1aaefdd1. | Alexander Borisov | 1 | -1/+1 | |
Added the nxt_unit_version.h dependency. This closes #214 issue on GitHub. | |||||
2019-01-18 | Testing correct value. | Igor Sysoev | 1 | -1/+1 | |
2019-01-09 | Year 2019. | Valentin Bartenev | 2 | -8/+10 | |
2018-12-27 | Packages: Ubuntu 18.10 "cosmic" support added. | Andrei Belov | 5 | -1/+89 | |
2018-12-27 | Packages: Ubuntu 18.10 "cosmic" support added. | Andrei Belov | 5 | -1/+89 | |
2018-12-27 | Packages: URL fixed in examples to work with latest curl. | Andrei Belov | 22 | -22/+22 | |
2018-12-27 | Packages: URL fixed in examples to work with latest curl. | Andrei Belov | 22 | -22/+22 | |
2019-02-07 | Version bump. | Valentin Bartenev | 1 | -2/+2 | |
2018-12-20 | 1.7-1 tag updated | Andrei Belov | 1 | -1/+1 | |
2018-12-20 | Packages: fixed unit-go build broken in ed8b1aaefdd1.1.7-1 | Andrei Belov | 2 | -2/+4 | |
2018-12-20 | Added tag 1.7-1 for changeset 9d123bcfcc3d | Andrei Belov | 1 | -0/+1 | |
2018-12-20 | Merged with the default branch. | Andrei Belov | 80 | -341/+1334 | |
2018-12-20 | Added tag 1.7 for changeset 784b45adb0fe | Valentin Bartenev | 1 | -0/+1 | |
2018-12-20 | Generated Dockerfiles for Unit 1.7.1.7 | Valentin Bartenev | 9 | -9/+9 | |
2018-12-20 | Added version 1.7 CHANGES. | Valentin Bartenev | 2 | -0/+135 | |
2018-12-20 | Fixed style in CHANGES. | Valentin Bartenev | 2 | -4/+4 | |
2018-12-20 | Python: fixed error reporting on initialization of applications. | Valentin Bartenev | 1 | -11/+10 | |
PyErr_Print() writes traceback to "sys.stderr", which is a file object that can buffer the output. If the process exits immediately, the buffer can be destroyed before flushing to the log. As a result, the user doesn't see the traceback. Now Py_Finalize() is also called in case of any errors during initialization. It finalizes the interpreter and flushes all data. | |||||
2018-12-20 | Python: cleanup of nxt_python_init(). | Valentin Bartenev | 1 | -10/+3 | |
- Removed surplus NULL assignments; - Added missing nxt_slow_path(); - Style cleanup. | |||||
2018-12-20 | Python: fixed a typo in path error message. | Artem Konev | 1 | -1/+1 | |
2018-12-19 | Python: replaced PyErr_PrintEx(1) with PyErr_Print(). | Valentin Bartenev | 1 | -4/+4 | |
These function calls are equivalent. No functional changes. | |||||
2018-12-19 | Node.js: removed value checking for headers. | Alexander Borisov | 1 | -8/+0 | |
2018-12-19 | Node.js: removed unused _implicitHeader() function. | Alexander Borisov | 1 | -5/+0 | |
2018-12-19 | Node.js: added check for libunit version at compile time. | Alexander Borisov | 4 | -8/+26 | |
2018-12-19 | libunit: added generation of version header file. | Alexander Borisov | 4 | -5/+18 | |
2018-12-19 | Node.js: checking for exception after running JS code from C++. | Alexander Borisov | 1 | -3/+20 | |
2018-12-19 | Node.js: checking uniqueness of HTTP headers for different case. | Alexander Borisov | 2 | -24/+62 | |
2018-12-19 | Node.js: calling write callback asynchronously. | Alexander Borisov | 1 | -1/+13 | |
2018-12-19 | Node.js: style fixes. | Alexander Borisov | 1 | -8/+10 | |
No functional changes. | |||||
2018-12-19 | Node.js: changed the unit-http socket constructor. | Alexander Borisov | 1 | -5/+10 | |
Third-party file descriptors are not supported. Socket "readable" and "writable" options are set true by default. | |||||
2018-12-19 | Node.js: napi_call_function() replaced with napi_make_callback(). | Alexander Borisov | 2 | -27/+63 | |
The sequence of napi_open_callback_scope(), napi_call_function(), and napi_close_callback_scope() functions calls executes the provided JS code and all functions enqueued by process.nextTick() and Promises during this execution. | |||||
2018-12-19 | Node.js: changed the 'data' event calling sequence for the request. | Alexander Borisov | 1 | -10/+30 | |
The problem is caused by Promises' inconsistency. The 'date' event could have been triggered before the user has started listening for it. To resolve the issue, we override the 'on' method of the request's emitter. | |||||
2018-12-19 | Node.js: buffering HTTP headers before writing the body. | Alexander Borisov | 1 | -10/+13 | |
2018-12-12 | Node.js: removed unused dependency. | Valentin Bartenev | 1 | -4/+1 | |
2018-12-12 | Node.js: fixed global install in some cases. | Valentin Bartenev | 1 | -1/+1 | |
By default "npm install" switches to non-privileged user to run package scripts if it is invoked by root. As a result it may prevent node-gyp from writing to package directory and break installation of the module. To disable this switching the --unsafe-perm flag is added. | |||||
2018-12-11 | Tests: more Node.js tests. | Andrey Zelenkov | 11 | -2/+200 | |
2018-11-28 | Tests: PHP directives "disable_classes" and "disable_functions". | Andrey Zelenkov | 3 | -0/+118 | |
2018-12-04 | Tests: fixed test_node_application_write_callback. | Andrey Zelenkov | 2 | -3/+9 | |
Fixed the write() callback order test. Also introduced a separate test to verify the callback call itself. | |||||
2018-12-04 | Ruby: rpath made optional. | Valentin Bartenev | 1 | -3/+22 | |
In most cases it is not needed because Ruby libraries are in the default path. At the same time, rpath pointing to the default path is prohibited by rpmbuild on Fedora. This is related to issue #87 on GitHub. | |||||
2018-11-29 | Packages: made unit-go architecture-dependent. | Andrei Belov | 9 | -137/+2 | |
This closes #172 issue on GitHub. | |||||
2018-11-27 | PHP: fixed "disable_functions" and "disable_classes" options. | Valentin Bartenev | 1 | -10/+87 | |
It turned out they need additional processing to work. This closes #183 issue on GitHub. | |||||
2018-11-26 | Packages: added strict version dependency for unit-dev/unit-devel. | Andrei Belov | 2 | -1/+3 | |