aboutsummaryrefslogtreecommitdiffstats
path: root/dblib/common/doc/changelog.xml
blob: 2d7ddf8e582b59b3f87243b94784b636dedd4ec3 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
<?xml version="1.0" encoding="UTF-8"?>
<!--
  Licensed to the Apache Software Foundation (ASF) under one or more
  contributor license agreements.  See the NOTICE file distributed with
  this work for additional information regarding copyright ownership.
  The ASF licenses this file to You under the Apache License, Version 2.0
  (the "License"); you may not use this file except in compliance with
  the License.  You may obtain a copy of the License at

      http://www.apache.org/licenses/LICENSE-2.0

  Unless required by applicable law or agreed to in writing, software
  distributed under the License is distributed on an "AS IS" BASIS,
  WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
  See the License for the specific language governing permissions and
  limitations under the License.
-->
<!DOCTYPE document [
  <!ENTITY project SYSTEM "@TOMCAT_PROJECT_DEST@">
]>
<?xml-stylesheet type="text/xsl" href="package.xsl"?>
<document url="changelog.html">

  &project;

  <properties>
    <author email="fhanik@apache.org">Filip Hanik</author>
    <title>Changelog</title>
  </properties>

<body>

<section name="Tomcat JDBC Connection Pool - Apache Tomcat 7.0.19 and later">
  <p>
    Starting with Apache Tomcat 7.0.19 in July 2011, Tomcat JDBC Connection Pool
    is built and released as a component in official releases of Tomcat.
    The changes are now listed in "jdbc-pool" sections of Apache Tomcat
    changelog file. This changelog file is obsolete.
  </p>
</section>

<section name="Tomcat JDBC Connection Pool 1.1.0.0">
  <subsection name="pool">
    <changelog>
      <add><rev>1207712</rev> Pool cleaner should be a global thread, not spawn one thread per connection pool. (fhanik)</add>
      <fix><rev>1073531</rev> <bug>50805</bug> Only initialize connections once when async (fhanik)</fix>
      <fix><rev>1076380</rev> <bug>50857</bug> Correctly handle timeouts when the pool is busy when async (fhanik)</fix>
      <add>Added QueryTimeoutInterceptor to be able to configure timeouts on running queries automatically.</add>
    </changelog>
  </subsection>
</section>

<section name="Tomcat JDBC Connection Pool 1.0.9.4">
  <subsection name="pool">
    <changelog>
      <fix><rev>1069864</rev> <bug>50759</bug> Correctly set validation timestamp when using external validator.(fhanik)</fix>
    </changelog>
  </subsection>
</section>

<section name="Tomcat JDBC Connection Pool 1.0.9.3">
  <subsection name="pool">
    <changelog>
      <fix><rev>1060998</rev> <bug>50613</bug> Fix concurrency issue around pool size calculation.(fhanik)</fix>
    </changelog>
  </subsection>
</section>
<section name="Tomcat JDBC Connection Pool 1.0.9.2">
  <subsection name="pool">
    <changelog>
      <fix><rev>1057743</rev> Make sure passwords are masked.(fhanik)</fix>
    </changelog>
  </subsection>
</section>
<section name="Tomcat JDBC Connection Pool 1.0.9.0">
  <subsection name="pool">
    <changelog>
      <fix><rev>997321</rev> Ensure threads borrowing connections do not
      get stuck waiting for a new connection if a connection is released in
      another thread. (markt)</fix>
      <fix><rev>995432</rev> Make interceptor class names, property names
      and property values tolerant of whitespace by trimming the values before
      use. (markt)</fix>
      <fix><rev>995091</rev> <bug>49831</bug> Make sure pooled XAConnections are
      closed when the connection pool shuts down. Patch provided by Daniel
      Mikusa. (markt)</fix>
      <update><rev>995087</rev> Code clean-up. Remove some unused code. (markt)
      </update>
      <update><rev>995083</rev> Update to Tomcat 6.0.29 (for JULI). (markt)
      </update>
      <update><rev>992409</rev> Code clean-up. Reduce sequences of three or more
      blank lines to two blank lines. (markt)</update>
      <add><rev>952811</rev>, <rev>995095</rev> <bug>48814</bug> Add Validator
      interface and allow users to configure a Validator class name. Patch
      provided by Matt Passell. (markt)</add>
      <update><rev>948073</rev> Code clean-up. Remove unused imports. (markt)
      </update>
      <fix><rev>943434</rev> <bug>49224</bug> Only try setting the username and
      password if they are non-null. Patch provided by Matt Passell. (markt)
      </fix>
      <fix><rev>943032</rev> <bug>49269</bug> Set maxIdle to maxActive by
      default to prevent warning on start when maxIdle > maxActive. Patch
      provided by Matt Passell. (markt)</fix>
      <fix><rev>940574</rev> <bug>49241</bug> Don&apos;t ignore the
      suspectTimeout property. (fhanik)</fix>
      <fix><rev>939320</rev> Fix svn:keywords for property replacement.
      (kkolinko)</fix>
      <add><rev>931550</rev>, <rev>934651</rev>, <rev>934677</rev> Add a
      statement cache. (fhanik)</add>
      <update><rev>919076</rev> Improve XA support. (fhanik)</update>
      <fix><rev>915940</rev> <bug>48392</bug> Add an interceptor to wrap
      Statements and ResultSets to prevent access to the physical connection.
      (fhanik)</fix>
      <fix><rev>912026</rev> Call <code>setTransactionIsolation()</code> before
      anything else as some drivers require this to be the first call. (fhanik)
      </fix>
      <update><rev>900017</rev> Update Javadoc for XADataSource. (kkolinko)
      </update>
    </changelog>
  </subsection>
</section>
<section name="Tomcat JDBC Connection Pool prior to 1.0.9.0 (incomplete)">
  <subsection name="pool">
    <changelog>
      <update><rev>720253</rev> Document how to use interceptors</update>
      <update><rev>717972</rev> Added an interceptor that will clean up non closed statements when a connection is returned to the pool. (<code>org.apache.tomcat.jdbc.pool.interceptor.StatementFinalizer</code>)</update>
      <update><rev>713763</rev> Improve connection state handling</update>
      <fix><rev>713763</rev> Improve connection state handling</fix>
    </changelog>
  </subsection>
</section>
</body>
</document>