Skip to content

Commit 5dc0bb9

Browse files
committed
Release 4.1.0
1 parent c48ccb9 commit 5dc0bb9

File tree

7 files changed

+21
-11
lines changed

7 files changed

+21
-11
lines changed

README.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -61,7 +61,7 @@ JLineup CLI comes as executable Java Archive. Java 8 or higher has to be availab
6161

6262
Open a terminal and download it like this:
6363

64-
wget https://repo1.maven.org/maven2/de/otto/jlineup-cli/4.0.0/jlineup-cli-4.0.0.jar -O jlineup.jar
64+
wget https://repo1.maven.org/maven2/de/otto/jlineup-cli/4.1.0/jlineup-cli-4.1.0.jar -O jlineup.jar
6565

6666
Then type
6767

@@ -80,7 +80,7 @@ Let's assume, this is part of a continuous integration pipeline:
8080

8181
## Browser Compatibility
8282

83-
JLineup 4.0.0 was tested successfully with
83+
JLineup 4.1.0 was tested successfully with
8484

8585
* Chrome 80.x
8686
* Firefox 73.x

build.gradle

+1-1
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ plugins {
2121

2222
//
2323
//
24-
def jlineup_version = "4.0.1-SNAPSHOT"
24+
def jlineup_version = "4.1.0"
2525
//
2626
//
2727

cli/graalvm/build-native-image.sh

+5-5
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ echo "START BUILDING NATIVE IMAGE"
2626
echo ""
2727

2828
cd cli
29-
#../../graalvm/graalvm/bin/java -agentlib:native-image-agent -jar jlineup-cli-4.0.0-SNAPSHOT-all.jar --url https://www.otto.de --step after
29+
#../../graalvm/graalvm/bin/java -agentlib:native-image-agent -jar jlineup-cli-4.1.1-SNAPSHOT-all.jar --url https://www.otto.de --step after
3030
#-J-Djava.security.properties=graalvm/java.security.overrides \
3131
"${GRAAL_HOME}"/bin/native-image \
3232
--no-server \
@@ -46,7 +46,7 @@ cd cli
4646
`#--static` \
4747
`#-H:+TraceSecurityServices` \
4848
`#-H:+TraceClassInitialization` \
49-
-jar build/libs/jlineup-cli-4.0.0-SNAPSHOT-all.jar
49+
-jar build/libs/jlineup-cli-4.1.1-SNAPSHOT-all.jar
5050

5151
echo ""
5252
echo "DONE BUILDING NATIVE IMAGE"
@@ -58,13 +58,13 @@ echo ""
5858
echo "STARTING TEST RUN"
5959
echo ""
6060

61-
mv jlineup-cli-4.0.0-SNAPSHOT-all build/libs/jlineup-cli-4.0.0-SNAPSHOT-all
61+
mv jlineup-cli-4.1.1-SNAPSHOT-all build/libs/jlineup-cli-4.1.1-SNAPSHOT-all
6262
rm ~/.m2/repository/webdriver -rf
63-
./build/libs/jlineup-cli-4.0.0-SNAPSHOT-all -Dwdm.architecture=X64 --config graalvm/lineup.json --step before
63+
./build/libs/jlineup-cli-4.1.1-SNAPSHOT-all -Dwdm.architecture=X64 --config graalvm/lineup.json --step before
6464

6565
set +e
6666

67-
./build/libs/jlineup-cli-4.0.0-SNAPSHOT-all -Dwdm.architecture=X64 --config graalvm/lineup.json --step after
67+
./build/libs/jlineup-cli-4.1.1-SNAPSHOT-all -Dwdm.architecture=X64 --config graalvm/lineup.json --step after
6868

6969
set -e
7070

docs/CLI.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ support. It may also work under MacOS or Windows, but we don't test this.
1111
You can simply download the CLI version by getting the jlineup-cli.jar
1212
from Maven Central in a terminal window:
1313

14-
`wget https://repo1.maven.org/maven2/de/otto/jlineup-cli/4.0.0/jlineup-cli-4.0.0.jar -O jlineup.jar`
14+
`wget https://repo1.maven.org/maven2/de/otto/jlineup-cli/4.1.0/jlineup-cli-4.1.0.jar -O jlineup.jar`
1515

1616
Now you have a `jlineup.jar` in your current directory.
1717

docs/CONFIGURATION.md

+10
Original file line numberDiff line numberDiff line change
@@ -448,6 +448,8 @@ What are all those options about? Here are all the details.
448448
* Type: Set of Strings
449449
* Default: `null`
450450
* Example: `"wait-for-selectors": [ ".wait-for-class", "#wait-for-id" ]`
451+
452+
Since: 4.1.0
451453

452454
---
453455

@@ -462,6 +464,8 @@ What are all those options about? Here are all the details.
462464
* Unit: Seconds
463465
* Default: 15
464466
* Example: `"wait-for-selectors-timeout": 20.0`
467+
468+
Since: 4.1.0
465469

466470
---
467471

@@ -474,6 +478,8 @@ What are all those options about? Here are all the details.
474478
* Default: false
475479
* Example: `"fail-if-selectors-not-found": true`
476480

481+
Since: 4.1.0
482+
477483
---
478484

479485
### `remove-selectors`
@@ -490,6 +496,8 @@ What are all those options about? Here are all the details.
490496
* Type: Set of Strings
491497
* Default: `null`
492498
* Example: `"remove-selectors": [ "#remove-id", ".remove-class" ]`
499+
500+
Since: 4.1.0
493501

494502
---
495503

@@ -597,6 +605,8 @@ What are all those options about? Here are all the details.
597605
`
598606
---
599607

608+
Since: 4.0.0
609+
600610
### `page-load-timeout`
601611

602612
This value is passed through to Selenium for loading the pages. From the Selenium docs:

docs/WEB.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ interface to take JLineup jobs.
88
You can simply download the web version by getting the jlineup-web.jar
99
from Maven Central in a terminal window:
1010

11-
`wget https://repo1.maven.org/maven2/de/otto/jlineup-web/4.0.0/jlineup-web-4.0.0.jar -O jlineup-web.jar`
11+
`wget https://repo1.maven.org/maven2/de/otto/jlineup-web/4.1.0/jlineup-web-4.1.0.jar -O jlineup-web.jar`
1212

1313
Now you have a `jlineup-web.jar` in your current directory.
1414

web/Dockerfile

+1-1
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ RUN mkdir -p /usr/share/man/man1
55
RUN apt-get update \
66
&& apt-get install -y wget \
77
&& apt-get install -yf default-jre-headless chromium firefox-esr libjpeg-progs \
8-
&& wget -U "jlineup-docker" -O jlineup-web.jar http://central.maven.org/maven2/de/otto/jlineup-web/4.0.0/jlineup-web-4.0.0.jar
8+
&& wget -U "jlineup-docker" -O jlineup-web.jar http://central.maven.org/maven2/de/otto/jlineup-web/4.1.0/jlineup-web-4.1.0.jar
99
ADD docker/application.yml application.yml
1010
RUN apt-get remove --auto-remove perl -yf && apt-get purge --auto-remove perl -yf
1111
EXPOSE 8080

0 commit comments

Comments
 (0)