Skip to content

Commit

Permalink
releng for v0.1.1.
Browse files Browse the repository at this point in the history
  • Loading branch information
agentzh committed Sep 17, 2011
1 parent e228ad7 commit 7826540
Show file tree
Hide file tree
Showing 3 changed files with 47 additions and 4 deletions.
25 changes: 23 additions & 2 deletions README
Expand Up @@ -10,9 +10,9 @@ Status
LineZing site (<http://lz.taobao.com>). LineZing site (<http://lz.taobao.com>).


Version Version
This document describes drizzle-nginx-module v0.1.1rc4 This document describes ngx_drizzle v0.1.1
(<https://github.com/chaoslawful/drizzle-nginx-module/downloads>) (<https://github.com/chaoslawful/drizzle-nginx-module/downloads>)
released on 23 August 2011. released on 17 September 2011.


Synopsis Synopsis
http { http {
Expand Down Expand Up @@ -657,6 +657,27 @@ TODO
SQL injections. There will also be an option ("strict=no") to SQL injections. There will also be an option ("strict=no") to
disable such checks. disable such checks.


Changes
v0.1.1
* fixed segmentation faults on 32-bit systems. thanks @魏世江 and
@stefanli for reporting this issue.

* documented the $drizzle_thread_id variable.

* added lots of debug outputs (enabled by the "--with-debug" option
while building Nginx or OpenResty), inspired by github issue #10.

* fixed issues regarding defining global variables in C header files:
we should have defined "rds_rough_col_type_t" as a type rather than
a global variable. thanks @姜大炮.

* documented the python -> python3 pitfall while building libdrizzle
1.0 on at least ArchLinux.

* fixed the automatic libdrizzle searching algorithm in the config
file: now we should look under "libdrizzle-1.0/" instead. thanks 支家乐
(Calio) for reporting this issue.

Authors Authors
* chaoslawful (王晓哲) <chaoslawful at gmail dot com> * chaoslawful (王晓哲) <chaoslawful at gmail dot com>


Expand Down
14 changes: 13 additions & 1 deletion README.markdown
Expand Up @@ -13,7 +13,7 @@ This module is already production ready and is powering [the Taobao LineZing sit
Version Version
======= =======


This document describes drizzle-nginx-module [v0.1.1rc4](https://github.com/chaoslawful/drizzle-nginx-module/downloads) released on 23 August 2011. This document describes ngx_drizzle [v0.1.1](https://github.com/chaoslawful/drizzle-nginx-module/downloads) released on 17 September 2011.


Synopsis Synopsis
======== ========
Expand Down Expand Up @@ -649,6 +649,18 @@ TODO
* add Unix domain socket support in the `drizzle_server` directive. * add Unix domain socket support in the `drizzle_server` directive.
* make the [drizzle_query](http://wiki.nginx.org/HttpDrizzleModule#drizzle_query) directive reject variables that have not been processed by a [drizzle_process](http://wiki.nginx.org/HttpDrizzleModule#drizzle_process) directive. This will pretect us from SQL injections. There will also be an option ("strict=no") to disable such checks. * make the [drizzle_query](http://wiki.nginx.org/HttpDrizzleModule#drizzle_query) directive reject variables that have not been processed by a [drizzle_process](http://wiki.nginx.org/HttpDrizzleModule#drizzle_process) directive. This will pretect us from SQL injections. There will also be an option ("strict=no") to disable such checks.


Changes
=======

v0.1.1
------
* fixed segmentation faults on 32-bit systems. thanks @魏世江 and @stefanli for reporting this issue.
* documented the [$drizzle_thread_id](http://wiki.nginx.org/HttpDrizzleModule#.24drizzle_thread_id) variable.
* added lots of debug outputs (enabled by the `--with-debug` option while building Nginx or OpenResty), inspired by github issue #10.
* fixed issues regarding defining global variables in C header files: we should have defined `rds_rough_col_type_t` as a type rather than a global variable. thanks @姜大炮.
* documented the python -> python3 pitfall while building libdrizzle 1.0 on at least ArchLinux.
* fixed the automatic libdrizzle searching algorithm in the config file: now we should look under `libdrizzle-1.0/` instead. thanks 支家乐 (Calio) for reporting this issue.

Authors Authors
======= =======


Expand Down
12 changes: 11 additions & 1 deletion doc/HttpDrizzleModule.wiki
Expand Up @@ -10,7 +10,7 @@ This module is already production ready and is powering [http://lz.taobao.com th


= Version = = Version =


This document describes drizzle-nginx-module [https://github.com/chaoslawful/drizzle-nginx-module/downloads v0.1.1rc4] released on 23 August 2011. This document describes ngx_drizzle [https://github.com/chaoslawful/drizzle-nginx-module/downloads v0.1.1] released on 17 September 2011.


= Synopsis = = Synopsis =


Expand Down Expand Up @@ -611,6 +611,16 @@ Because a single nginx server (by default, <code>localhost:1984</code>) is used
* add Unix domain socket support in the <code>drizzle_server</code> directive. * add Unix domain socket support in the <code>drizzle_server</code> directive.
* make the [[#drizzle_query|drizzle_query]] directive reject variables that have not been processed by a [[#drizzle_process|drizzle_process]] directive. This will pretect us from SQL injections. There will also be an option ("strict=no") to disable such checks. * make the [[#drizzle_query|drizzle_query]] directive reject variables that have not been processed by a [[#drizzle_process|drizzle_process]] directive. This will pretect us from SQL injections. There will also be an option ("strict=no") to disable such checks.
= Changes =
== v0.1.1 ==
* fixed segmentation faults on 32-bit systems. thanks @魏世江 and @stefanli for reporting this issue.
* documented the [[#$drizzle_thread_id|$drizzle_thread_id]] variable.
* added lots of debug outputs (enabled by the <code>--with-debug</code> option while building Nginx or OpenResty), inspired by github issue #10.
* fixed issues regarding defining global variables in C header files: we should have defined <code>rds_rough_col_type_t</code> as a type rather than a global variable. thanks @姜大炮.
* documented the python -> python3 pitfall while building libdrizzle 1.0 on at least ArchLinux.
* fixed the automatic libdrizzle searching algorithm in the config file: now we should look under <code>libdrizzle-1.0/</code> instead. thanks 支家乐 (Calio) for reporting this issue.
= Authors = = Authors =
* chaoslawful (王晓哲) <chaoslawful at gmail dot com> * chaoslawful (王晓哲) <chaoslawful at gmail dot com>
Expand Down

0 comments on commit 7826540

Please sign in to comment.