<feed xmlns='http://www.w3.org/2005/Atom'>
<title>unit.git/src/nodejs/unit-http, branch 1.6-1</title>
<subtitle>Universal Web Application Server</subtitle>
<link rel='alternate' type='text/html' href='https://git.sigsegv.uk/unit.git/'/>
<entry>
<title>Node.js: npm package readme cleanup.</title>
<updated>2018-11-15T12:53:35+00:00</updated>
<author>
<name>Valentin Bartenev</name>
<email>vbart@nginx.com</email>
</author>
<published>2018-11-15T12:53:35+00:00</published>
<link rel='alternate' type='text/html' href='https://git.sigsegv.uk/unit.git/commit/?id=2b4d83cbd8a228b0004e3831c9d933400dede3c1'/>
<id>2b4d83cbd8a228b0004e3831c9d933400dede3c1</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>Node.js: res.write() must return a bool value.</title>
<updated>2018-11-15T11:42:51+00:00</updated>
<author>
<name>Alexander Borisov</name>
<email>alexander.borisov@nginx.com</email>
</author>
<published>2018-11-15T11:42:51+00:00</published>
<link rel='alternate' type='text/html' href='https://git.sigsegv.uk/unit.git/commit/?id=5c2021f8340566cbdac9dcc8e32c710d4b763a43'/>
<id>5c2021f8340566cbdac9dcc8e32c710d4b763a43</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>Node.js: fixed handling of response header fields.</title>
<updated>2018-11-15T12:21:52+00:00</updated>
<author>
<name>Alexander Borisov</name>
<email>alexander.borisov@nginx.com</email>
</author>
<published>2018-11-15T12:21:52+00:00</published>
<link rel='alternate' type='text/html' href='https://git.sigsegv.uk/unit.git/commit/?id=fb18a09cd748ff0107d4e27e514c9f5caf3aa5e6'/>
<id>fb18a09cd748ff0107d4e27e514c9f5caf3aa5e6</id>
<content type='text'>
This fixes two issues:

- values for mutiple header fields with the same name
  passed as arrays were converted to string;

- the type of field value wasn't preserved as required
  by specification.
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
This fixes two issues:

- values for mutiple header fields with the same name
  passed as arrays were converted to string;

- the type of field value wasn't preserved as required
  by specification.
</pre>
</div>
</content>
</entry>
<entry>
<title>Node.js: added correct exit processing.</title>
<updated>2018-11-15T12:39:34+00:00</updated>
<author>
<name>Alexander Borisov</name>
<email>alexander.borisov@nginx.com</email>
</author>
<published>2018-11-15T12:39:34+00:00</published>
<link rel='alternate' type='text/html' href='https://git.sigsegv.uk/unit.git/commit/?id=06b404feb17dec9e3a84da31e213f21a0a9b4846'/>
<id>06b404feb17dec9e3a84da31e213f21a0a9b4846</id>
<content type='text'>
Node.js processes didn't exit after the changes in b9f7635e6be2,
as the quit command from port wasn't handled by the module.
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Node.js processes didn't exit after the changes in b9f7635e6be2,
as the quit command from port wasn't handled by the module.
</pre>
</div>
</content>
</entry>
<entry>
<title>Node.js: added reference count increment for the Unit object.</title>
<updated>2018-11-15T12:24:45+00:00</updated>
<author>
<name>Alexander Borisov</name>
<email>alexander.borisov@nginx.com</email>
</author>
<published>2018-11-15T12:24:45+00:00</published>
<link rel='alternate' type='text/html' href='https://git.sigsegv.uk/unit.git/commit/?id=71f4cb91340b656397eaaa356755b4a1e31c8010'/>
<id>71f4cb91340b656397eaaa356755b4a1e31c8010</id>
<content type='text'>
We increase the number to the Unit object so that it lives forever.
This is necessary so that the garbage collector does not delete the Unit object.
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
We increase the number to the Unit object so that it lives forever.
This is necessary so that the garbage collector does not delete the Unit object.
</pre>
</div>
</content>
</entry>
<entry>
<title>Node.js: socket.js improvements.</title>
<updated>2018-11-06T16:04:01+00:00</updated>
<author>
<name>Andrey Zelenkov</name>
<email>zelenkov@nginx.com</email>
</author>
<published>2018-11-06T16:04:01+00:00</published>
<link rel='alternate' type='text/html' href='https://git.sigsegv.uk/unit.git/commit/?id=4a77c447babd494b66156c43796deabaa47697a3'/>
<id>4a77c447babd494b66156c43796deabaa47697a3</id>
<content type='text'>
- Fixed handling of the "options" parameter in Socket() constructor;
- Now the connect() method returns "this";
- Deduplicated the address() method;
- Added missing "callback" argument to the end() method;
- Now the destroy() method returns "this";
- Added "timeout" argument type check in the setTimeout() method.
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
- Fixed handling of the "options" parameter in Socket() constructor;
- Now the connect() method returns "this";
- Deduplicated the address() method;
- Added missing "callback" argument to the end() method;
- Now the destroy() method returns "this";
- Added "timeout" argument type check in the setTimeout() method.
</pre>
</div>
</content>
</entry>
<entry>
<title>Node.js: fixed typo in naming rawHeaders() method of request.</title>
<updated>2018-11-01T16:10:32+00:00</updated>
<author>
<name>Andrey Zelenkov</name>
<email>zelenkov@nginx.com</email>
</author>
<published>2018-11-01T16:10:32+00:00</published>
<link rel='alternate' type='text/html' href='https://git.sigsegv.uk/unit.git/commit/?id=b7442743cfdf52185f293c770a883f1467776c5e'/>
<id>b7442743cfdf52185f293c770a883f1467776c5e</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>Node.js: added async request execution.</title>
<updated>2018-10-31T12:51:51+00:00</updated>
<author>
<name>Alexander Borisov</name>
<email>alexander.borisov@nginx.com</email>
</author>
<published>2018-10-31T12:51:51+00:00</published>
<link rel='alternate' type='text/html' href='https://git.sigsegv.uk/unit.git/commit/?id=c838c3bd1580735e8020687f94e6307f13aba156'/>
<id>c838c3bd1580735e8020687f94e6307f13aba156</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>Node.js: additional type check for response.setHeader value.</title>
<updated>2018-10-24T13:21:53+00:00</updated>
<author>
<name>Alexander Borisov</name>
<email>alexander.borisov@nginx.com</email>
</author>
<published>2018-10-24T13:21:53+00:00</published>
<link rel='alternate' type='text/html' href='https://git.sigsegv.uk/unit.git/commit/?id=5b3d3e0a885614cbc7966bc1d4b73ba630caf1ed'/>
<id>5b3d3e0a885614cbc7966bc1d4b73ba630caf1ed</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>Added ability to publish Node.js module.</title>
<updated>2018-10-23T10:06:44+00:00</updated>
<author>
<name>Alexander Borisov</name>
<email>alexander.borisov@nginx.com</email>
</author>
<published>2018-10-23T10:06:44+00:00</published>
<link rel='alternate' type='text/html' href='https://git.sigsegv.uk/unit.git/commit/?id=780181412623c0dc9232fc7f56055b6e3312a319'/>
<id>780181412623c0dc9232fc7f56055b6e3312a319</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
</feed>
