Skip to content

Commit

Permalink
Release XLT 5.5.0
Browse files Browse the repository at this point in the history
  • Loading branch information
jowerner committed Jun 10, 2021
2 parents 6f12f75 + 9fcf04d commit bf0cbee
Show file tree
Hide file tree
Showing 2,076 changed files with 82,013 additions and 23,547 deletions.
10 changes: 10 additions & 0 deletions doc/xltdoc/release-notes/5.5.x.textile
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
---
layout: manual
title: 5.5.x
position: 979
sorted: true
---

h2. XLT 5.5.x

The XLT documentation is now hosted online at "https://xltdoc.xceptance.com/":https://xltdoc.xceptance.com/. For the latest release notes, please head over to "https://xltdoc.xceptance.com/release-notes/":https://xltdoc.xceptance.com/release-notes/.
95 changes: 50 additions & 45 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@

<groupId>com.xceptance</groupId>
<artifactId>xlt</artifactId>
<version>5.4.1</version>
<version>5.5.0</version>
<packaging>jar</packaging>

<name>XLT</name>
Expand Down Expand Up @@ -67,8 +67,8 @@
<maven.compiler.target>1.8</maven.compiler.target>
<asm.version>7.1</asm.version>
<httpclient.version>4.5.13</httpclient.version>
<jetty.version>9.4.35.v20201120</jetty.version>
<log4j.version>2.14.0</log4j.version>
<jetty.version>9.4.40.v20210413</jetty.version>
<log4j.version>2.14.1</log4j.version>
<copyright>Copyright (c) ${project.inceptionYear}-2021 ${project.organization.name}</copyright>
</properties>

Expand Down Expand Up @@ -125,7 +125,7 @@
<dependency>
<groupId>org.apache.commons</groupId>
<artifactId>commons-lang3</artifactId>
<version>3.11</version>
<version>3.12.0</version>
</dependency>
<dependency>
<groupId>commons-logging</groupId>
Expand All @@ -135,7 +135,7 @@
<dependency>
<groupId>commons-net</groupId>
<artifactId>commons-net</artifactId>
<version>3.7.2</version>
<version>3.8.0</version>
</dependency>
<dependency>
<groupId>org.apache.commons</groupId>
Expand All @@ -156,7 +156,7 @@
<dependency>
<groupId>net.sourceforge.htmlunit</groupId>
<artifactId>htmlunit-core-js</artifactId>
<version>2.46.0</version>
<version>2.50.0</version>
</dependency>
<dependency>
<groupId>net.sourceforge.htmlunit</groupId>
Expand All @@ -176,13 +176,7 @@
<dependency>
<groupId>net.sourceforge.htmlunit</groupId>
<artifactId>neko-htmlunit</artifactId>
<version>2.46.0</version>
<exclusions>
<exclusion>
<groupId>xerces</groupId>
<artifactId>xercesImpl</artifactId>
</exclusion>
</exclusions>
<version>2.50.0</version>
</dependency>
<dependency>
<groupId>com.shapesecurity</groupId>
Expand All @@ -199,17 +193,16 @@
<artifactId>xalan</artifactId>
<version>2.7.2</version>
<exclusions>
<exclusion>
<groupId>xerces</groupId>
<artifactId>xercesImpl</artifactId>
</exclusion>
<exclusion>
<groupId>xml-apis</groupId>
<artifactId>xml-apis</artifactId>
</exclusion>
</exclusions>
</dependency>
<dependency>
<groupId>xerces</groupId>
<artifactId>xercesImpl</artifactId>
<version>2.12.0</version>
</dependency>
<!-- XLT -->
<dependency>
<groupId>com.amazonaws</groupId>
Expand Down Expand Up @@ -286,7 +279,7 @@
<dependency>
<groupId>org.jfree</groupId>
<artifactId>jfreechart</artifactId>
<version>1.5.0</version>
<version>1.5.3</version>
</dependency>
<!-- JCommon (formerly part JFreeChart) to get its PngEncoder -->
<dependency>
Expand All @@ -302,7 +295,7 @@
<dependency>
<groupId>junit</groupId>
<artifactId>junit</artifactId>
<version>4.13</version>
<version>4.13.2</version>
</dependency>
<dependency>
<groupId>log4j</groupId>
Expand Down Expand Up @@ -338,7 +331,7 @@
<dependency>
<groupId>com.thoughtworks.xstream</groupId>
<artifactId>xstream</artifactId>
<version>1.4.12</version>
<version>1.4.17</version>
</dependency>
<!-- ASM Libraries (required for Parboiled, PMD and Cobertura) -->
<dependency>
Expand Down Expand Up @@ -474,27 +467,27 @@
</dependency>
<!-- HtmlUnit -->
<dependency>
<groupId>gsbase</groupId>
<artifactId>gsbase</artifactId>
<version>2.0.1</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>commons-fileupload</groupId>
<artifactId>commons-fileupload</artifactId>
<groupId>com.tngtech.archunit</groupId>
<artifactId>archunit-junit4</artifactId>
<version>0.18.0</version>
<exclusions>
<exclusion>
<groupId>junit</groupId>
<artifactId>junit</artifactId>
</exclusion>
</exclusions>
<scope>test</scope>
<version>1.4</version>
</dependency>
<dependency>
<groupId>org.eclipse.jetty</groupId>
<artifactId>jetty-webapp</artifactId>
<version>${jetty.version}</version>
<groupId>org.apache.logging.log4j</groupId>
<artifactId>log4j-api</artifactId>
<version>${log4j.version}</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.eclipse.jetty.websocket</groupId>
<artifactId>websocket-server</artifactId>
<version>${jetty.version}</version>
<groupId>org.apache.logging.log4j</groupId>
<artifactId>log4j-core</artifactId>
<version>${log4j.version}</version>
<scope>test</scope>
</dependency>
<dependency>
Expand All @@ -505,21 +498,33 @@
<type>test-jar</type>
</dependency>
<dependency>
<groupId>com.tngtech.archunit</groupId>
<artifactId>archunit-junit4</artifactId>
<version>0.13.1</version>
<groupId>commons-fileupload</groupId>
<artifactId>commons-fileupload</artifactId>
<scope>test</scope>
<version>1.4</version>
<exclusions>
<exclusion>
<groupId>commons-io</groupId>
<artifactId>commons-io</artifactId>
</exclusion>
</exclusions>
</dependency>
<dependency>
<groupId>org.apache.logging.log4j</groupId>
<artifactId>log4j-api</artifactId>
<version>${log4j.version}</version>
<groupId>com.github.romankh3</groupId>
<artifactId>image-comparison</artifactId>
<version>4.4.0</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.apache.logging.log4j</groupId>
<artifactId>log4j-core</artifactId>
<version>${log4j.version}</version>
<groupId>org.eclipse.jetty</groupId>
<artifactId>jetty-webapp</artifactId>
<version>${jetty.version}</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.eclipse.jetty.websocket</groupId>
<artifactId>websocket-server</artifactId>
<version>${jetty.version}</version>
<scope>test</scope>
</dependency>
<!-- Checkstyle -->
Expand Down
4 changes: 4 additions & 0 deletions samples/testsuite-performance/config/default.properties
Original file line number Diff line number Diff line change
Expand Up @@ -109,12 +109,16 @@ com.xceptance.xlt.http.responseId.headerName = X-XLT-ResponseId
## whole lifetime of a WebClient
## - shuffleAddresses ......... whether to shuffle multiple resolved addresses
## - pickOneAddressRandomly ... whether to use only one out of multiple addresses
## - ignoreIPv4Addresses ...... whether to ignore IPv4 addresses received from DNS
## - ignoreIPv6Addresses ...... whether to ignore IPv6 addresses received from DNS
## - provider ................. the underlying DNS service provider ("platform"
## or "dnsjava")
#xlt.dns.recordAddresses = false
#xlt.dns.cacheAddresses = false
#xlt.dns.shuffleAddresses = false
#xlt.dns.pickOneAddressRandomly = false
#xlt.dns.ignoreIPv4Addresses = false
#xlt.dns.ignoreIPv6Addresses = false
#xlt.dns.provider = platform

## Settings for the standard Java DNS service provider.
Expand Down
4 changes: 4 additions & 0 deletions samples/testsuite-posters/config/default.properties
Original file line number Diff line number Diff line change
Expand Up @@ -109,12 +109,16 @@ com.xceptance.xlt.http.responseId.headerName = X-XLT-ResponseId
## whole lifetime of a WebClient
## - shuffleAddresses ......... whether to shuffle multiple resolved addresses
## - pickOneAddressRandomly ... whether to use only one out of multiple addresses
## - ignoreIPv4Addresses ...... whether to ignore IPv4 addresses received from DNS
## - ignoreIPv6Addresses ...... whether to ignore IPv6 addresses received from DNS
## - provider ................. the underlying DNS service provider ("platform"
## or "dnsjava")
#xlt.dns.recordAddresses = false
#xlt.dns.cacheAddresses = false
#xlt.dns.shuffleAddresses = false
#xlt.dns.pickOneAddressRandomly = false
#xlt.dns.ignoreIPv4Addresses = false
#xlt.dns.ignoreIPv6Addresses = false
#xlt.dns.provider = platform

## Settings for the standard Java DNS service provider.
Expand Down
4 changes: 4 additions & 0 deletions samples/testsuite-showcases/config/default.properties
Original file line number Diff line number Diff line change
Expand Up @@ -109,12 +109,16 @@ com.xceptance.xlt.http.responseId.headerName = X-XLT-ResponseId
## whole lifetime of a WebClient
## - shuffleAddresses ......... whether to shuffle multiple resolved addresses
## - pickOneAddressRandomly ... whether to use only one out of multiple addresses
## - ignoreIPv4Addresses ...... whether to ignore IPv4 addresses received from DNS
## - ignoreIPv6Addresses ...... whether to ignore IPv6 addresses received from DNS
## - provider ................. the underlying DNS service provider ("platform"
## or "dnsjava")
#xlt.dns.recordAddresses = false
#xlt.dns.cacheAddresses = false
#xlt.dns.shuffleAddresses = false
#xlt.dns.pickOneAddressRandomly = false
#xlt.dns.ignoreIPv4Addresses = false
#xlt.dns.ignoreIPv6Addresses = false
#xlt.dns.provider = platform

## Settings for the standard Java DNS service provider.
Expand Down
4 changes: 4 additions & 0 deletions samples/testsuite-template/config/default.properties
Original file line number Diff line number Diff line change
Expand Up @@ -109,12 +109,16 @@ com.xceptance.xlt.http.responseId.headerName = X-XLT-ResponseId
## whole lifetime of a WebClient
## - shuffleAddresses ......... whether to shuffle multiple resolved addresses
## - pickOneAddressRandomly ... whether to use only one out of multiple addresses
## - ignoreIPv4Addresses ...... whether to ignore IPv4 addresses received from DNS
## - ignoreIPv6Addresses ...... whether to ignore IPv6 addresses received from DNS
## - provider ................. the underlying DNS service provider ("platform"
## or "dnsjava")
#xlt.dns.recordAddresses = false
#xlt.dns.cacheAddresses = false
#xlt.dns.shuffleAddresses = false
#xlt.dns.pickOneAddressRandomly = false
#xlt.dns.ignoreIPv4Addresses = false
#xlt.dns.ignoreIPv6Addresses = false
#xlt.dns.provider = platform

## Settings for the standard Java DNS service provider.
Expand Down
4 changes: 4 additions & 0 deletions samples/testsuite-xlt/config/default.properties
Original file line number Diff line number Diff line change
Expand Up @@ -109,12 +109,16 @@ com.xceptance.xlt.http.responseId.headerName = X-XLT-ResponseId
## whole lifetime of a WebClient
## - shuffleAddresses ......... whether to shuffle multiple resolved addresses
## - pickOneAddressRandomly ... whether to use only one out of multiple addresses
## - ignoreIPv4Addresses ...... whether to ignore IPv4 addresses received from DNS
## - ignoreIPv6Addresses ...... whether to ignore IPv6 addresses received from DNS
## - provider ................. the underlying DNS service provider ("platform"
## or "dnsjava")
#xlt.dns.recordAddresses = false
#xlt.dns.cacheAddresses = false
#xlt.dns.shuffleAddresses = false
#xlt.dns.pickOneAddressRandomly = false
#xlt.dns.ignoreIPv4Addresses = false
#xlt.dns.ignoreIPv6Addresses = false
#xlt.dns.provider = platform

## Settings for the standard Java DNS service provider.
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
* Licensed 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
* https://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,
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
* Licensed 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
* https://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,
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
* Licensed 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
* https://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,
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
* Licensed 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
* https://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,
Expand Down
Loading

0 comments on commit bf0cbee

Please sign in to comment.