From 782654083c1f553c0c3dc0aa6704eec8a44c1292 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?agentzh=20=28=E7=AB=A0=E4=BA=A6=E6=98=A5=29?= Date: Sat, 17 Sep 2011 12:59:11 +0800 Subject: [PATCH] releng for v0.1.1. --- README | 25 +++++++++++++++++++++++-- README.markdown | 14 +++++++++++++- doc/HttpDrizzleModule.wiki | 12 +++++++++++- 3 files changed, 47 insertions(+), 4 deletions(-) diff --git a/README b/README index b3f1605..2c598fd 100644 --- a/README +++ b/README @@ -10,9 +10,9 @@ Status LineZing site (). Version - This document describes drizzle-nginx-module v0.1.1rc4 + This document describes ngx_drizzle v0.1.1 () - released on 23 August 2011. + released on 17 September 2011. Synopsis http { @@ -657,6 +657,27 @@ TODO 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 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 * chaoslawful (王晓哲) diff --git a/README.markdown b/README.markdown index fe181f0..b8283ed 100644 --- a/README.markdown +++ b/README.markdown @@ -13,7 +13,7 @@ This module is already production ready and is powering [the Taobao LineZing sit 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 ======== @@ -649,6 +649,18 @@ TODO * 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. +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 ======= diff --git a/doc/HttpDrizzleModule.wiki b/doc/HttpDrizzleModule.wiki index 208139a..99da7e5 100644 --- a/doc/HttpDrizzleModule.wiki +++ b/doc/HttpDrizzleModule.wiki @@ -10,7 +10,7 @@ This module is already production ready and is powering [http://lz.taobao.com th = 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 = @@ -611,6 +611,16 @@ Because a single nginx server (by default, localhost:1984) is used * add Unix domain socket support in the drizzle_server 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. += 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 --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 = * chaoslawful (王晓哲)