You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@tomcat.apache.org by gl...@apache.org on 2003/06/10 15:37:10 UTC

cvs commit: jakarta-tomcat-connectors/jk/native CHANGES.txt

glenn       2003/06/10 06:37:10

  Modified:    jk/native CHANGES.txt
  Log:
  Update changes for mod_jk 1.2.4 release
  
  Revision  Changes    Path
  1.13      +16 -4     jakarta-tomcat-connectors/jk/native/CHANGES.txt
  
  Index: CHANGES.txt
  ===================================================================
  RCS file: /home/cvs/jakarta-tomcat-connectors/jk/native/CHANGES.txt,v
  retrieving revision 1.12
  retrieving revision 1.13
  diff -u -r1.12 -r1.13
  --- CHANGES.txt	16 Mar 2003 02:59:43 -0000	1.12
  +++ CHANGES.txt	10 Jun 2003 13:37:09 -0000	1.13
  @@ -1,6 +1,15 @@
   JAKARTA TOMCAT CONNECTORS (JK) CHANGELOG:			-*-text-*-
   Last modified at [$Date$]
   
  +Changes with JK 1.2.4
  +    * Fix use of libtool for Apache mod_jk builds with more recent
  +      versions of Apache 2.
  +      [jfclere]
  +    * Use reentrant version of strtok() for web server's which use
  +      threads. This fixes a thread safe bug under Apache 2 and the
  +      worker MPM.
  +      [glenn]
  +
   Changes with JK 1.2.3:
       * Add the ability to configure JkLog to pipe its log output to an
         executable such as Apache rotatelogs or cronolog.  Apache 2.0 only.
  @@ -11,13 +20,16 @@
         let Apache handle processing the error returned by Tomcat.
       * Added the load balancer sticky_session property. If set to 0
         requests with servlet SESSION ID's can be routed to any Tomcat
  -      worker. Default is 1, sessions are sticky. [glenn]
  +      worker. Default is 1, sessions are sticky.
  +      [glenn]
       * Cleaned up detection and reporting of aborted client connections.
         This cleanup also makes sure that mod_jk does not pass any requests
  -      on to Tomcat if the remote client aborted its connection. [glenn]
  +      on to Tomcat if the remote client aborted its connection.
  +      [glenn]
       * Fixed a bug in Apache 2.0 which caused a POST request forwarded to
         Tomcat to fail if it generated SSI directives which were post
  -      processed by mod_include. [glenn]
  +      processed by mod_include.
  +      [glenn]
       * Fixed a bug in JkRequestLogFormat when printing the request URI that
         could cause a URI with hex escapes sequences to be formatted wrong.
         [glenn]
  
  
  

---------------------------------------------------------------------
To unsubscribe, e-mail: tomcat-dev-unsubscribe@jakarta.apache.org
For additional commands, e-mail: tomcat-dev-help@jakarta.apache.org


Re: cvs commit: jakarta-tomcat-connectors/jk/native CHANGES.txt

Posted by Glenn Nielsen <gl...@mail.more.net>.
Nice catch.  Changes updated.

I will be sending out the release announcement shortly.

Thanks,

Glenn

Jess M. Holle wrote:
> Didn't 1.2.4 also fix the hook precedence for Apache 2 from 1.2.3 where 
> Alias and mod_jk did not get along?
> 
> [In my testing it sure fixed this and it seems it should go into the 
> change notes.]
> 
> -- 
> Jess Holle
> 
> glenn@apache.org wrote:
> 
>> glenn       2003/06/10 06:37:10
>>
>>  Modified:    jk/native CHANGES.txt
>>  Log:
>>  Update changes for mod_jk 1.2.4 release
>>  
>>  Revision  Changes    Path
>>  1.13      +16 -4     jakarta-tomcat-connectors/jk/native/CHANGES.txt
>>  
>>  Index: CHANGES.txt
>>  ===================================================================
>>  RCS file: /home/cvs/jakarta-tomcat-connectors/jk/native/CHANGES.txt,v
>>  retrieving revision 1.12
>>  retrieving revision 1.13
>>  diff -u -r1.12 -r1.13
>>  --- CHANGES.txt    16 Mar 2003 02:59:43 -0000    1.12
>>  +++ CHANGES.txt    10 Jun 2003 13:37:09 -0000    1.13
>>  @@ -1,6 +1,15 @@
>>   JAKARTA TOMCAT CONNECTORS (JK) CHANGELOG:            -*-text-*-
>>   Last modified at [$Date$]
>>    +Changes with JK 1.2.4
>>  +    * Fix use of libtool for Apache mod_jk builds with more recent
>>  +      versions of Apache 2.
>>  +      [jfclere]
>>  +    * Use reentrant version of strtok() for web server's which use
>>  +      threads. This fixes a thread safe bug under Apache 2 and the
>>  +      worker MPM.
>>  +      [glenn]
>>  +
>>   Changes with JK 1.2.3:
>>       * Add the ability to configure JkLog to pipe its log output to an
>>         executable such as Apache rotatelogs or cronolog.  Apache 2.0 
>> only.
>>  @@ -11,13 +20,16 @@
>>         let Apache handle processing the error returned by Tomcat.
>>       * Added the load balancer sticky_session property. If set to 0
>>         requests with servlet SESSION ID's can be routed to any Tomcat
>>  -      worker. Default is 1, sessions are sticky. [glenn]
>>  +      worker. Default is 1, sessions are sticky.
>>  +      [glenn]
>>       * Cleaned up detection and reporting of aborted client connections.
>>         This cleanup also makes sure that mod_jk does not pass any 
>> requests
>>  -      on to Tomcat if the remote client aborted its connection. [glenn]
>>  +      on to Tomcat if the remote client aborted its connection.
>>  +      [glenn]
>>       * Fixed a bug in Apache 2.0 which caused a POST request 
>> forwarded to
>>         Tomcat to fail if it generated SSI directives which were post
>>  -      processed by mod_include. [glenn]
>>  +      processed by mod_include.
>>  +      [glenn]
>>       * Fixed a bug in JkRequestLogFormat when printing the request 
>> URI that
>>         could cause a URI with hex escapes sequences to be formatted 
>> wrong.
>>         [glenn]
>>  
>>  
>>  
>>
>> ---------------------------------------------------------------------
>> To unsubscribe, e-mail: tomcat-dev-unsubscribe@jakarta.apache.org
>> For additional commands, e-mail: tomcat-dev-help@jakarta.apache.org
>>
>>
>>  
>>
> 
> 
> 
> ---------------------------------------------------------------------
> To unsubscribe, e-mail: tomcat-dev-unsubscribe@jakarta.apache.org
> For additional commands, e-mail: tomcat-dev-help@jakarta.apache.org
> 



---------------------------------------------------------------------
To unsubscribe, e-mail: tomcat-dev-unsubscribe@jakarta.apache.org
For additional commands, e-mail: tomcat-dev-help@jakarta.apache.org


Re: cvs commit: jakarta-tomcat-connectors/jk/native CHANGES.txt

Posted by "Jess M. Holle" <je...@ptc.com>.
Didn't 1.2.4 also fix the hook precedence for Apache 2 from 1.2.3 where 
Alias and mod_jk did not get along?

[In my testing it sure fixed this and it seems it should go into the 
change notes.]

--
Jess Holle

glenn@apache.org wrote:

>glenn       2003/06/10 06:37:10
>
>  Modified:    jk/native CHANGES.txt
>  Log:
>  Update changes for mod_jk 1.2.4 release
>  
>  Revision  Changes    Path
>  1.13      +16 -4     jakarta-tomcat-connectors/jk/native/CHANGES.txt
>  
>  Index: CHANGES.txt
>  ===================================================================
>  RCS file: /home/cvs/jakarta-tomcat-connectors/jk/native/CHANGES.txt,v
>  retrieving revision 1.12
>  retrieving revision 1.13
>  diff -u -r1.12 -r1.13
>  --- CHANGES.txt	16 Mar 2003 02:59:43 -0000	1.12
>  +++ CHANGES.txt	10 Jun 2003 13:37:09 -0000	1.13
>  @@ -1,6 +1,15 @@
>   JAKARTA TOMCAT CONNECTORS (JK) CHANGELOG:			-*-text-*-
>   Last modified at [$Date$]
>   
>  +Changes with JK 1.2.4
>  +    * Fix use of libtool for Apache mod_jk builds with more recent
>  +      versions of Apache 2.
>  +      [jfclere]
>  +    * Use reentrant version of strtok() for web server's which use
>  +      threads. This fixes a thread safe bug under Apache 2 and the
>  +      worker MPM.
>  +      [glenn]
>  +
>   Changes with JK 1.2.3:
>       * Add the ability to configure JkLog to pipe its log output to an
>         executable such as Apache rotatelogs or cronolog.  Apache 2.0 only.
>  @@ -11,13 +20,16 @@
>         let Apache handle processing the error returned by Tomcat.
>       * Added the load balancer sticky_session property. If set to 0
>         requests with servlet SESSION ID's can be routed to any Tomcat
>  -      worker. Default is 1, sessions are sticky. [glenn]
>  +      worker. Default is 1, sessions are sticky.
>  +      [glenn]
>       * Cleaned up detection and reporting of aborted client connections.
>         This cleanup also makes sure that mod_jk does not pass any requests
>  -      on to Tomcat if the remote client aborted its connection. [glenn]
>  +      on to Tomcat if the remote client aborted its connection.
>  +      [glenn]
>       * Fixed a bug in Apache 2.0 which caused a POST request forwarded to
>         Tomcat to fail if it generated SSI directives which were post
>  -      processed by mod_include. [glenn]
>  +      processed by mod_include.
>  +      [glenn]
>       * Fixed a bug in JkRequestLogFormat when printing the request URI that
>         could cause a URI with hex escapes sequences to be formatted wrong.
>         [glenn]
>  
>  
>  
>
>---------------------------------------------------------------------
>To unsubscribe, e-mail: tomcat-dev-unsubscribe@jakarta.apache.org
>For additional commands, e-mail: tomcat-dev-help@jakarta.apache.org
>
>
>  
>



---------------------------------------------------------------------
To unsubscribe, e-mail: tomcat-dev-unsubscribe@jakarta.apache.org
For additional commands, e-mail: tomcat-dev-help@jakarta.apache.org