File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -7,7 +7,7 @@ internal static class ActiveMQArtemisContainerImageSettings
77{
88 public const string Registry = "docker.io" ;
99 public const string Image = "apache/activemq-artemis" ;
10- public const string Tag = "2.39 .0" ;
10+ public const string Tag = "2.42 .0" ;
1111 public const string EnvironmentVariableUsername = "ARTEMIS_USER" ;
1212 public const string EnvironmentVariablePassword = "ARTEMIS_PASSWORD" ;
1313 public const string JolokiaPath = "/console/jolokia/read/org.apache.activemq.artemis:broker=%220.0.0.0%22/Started" ;
Original file line number Diff line number Diff line change @@ -18,7 +18,7 @@ public static class ActiveMQBuilderExtensions
1818 /// Adds a ActiveMQ container to the application model.
1919 /// </summary>
2020 /// <remarks>
21- /// The default image and tag are "apache/activemq-classic" and "6.1.0 ".
21+ /// The default image and tag are "apache/activemq-classic" and "6.1.7 ".
2222 /// </remarks>
2323 /// <param name="builder">The <see cref="IDistributedApplicationBuilder"/>.</param>
2424 /// <param name="name">The name of the resource. This name will be used as the connection string name when referenced in a dependency.</param>
@@ -52,7 +52,7 @@ public static IResourceBuilder<ActiveMQServerResource> AddActiveMQ(this IDistrib
5252 /// Adds a ActiveMQ Artemis container to the application model.
5353 /// </summary>
5454 /// <remarks>
55- /// The default image and tag are "apache/activemq-artemis" and "2.39 .0".
55+ /// The default image and tag are "apache/activemq-artemis" and "2.42 .0".
5656 /// </remarks>
5757 /// <param name="builder">The <see cref="IDistributedApplicationBuilder"/>.</param>
5858 /// <param name="name">The name of the resource. This name will be used as the connection string name when referenced in a dependency.</param>
Original file line number Diff line number Diff line change @@ -7,7 +7,7 @@ internal static class ActiveMQClassicContainerImageSettings
77{
88 public const string Registry = "docker.io" ;
99 public const string Image = "apache/activemq-classic" ;
10- public const string Tag = "6.1.4 " ;
10+ public const string Tag = "6.1.7 " ;
1111 public const string EnvironmentVariableUsername = "ACTIVEMQ_CONNECTION_USER" ;
1212 public const string EnvironmentVariablePassword = "ACTIVEMQ_CONNECTION_PASSWORD" ;
1313 public const string JolokiaPath =
Original file line number Diff line number Diff line change @@ -50,7 +50,7 @@ public async Task AddActiveMqApiBuilderContainerDetailsSetOnResource()
5050 Assert . Equal ( "ACTIVEMQ_CONNECTION_USER" , resource . ActiveMqSettings . EnvironmentVariableUsername ) ;
5151
5252 Assert . True ( resource . TryGetLastAnnotation ( out ContainerImageAnnotation ? imageAnnotations ) ) ;
53- Assert . Equal ( "6.1.4 " , imageAnnotations . Tag ) ;
53+ Assert . Equal ( "6.1.7 " , imageAnnotations . Tag ) ;
5454 Assert . Equal ( "apache/activemq-classic" , imageAnnotations . Image ) ;
5555 Assert . Equal ( "docker.io" , imageAnnotations . Registry ) ;
5656
@@ -80,7 +80,7 @@ public async Task AddActiveMqArtemisApiBuilderContainerDetailsSetOnResource()
8080 Assert . Equal ( "ARTEMIS_USER" , resource . ActiveMqSettings . EnvironmentVariableUsername ) ;
8181
8282 Assert . True ( resource . TryGetLastAnnotation ( out ContainerImageAnnotation ? imageAnnotations ) ) ;
83- Assert . Equal ( "2.39 .0" , imageAnnotations . Tag ) ;
83+ Assert . Equal ( "2.42 .0" , imageAnnotations . Tag ) ;
8484 Assert . Equal ( "apache/activemq-artemis" , imageAnnotations . Image ) ;
8585 Assert . Equal ( "docker.io" , imageAnnotations . Registry ) ;
8686
You can’t perform that action at this time.
0 commit comments