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

tabish pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/qpid-proton-dotnet.git


The following commit(s) were added to refs/heads/main by this push:
     new 92df49c  PROTON-2723 Update build docker config with updated build 
versions
92df49c is described below

commit 92df49c365fc532758be7aed0b66480d63dc205f
Author: Timothy Bish <tabish...@gmail.com>
AuthorDate: Wed May 3 17:36:47 2023 -0400

    PROTON-2723 Update build docker config with updated build versions
    
    Update the versions of the build tools to latest in the docker config
---
 common.props                                                          | 3 +++
 docker/Dockerfile                                                     | 4 ++--
 .../Proton.Client.Tests/Client/Implementation/ClientConnectionTest.cs | 1 +
 3 files changed, 6 insertions(+), 2 deletions(-)

diff --git a/common.props b/common.props
index 71cd081..2ed5faa 100644
--- a/common.props
+++ b/common.props
@@ -34,6 +34,9 @@
     <VersionSuffix Condition="'$(VersionSuffix)' == '' AND 
$(ProtonVersion.Contains('-'))">$(ProtonVersion.Split('-')[1])</VersionSuffix>
     <AssemblyVersion>$(MajorVersion).$(MinorVersion).0.0</AssemblyVersion>
     <FileVersion>$(MajorVersion).$(MinorVersion).$(BuildNumber).0</FileVersion>
+
+    <!-- Suppress warnings about EOL frameworks as we want to support users on 
past releases -->
+    <CheckEolTargetFramework>false</CheckEolTargetFramework>
   </PropertyGroup>
 
   <PropertyGroup Label="Target Frameworks">
diff --git a/docker/Dockerfile b/docker/Dockerfile
index fa78911..f429b35 100644
--- a/docker/Dockerfile
+++ b/docker/Dockerfile
@@ -15,7 +15,7 @@
 #  limitations under the License.
 #
 
-FROM alpine:3.16
+FROM alpine:3.17.3
 WORKDIR /root
 
 # Install dependencies from vanilla system packages
@@ -23,7 +23,7 @@ RUN apk add bash icu-libs krb5-libs libgcc libintl libssl1.1 
libstdc++ zlib git
 
 # Install a maven release  -------------------------------------------
 # Inspired from 
https://github.com/apache/accumulo-docker/blob/master/Dockerfile#L53
-ENV MAVEN_VERSION 3.8.4
+ENV MAVEN_VERSION 3.9.1
 ENV APACHE_DIST_URLS \
   https://www.apache.org/dyn/closer.cgi?action=download&filename= \
   # if the version is outdated (or we're grabbing the .asc file), we might 
have to pull from the dist/archive :/
diff --git 
a/test/Proton.Client.Tests/Client/Implementation/ClientConnectionTest.cs 
b/test/Proton.Client.Tests/Client/Implementation/ClientConnectionTest.cs
index 934a52c..0d70eca 100644
--- a/test/Proton.Client.Tests/Client/Implementation/ClientConnectionTest.cs
+++ b/test/Proton.Client.Tests/Client/Implementation/ClientConnectionTest.cs
@@ -1747,6 +1747,7 @@ namespace Apache.Qpid.Proton.Client.Implementation
 
             try
             {
+               logger.LogInformation("Test sending message from connection 
anonymous sender");
                connection.Send(IMessage<string>.Create("Hello World"));
                Assert.Fail("Open of Sender should fail as remote did not 
advertise anonymous relay support: ");
             }


---------------------------------------------------------------------
To unsubscribe, e-mail: commits-unsubscr...@qpid.apache.org
For additional commands, e-mail: commits-h...@qpid.apache.org

Reply via email to