Skip to content

Commit f4a62cf

Browse files
committed
update for v0.5.2
1 parent 37b7677 commit f4a62cf

File tree

6 files changed

+35
-6
lines changed

6 files changed

+35
-6
lines changed

HISTORY.md

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,15 @@ Downloads & Release History
44
1. [Binaries of Releases](http://sourceforge.net/projects/nginx-clojure/files/)
55
1. [Sources of Releases](https://github.com/nginx-clojure/nginx-clojure/releases)
66

7+
## 0.5.2 (2020-12-23)
8+
9+
1. Bug Fix: #234 Try to fix no response when NGX_AGAIN return at next header filter
10+
1. Bug Fix: #233 Fix compiler warnings when there's no zlib found
11+
1. Enhancement: Delayed update to improve setVariable/set-ngx-var! performance at thread-pool mode
12+
1. Example Project: Add an example project for Jersey & Spring DI
13+
1. Example Project: Add example for integration with Spring framework
14+
1. Binaries Distribution: Built with Nginx v1.18.0
15+
716
## 0.5.1 (2019-11-23)
817

918
1. Bug Fix: Connection hangs with header filter at thread-pool mode #209 #153

HISTORY.md.html

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,16 @@ <h1>
55
<li><a href="https://github.com/nginx-clojure/nginx-clojure/releases">Sources of Releases</a></li>
66
</ol>
77
<h2>
8+
<a id="user-content-052-2020-12-23" class="anchor" href="#052-2020-12-23" aria-hidden="true"><span aria-hidden="true" class="octicon octicon-link"></span></a>0.5.2 (2020-12-23)</h2>
9+
<ol>
10+
<li>Bug Fix: #234 Try to fix no response when NGX_AGAIN return at next header filter</li>
11+
<li>Bug Fix: #233 Fix compiler warnings when there's no zlib found</li>
12+
<li>Enhancement: Delayed update to improve setVariable/set-ngx-var! performance at thread-pool mode</li>
13+
<li>Example Project: Add an example project for Jersey &amp; Spring DI</li>
14+
<li>Example Project: Add example for integration with Spring framework</li>
15+
<li>Binaries Distribution: Built with Nginx v1.18.0</li>
16+
</ol>
17+
<h2>
818
<a id="user-content-051-2019-11-23" class="anchor" href="#051-2019-11-23" aria-hidden="true"><span aria-hidden="true" class="octicon octicon-link"></span></a>0.5.1 (2019-11-23)</h2>
919
<ol>
1020
<li>Bug Fix: Connection hangs with header filter at thread-pool mode #209 #153</li>

QuickStart.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ Quick Start
44
Installation
55
--------------
66

7-
1. Download the latest binaries release v0.5.0 from [here](https://sourceforge.net/projects/nginx-clojure/files/).
7+
1. Download the latest binaries release v0.5.2 from [here](https://sourceforge.net/projects/nginx-clojure/files/).
88
1. Unzip the zip file downloaded then rename the file `nginx-${os-arc}` to `nginx`, eg. for linux is `nginx-linux-x64`
99

1010
>If you want to compile it with your own nginx please check [HERE](installation.html)
@@ -140,7 +140,7 @@ Start up
140140

141141
```nginx
142142
143-
$ cd nginx-clojure-0.5.0
143+
$ cd nginx-clojure-0.5.2
144144
$ ./nginx
145145
```
146146
If everything is ok, we can access our first http service by this url

QuickStart.md.html

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ <h1>
33
<h2>
44
<a id="user-content-installation" class="anchor" href="#installation" aria-hidden="true"><span aria-hidden="true" class="octicon octicon-link"></span></a>Installation</h2>
55
<ol>
6-
<li>Download the latest binaries release v0.5.0 from <a href="https://sourceforge.net/projects/nginx-clojure/files/" rel="nofollow">here</a>.</li>
6+
<li>Download the latest binaries release v0.5.2 from <a href="https://sourceforge.net/projects/nginx-clojure/files/" rel="nofollow">here</a>.</li>
77
<li>Unzip the zip file downloaded then rename the file <code>nginx-${os-arc}</code> to <code>nginx</code>, eg. for linux is <code>nginx-linux-x64</code>
88
</li>
99
</ol>
@@ -134,7 +134,7 @@ <h2>
134134
<h2>
135135
<a id="user-content-start-up" class="anchor" href="#start-up" aria-hidden="true"><span aria-hidden="true" class="octicon octicon-link"></span></a>Start up</h2>
136136
<div class="highlight highlight-source-nginx"><pre>
137-
$ <span class="pl-k">cd</span> nginx-clojure-0.5.0
137+
$ <span class="pl-k">cd</span> nginx-clojure-0.5.2
138138
$ ./<span class="pl-k">nginx</span></pre></div>
139139
<p>If everything is ok, we can access our first http service by this url</p>
140140
<div class="highlight highlight-source-nginx"><pre><span class="pl-c">### For Clojure</span>

downloads.html

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -107,6 +107,16 @@ <h1>
107107
<li><a href="https://github.com/nginx-clojure/nginx-clojure/releases">Sources of Releases</a></li>
108108
</ol>
109109
<h2>
110+
<a id="user-content-052-2020-12-23" class="anchor" href="#052-2020-12-23" aria-hidden="true"><span aria-hidden="true" class="octicon octicon-link"></span></a>0.5.2 (2020-12-23)</h2>
111+
<ol>
112+
<li>Bug Fix: #234 Try to fix no response when NGX_AGAIN return at next header filter</li>
113+
<li>Bug Fix: #233 Fix compiler warnings when there's no zlib found</li>
114+
<li>Enhancement: Delayed update to improve setVariable/set-ngx-var! performance at thread-pool mode</li>
115+
<li>Example Project: Add an example project for Jersey &amp; Spring DI</li>
116+
<li>Example Project: Add example for integration with Spring framework</li>
117+
<li>Binaries Distribution: Built with Nginx v1.18.0</li>
118+
</ol>
119+
<h2>
110120
<a id="user-content-051-2019-11-23" class="anchor" href="#051-2019-11-23" aria-hidden="true"><span aria-hidden="true" class="octicon octicon-link"></span></a>0.5.1 (2019-11-23)</h2>
111121
<ol>
112122
<li>Bug Fix: Connection hangs with header filter at thread-pool mode #209 #153</li>

quickstart.html

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -105,7 +105,7 @@ <h1>
105105
<h2>
106106
<a id="user-content-installation" class="anchor" href="#installation" aria-hidden="true"><span aria-hidden="true" class="octicon octicon-link"></span></a>Installation</h2>
107107
<ol>
108-
<li>Download the latest binaries release v0.5.0 from <a href="https://sourceforge.net/projects/nginx-clojure/files/" rel="nofollow">here</a>.</li>
108+
<li>Download the latest binaries release v0.5.2 from <a href="https://sourceforge.net/projects/nginx-clojure/files/" rel="nofollow">here</a>.</li>
109109
<li>Unzip the zip file downloaded then rename the file <code>nginx-${os-arc}</code> to <code>nginx</code>, eg. for linux is <code>nginx-linux-x64</code>
110110
</li>
111111
</ol>
@@ -236,7 +236,7 @@ <h2>
236236
<h2>
237237
<a id="user-content-start-up" class="anchor" href="#start-up" aria-hidden="true"><span aria-hidden="true" class="octicon octicon-link"></span></a>Start up</h2>
238238
<div class="highlight highlight-source-nginx"><pre>
239-
$ <span class="pl-k">cd</span> nginx-clojure-0.5.0
239+
$ <span class="pl-k">cd</span> nginx-clojure-0.5.2
240240
$ ./<span class="pl-k">nginx</span></pre></div>
241241
<p>If everything is ok, we can access our first http service by this url</p>
242242
<div class="highlight highlight-source-nginx"><pre><span class="pl-c">### For Clojure</span>

0 commit comments

Comments
 (0)