<feed xmlns='http://www.w3.org/2005/Atom'>
<title>unit.git, branch 1.26.1</title>
<subtitle>Universal Web Application Server</subtitle>
<link rel='alternate' type='text/html' href='https://git.sigsegv.uk/unit.git/'/>
<entry>
<title>Generated Dockerfiles for Unit 1.26.1.</title>
<updated>2021-12-02T15:23:00+00:00</updated>
<author>
<name>Valentin Bartenev</name>
<email>vbart@nginx.com</email>
</author>
<published>2021-12-02T15:23:00+00:00</published>
<link rel='alternate' type='text/html' href='https://git.sigsegv.uk/unit.git/commit/?id=8b954d833110c70f641561fd141b27b2b72a5022'/>
<id>8b954d833110c70f641561fd141b27b2b72a5022</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>Added version 1.26.1 CHANGES.</title>
<updated>2021-12-02T15:22:57+00:00</updated>
<author>
<name>Valentin Bartenev</name>
<email>vbart@nginx.com</email>
</author>
<published>2021-12-02T15:22:57+00:00</published>
<link rel='alternate' type='text/html' href='https://git.sigsegv.uk/unit.git/commit/?id=02f24f695c73f89f12097c6541732403fa854eae'/>
<id>02f24f695c73f89f12097c6541732403fa854eae</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>Reordered changes for 1.26.1 by significance (subjective).</title>
<updated>2021-12-02T15:22:48+00:00</updated>
<author>
<name>Valentin Bartenev</name>
<email>vbart@nginx.com</email>
</author>
<published>2021-12-02T15:22:48+00:00</published>
<link rel='alternate' type='text/html' href='https://git.sigsegv.uk/unit.git/commit/?id=5212d60ccf06d128f758b56dc5f5dd0538f20d5d'/>
<id>5212d60ccf06d128f758b56dc5f5dd0538f20d5d</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>Fixed grammar in "changes.xml".</title>
<updated>2021-12-02T14:12:13+00:00</updated>
<author>
<name>Artem Konev</name>
<email>artem.konev@nginx.com</email>
</author>
<published>2021-12-02T14:12:13+00:00</published>
<link rel='alternate' type='text/html' href='https://git.sigsegv.uk/unit.git/commit/?id=d3d59249e6b9bdfb9435ab3e1ba053a381312b7e'/>
<id>d3d59249e6b9bdfb9435ab3e1ba053a381312b7e</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>Packages: added systemd service for debug binary.</title>
<updated>2021-12-02T05:52:52+00:00</updated>
<author>
<name>Andrei Belov</name>
<email>defan@nginx.com</email>
</author>
<published>2021-12-02T05:52:52+00:00</published>
<link rel='alternate' type='text/html' href='https://git.sigsegv.uk/unit.git/commit/?id=8aa40e5901d1f9d05c35ddb7b93c2df8328d3e60'/>
<id>8aa40e5901d1f9d05c35ddb7b93c2df8328d3e60</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>Disabling SCM_CREDS usage on DragonFly BSD.</title>
<updated>2021-12-01T15:06:38+00:00</updated>
<author>
<name>Max Romanov</name>
<email>max.romanov@nginx.com</email>
</author>
<published>2021-12-01T15:06:38+00:00</published>
<link rel='alternate' type='text/html' href='https://git.sigsegv.uk/unit.git/commit/?id=2d6e926a1def94e4def5b8f8da73078685626ff4'/>
<id>2d6e926a1def94e4def5b8f8da73078685626ff4</id>
<content type='text'>
DragonFly BSD supports SCM_CREDS and SCM_RIGHTS, but only the first control
message is passed correctly while the second one isn't processed by the kernel.

This closes #599 issue on GitHub.
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
DragonFly BSD supports SCM_CREDS and SCM_RIGHTS, but only the first control
message is passed correctly while the second one isn't processed by the kernel.

This closes #599 issue on GitHub.
</pre>
</div>
</content>
</entry>
<entry>
<title>Fixing prototype process crash.</title>
<updated>2021-12-01T15:05:50+00:00</updated>
<author>
<name>Max Romanov</name>
<email>max.romanov@nginx.com</email>
</author>
<published>2021-12-01T15:05:50+00:00</published>
<link rel='alternate' type='text/html' href='https://git.sigsegv.uk/unit.git/commit/?id=97e61aad736da5fe1ad136a1d3055e16698f7d2b'/>
<id>97e61aad736da5fe1ad136a1d3055e16698f7d2b</id>
<content type='text'>
A prototype stores linked application processes structures.  When an
application process terminates, it's removed from the list.  To avoid double
removal, the pointer to the next element should be set to NULL.

The issue was introduced in c8790d2a89bb.
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
A prototype stores linked application processes structures.  When an
application process terminates, it's removed from the list.  To avoid double
removal, the pointer to the next element should be set to NULL.

The issue was introduced in c8790d2a89bb.
</pre>
</div>
</content>
</entry>
<entry>
<title>Logging of the daemon version on startup.</title>
<updated>2021-12-01T14:09:02+00:00</updated>
<author>
<name>Valentin Bartenev</name>
<email>vbart@nginx.com</email>
</author>
<published>2021-12-01T14:09:02+00:00</published>
<link rel='alternate' type='text/html' href='https://git.sigsegv.uk/unit.git/commit/?id=b8ea9d34fdff699006ecfdbd948f113686d2dc0c'/>
<id>b8ea9d34fdff699006ecfdbd948f113686d2dc0c</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>Tests: fixed skipping tests with disabled OPcache.</title>
<updated>2021-12-01T11:25:34+00:00</updated>
<author>
<name>Andrei Zeliankou</name>
<email>zelenkov@nginx.com</email>
</author>
<published>2021-12-01T11:25:34+00:00</published>
<link rel='alternate' type='text/html' href='https://git.sigsegv.uk/unit.git/commit/?id=5e40c969c7c5553d9a2814fe472c71beb77e5e09'/>
<id>5e40c969c7c5553d9a2814fe472c71beb77e5e09</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>Docker: respect the binary from CMD in the entrypoint.</title>
<updated>2021-11-30T14:00:47+00:00</updated>
<author>
<name>Konstantin Pavlov</name>
<email>thresh@nginx.com</email>
</author>
<published>2021-11-30T14:00:47+00:00</published>
<link rel='alternate' type='text/html' href='https://git.sigsegv.uk/unit.git/commit/?id=380f2dc2bae72f259ed3c7dc11b4c52a3eb4c06b'/>
<id>380f2dc2bae72f259ed3c7dc11b4c52a3eb4c06b</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
</feed>
