You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@commons.apache.org by gg...@apache.org on 2019/07/25 20:22:43 UTC

[commons-dbcp] branch release updated (128c745 -> 5285795)

This is an automated email from the ASF dual-hosted git repository.

ggregory pushed a change to branch release
in repository https://gitbox.apache.org/repos/asf/commons-dbcp.git.


    from 128c745  Fix typo.
     new 2d95235  Update tests from com.h2database:h2 1.4.197 to 1.4.199.
     new 05263e2  Update tests from org.jboss.narayana.jta:narayana-jta 5.9.2.Final to 5.9.5.Final.
     new d1c5839  Update tests from org.jboss.logging:jboss-logging 3.3.2.Final to 3.4.0.Final.
     new 8af2f87  Update tests from org.mockito:mockito-core 2.24.0 to 2.28.2.
     new 5285795  Update tests from org.mockito:mockito-core 2.28.2 to 3.0.0.

The 5 revisions listed above as "new" are entirely new to this
repository and will be described in separate emails.  The revisions
listed as "add" were already present in the repository and have only
been added to this reference.


Summary of changes:
 pom.xml                 |  8 ++++----
 src/changes/changes.xml | 18 ++++++++++++++++--
 2 files changed, 20 insertions(+), 6 deletions(-)


[commons-dbcp] 01/05: Update tests from com.h2database:h2 1.4.197 to 1.4.199.

Posted by gg...@apache.org.
This is an automated email from the ASF dual-hosted git repository.

ggregory pushed a commit to branch release
in repository https://gitbox.apache.org/repos/asf/commons-dbcp.git

commit 2d952351fea2c2831fd254f0d4cf3811732b8c63
Author: Gary Gregory <ga...@gmail.com>
AuthorDate: Thu Jul 25 16:07:56 2019 -0400

    Update tests from com.h2database:h2 1.4.197 to 1.4.199.
---
 pom.xml                 | 2 +-
 src/changes/changes.xml | 4 +++-
 2 files changed, 4 insertions(+), 2 deletions(-)

diff --git a/pom.xml b/pom.xml
index 1bfdf1e..9b0ad67 100644
--- a/pom.xml
+++ b/pom.xml
@@ -242,7 +242,7 @@
     <dependency>
       <groupId>com.h2database</groupId>
       <artifactId>h2</artifactId>
-      <version>1.4.197</version>
+      <version>1.4.199</version>
       <scope>test</scope>
     </dependency>
     <dependency>
diff --git a/src/changes/changes.xml b/src/changes/changes.xml
index ca19b08..6abe4b7 100644
--- a/src/changes/changes.xml
+++ b/src/changes/changes.xml
@@ -61,7 +61,9 @@ The <action> type attribute can be add,update,fix,remove.
 
   <body>
     <release version="2.6.1" date="YYYY-MM-DD" description="This is a minor release, including bug fixes and enhancements.">
-        <!-- TODO -->
+      <action dev="ggregory" type="update" due-to="Gary Gregory">
+        Update tests from com.h2database:h2 1.4.197 to 1.4.199.
+      </action>
     </release>
     <release version="2.6.0" date="2019-02-14" description="This is a minor release, including bug fixes and enhancements.">
       <action dev="chtompki" type="add" issue="DBCP-534" due-to="Peter Wicks">


[commons-dbcp] 03/05: Update tests from org.jboss.logging:jboss-logging 3.3.2.Final to 3.4.0.Final.

Posted by gg...@apache.org.
This is an automated email from the ASF dual-hosted git repository.

ggregory pushed a commit to branch release
in repository https://gitbox.apache.org/repos/asf/commons-dbcp.git

commit d1c5839750223df95caaf541b184bc1c080b7676
Author: Gary Gregory <ga...@gmail.com>
AuthorDate: Thu Jul 25 16:16:20 2019 -0400

    Update tests from org.jboss.logging:jboss-logging 3.3.2.Final to
    3.4.0.Final.
---
 pom.xml                 | 2 +-
 src/changes/changes.xml | 5 ++++-
 2 files changed, 5 insertions(+), 2 deletions(-)

diff --git a/pom.xml b/pom.xml
index 0dcbd00..d40493a 100644
--- a/pom.xml
+++ b/pom.xml
@@ -272,7 +272,7 @@
     <dependency>
       <groupId>org.jboss.logging</groupId>
       <artifactId>jboss-logging</artifactId>
-      <version>3.3.2.Final</version>
+      <version>3.4.0.Final</version>
       <scope>test</scope>
     </dependency>
   </dependencies>
diff --git a/src/changes/changes.xml b/src/changes/changes.xml
index 0f38f0d..02ffebc 100644
--- a/src/changes/changes.xml
+++ b/src/changes/changes.xml
@@ -60,13 +60,16 @@ The <action> type attribute can be add,update,fix,remove.
      -->
 
   <body>
-    <release version="2.6.1" date="YYYY-MM-DD" description="This is a minor release, including bug fixes and enhancements.">
+    <release version="2.6.1" date="2019-MM-DD" description="This is a minor release, including bug fixes and enhancements.">
       <action dev="ggregory" type="update" due-to="Gary Gregory">
         Update tests from com.h2database:h2 1.4.197 to 1.4.199.
       </action>
       <action dev="ggregory" type="update" due-to="Gary Gregory">
         Update tests from org.jboss.narayana.jta:narayana-jta 5.9.2.Final to 5.9.5.Final.
       </action>
+      <action dev="ggregory" type="update" due-to="Gary Gregory">
+        Update tests from org.jboss.logging:jboss-logging 3.3.2.Final to 3.4.0.Final.
+      </action>
     </release>
     <release version="2.6.0" date="2019-02-14" description="This is a minor release, including bug fixes and enhancements.">
       <action dev="chtompki" type="add" issue="DBCP-534" due-to="Peter Wicks">


[commons-dbcp] 02/05: Update tests from org.jboss.narayana.jta:narayana-jta 5.9.2.Final to 5.9.5.Final.

Posted by gg...@apache.org.
This is an automated email from the ASF dual-hosted git repository.

ggregory pushed a commit to branch release
in repository https://gitbox.apache.org/repos/asf/commons-dbcp.git

commit 05263e2b8b87279ed5259a264577534cf97811f3
Author: Gary Gregory <ga...@gmail.com>
AuthorDate: Thu Jul 25 16:11:36 2019 -0400

    Update tests from org.jboss.narayana.jta:narayana-jta 5.9.2.Final to
    5.9.5.Final.
---
 pom.xml                 | 2 +-
 src/changes/changes.xml | 3 +++
 2 files changed, 4 insertions(+), 1 deletion(-)

diff --git a/pom.xml b/pom.xml
index 9b0ad67..0dcbd00 100644
--- a/pom.xml
+++ b/pom.xml
@@ -248,7 +248,7 @@
     <dependency>
       <groupId>org.jboss.narayana.jta</groupId>
       <artifactId>narayana-jta</artifactId>
-      <version>5.9.2.Final</version>
+      <version>5.9.5.Final</version>
       <scope>test</scope>
     </dependency>
     <dependency>
diff --git a/src/changes/changes.xml b/src/changes/changes.xml
index 6abe4b7..0f38f0d 100644
--- a/src/changes/changes.xml
+++ b/src/changes/changes.xml
@@ -64,6 +64,9 @@ The <action> type attribute can be add,update,fix,remove.
       <action dev="ggregory" type="update" due-to="Gary Gregory">
         Update tests from com.h2database:h2 1.4.197 to 1.4.199.
       </action>
+      <action dev="ggregory" type="update" due-to="Gary Gregory">
+        Update tests from org.jboss.narayana.jta:narayana-jta 5.9.2.Final to 5.9.5.Final.
+      </action>
     </release>
     <release version="2.6.0" date="2019-02-14" description="This is a minor release, including bug fixes and enhancements.">
       <action dev="chtompki" type="add" issue="DBCP-534" due-to="Peter Wicks">


[commons-dbcp] 05/05: Update tests from org.mockito:mockito-core 2.28.2 to 3.0.0.

Posted by gg...@apache.org.
This is an automated email from the ASF dual-hosted git repository.

ggregory pushed a commit to branch release
in repository https://gitbox.apache.org/repos/asf/commons-dbcp.git

commit 528579520d0db6d7ad767b1e02f969fa5aca8556
Author: Gary Gregory <ga...@gmail.com>
AuthorDate: Thu Jul 25 16:22:39 2019 -0400

    Update tests from org.mockito:mockito-core 2.28.2 to 3.0.0.
---
 pom.xml                 | 2 +-
 src/changes/changes.xml | 3 +++
 2 files changed, 4 insertions(+), 1 deletion(-)

diff --git a/pom.xml b/pom.xml
index 9e10fac..a9d7845 100644
--- a/pom.xml
+++ b/pom.xml
@@ -189,7 +189,7 @@
     <dependency>
       <groupId>org.mockito</groupId>
       <artifactId>mockito-core</artifactId>
-      <version>2.28.2</version>
+      <version>3.0.0</version>
       <scope>test</scope>
     </dependency>
 
diff --git a/src/changes/changes.xml b/src/changes/changes.xml
index a8aec5d..706254c 100644
--- a/src/changes/changes.xml
+++ b/src/changes/changes.xml
@@ -73,6 +73,9 @@ The <action> type attribute can be add,update,fix,remove.
       <action dev="ggregory" type="update" due-to="Gary Gregory">
         Update tests from org.mockito:mockito-core 2.24.0 to 2.28.2.
       </action>
+      <action dev="ggregory" type="update" due-to="Gary Gregory">
+        Update tests from org.mockito:mockito-core 2.28.2 to 3.0.0.
+      </action>
     </release>
     <release version="2.6.0" date="2019-02-14" description="This is a minor release, including bug fixes and enhancements.">
       <action dev="chtompki" type="add" issue="DBCP-534" due-to="Peter Wicks">


[commons-dbcp] 04/05: Update tests from org.mockito:mockito-core 2.24.0 to 2.28.2.

Posted by gg...@apache.org.
This is an automated email from the ASF dual-hosted git repository.

ggregory pushed a commit to branch release
in repository https://gitbox.apache.org/repos/asf/commons-dbcp.git

commit 8af2f87305e38f41a2f2ba60483e754455c4c9a7
Author: Gary Gregory <ga...@gmail.com>
AuthorDate: Thu Jul 25 16:19:57 2019 -0400

    Update tests from org.mockito:mockito-core 2.24.0 to 2.28.2.
---
 pom.xml                 | 2 +-
 src/changes/changes.xml | 3 +++
 2 files changed, 4 insertions(+), 1 deletion(-)

diff --git a/pom.xml b/pom.xml
index d40493a..9e10fac 100644
--- a/pom.xml
+++ b/pom.xml
@@ -189,7 +189,7 @@
     <dependency>
       <groupId>org.mockito</groupId>
       <artifactId>mockito-core</artifactId>
-      <version>2.24.0</version>
+      <version>2.28.2</version>
       <scope>test</scope>
     </dependency>
 
diff --git a/src/changes/changes.xml b/src/changes/changes.xml
index 02ffebc..a8aec5d 100644
--- a/src/changes/changes.xml
+++ b/src/changes/changes.xml
@@ -70,6 +70,9 @@ The <action> type attribute can be add,update,fix,remove.
       <action dev="ggregory" type="update" due-to="Gary Gregory">
         Update tests from org.jboss.logging:jboss-logging 3.3.2.Final to 3.4.0.Final.
       </action>
+      <action dev="ggregory" type="update" due-to="Gary Gregory">
+        Update tests from org.mockito:mockito-core 2.24.0 to 2.28.2.
+      </action>
     </release>
     <release version="2.6.0" date="2019-02-14" description="This is a minor release, including bug fixes and enhancements.">
       <action dev="chtompki" type="add" issue="DBCP-534" due-to="Peter Wicks">