File tree Expand file tree Collapse file tree 6 files changed +35
-6
lines changed Expand file tree Collapse file tree 6 files changed +35
-6
lines changed Original file line number Diff line number Diff line change @@ -4,6 +4,15 @@ Downloads & Release History
4
4
1 . [ Binaries of Releases] ( http://sourceforge.net/projects/nginx-clojure/files/ )
5
5
1 . [ Sources of Releases] ( https://github.com/nginx-clojure/nginx-clojure/releases )
6
6
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
+
7
16
## 0.5.1 (2019-11-23)
8
17
9
18
1 . Bug Fix: Connection hangs with header filter at thread-pool mode #209 #153
Original file line number Diff line number Diff line change 5
5
< li > < a href ="https://github.com/nginx-clojure/nginx-clojure/releases "> Sources of Releases</ a > </ li >
6
6
</ ol >
7
7
< 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 & 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 >
8
18
< 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 >
9
19
< ol >
10
20
< li > Bug Fix: Connection hangs with header filter at thread-pool mode #209 #153</ li >
Original file line number Diff line number Diff line change @@ -4,7 +4,7 @@ Quick Start
4
4
Installation
5
5
--------------
6
6
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/ ) .
8
8
1 . Unzip the zip file downloaded then rename the file ` nginx-${os-arc} ` to ` nginx ` , eg. for linux is ` nginx-linux-x64 `
9
9
10
10
> If you want to compile it with your own nginx please check [ HERE] ( installation.html )
@@ -140,7 +140,7 @@ Start up
140
140
141
141
``` nginx
142
142
143
- $ cd nginx-clojure-0.5.0
143
+ $ cd nginx-clojure-0.5.2
144
144
$ ./nginx
145
145
```
146
146
If everything is ok, we can access our first http service by this url
Original file line number Diff line number Diff line change 3
3
< h2 >
4
4
< a id ="user-content-installation " class ="anchor " href ="#installation " aria-hidden ="true "> < span aria-hidden ="true " class ="octicon octicon-link "> </ span > </ a > Installation</ h2 >
5
5
< 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 >
7
7
< 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 >
8
8
</ li >
9
9
</ ol >
134
134
< h2 >
135
135
< 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 >
136
136
< 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
138
138
$ ./< span class ="pl-k "> nginx</ span > </ pre > </ div >
139
139
< p > If everything is ok, we can access our first http service by this url</ p >
140
140
< div class ="highlight highlight-source-nginx "> < pre > < span class ="pl-c "> ### For Clojure</ span >
Original file line number Diff line number Diff line change @@ -107,6 +107,16 @@ <h1>
107
107
< li > < a href ="https://github.com/nginx-clojure/nginx-clojure/releases "> Sources of Releases</ a > </ li >
108
108
</ ol >
109
109
< 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 & 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 >
110
120
< 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 >
111
121
< ol >
112
122
< li > Bug Fix: Connection hangs with header filter at thread-pool mode #209 #153</ li >
Original file line number Diff line number Diff line change 105
105
< h2 >
106
106
< a id ="user-content-installation " class ="anchor " href ="#installation " aria-hidden ="true "> < span aria-hidden ="true " class ="octicon octicon-link "> </ span > </ a > Installation</ h2 >
107
107
< 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 >
109
109
< 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 >
110
110
</ li >
111
111
</ ol >
236
236
< h2 >
237
237
< 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 >
238
238
< 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
240
240
$ ./< span class ="pl-k "> nginx</ span > </ pre > </ div >
241
241
< p > If everything is ok, we can access our first http service by this url</ p >
242
242
< div class ="highlight highlight-source-nginx "> < pre > < span class ="pl-c "> ### For Clojure</ span >
You can’t perform that action at this time.
0 commit comments