Skip to content

Commit

Permalink
Release 4.9.2
Browse files Browse the repository at this point in the history
  • Loading branch information
MediaMarco committed Dec 19, 2023
1 parent b66b188 commit 6d1ebbe
Show file tree
Hide file tree
Showing 8 changed files with 20 additions and 17 deletions.
3 changes: 3 additions & 0 deletions HISTORY.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,8 @@
# JLineup Release History

## Release 4.9.2 - 2023-12-19
* Dependency updates - especially Selenium 4.16.1

## Release 4.9.1 - 2023-10-05
* Feature: Add `--cleanup-profile` option to CLI to clean up the profile directory after a run.
* Feature: Add `jlineup.cleanupProfile` option to web version to clean up custom profile directories after a run.
Expand Down
8 changes: 4 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -82,7 +82,7 @@ JLineup CLI comes as executable Java Archive. Java 17 or higher has to be availa

Open a terminal and download it like this:

wget https://repo1.maven.org/maven2/de/otto/jlineup-cli/4.9.1/jlineup-cli-4.9.1.jar -O jlineup.jar
wget https://repo1.maven.org/maven2/de/otto/jlineup-cli/4.9.2/jlineup-cli-4.9.2.jar -O jlineup.jar

Then type

Expand All @@ -101,10 +101,10 @@ Let's assume, this is part of a continuous integration pipeline:

## Browser Compatibility

JLineup 4.9.1 was tested successfully with
JLineup 4.9.2 was tested successfully with

* Chrome 116.x
* Firefox 116.x
* Chrome 120.x
* Firefox 120.x

Chrome or Firefox have to be installed on the system if you want to use one of them.

Expand Down
2 changes: 1 addition & 1 deletion build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ plugins {
//\
///\
////\
def jlineup_version = "4.9.2-SNAPSHOT"
def jlineup_version = "4.9.2"
/////
////
///
Expand Down
8 changes: 4 additions & 4 deletions cli/graalvm/build-native-image.sh
Original file line number Diff line number Diff line change
Expand Up @@ -64,7 +64,7 @@ cd cli
`#--static` \
`#-H:+TraceSecurityServices` \
`#-H:+TraceClassInitialization` \
-jar build/libs/jlineup-cli-4.9.1-all.jar
-jar build/libs/jlineup-cli-4.9.2-all.jar

echo ""
echo "DONE BUILDING NATIVE IMAGE"
Expand All @@ -76,13 +76,13 @@ echo ""
echo "STARTING TEST RUN"
echo ""

mv jlineup-cli-4.9.1-all build/libs/jlineup-cli-4.9.1-all
mv jlineup-cli-4.9.2-all build/libs/jlineup-cli-4.9.2-all
rm ~/.m2/repository/webdriver -rf
./build/libs/jlineup-cli-4.9.1-all -Dwdm.architecture=X64 --config graalvm/lineup_chrome_headless.json --step before
./build/libs/jlineup-cli-4.9.2-all -Dwdm.architecture=X64 --config graalvm/lineup_chrome_headless.json --step before

set +e

./build/libs/jlineup-cli-4.9.1-all -Dwdm.architecture=X64 --config graalvm/lineup_chrome_headless.json --step after
./build/libs/jlineup-cli-4.9.2-all -Dwdm.architecture=X64 --config graalvm/lineup_chrome_headless.json --step after

set -e

Expand Down
10 changes: 5 additions & 5 deletions cli/graalvm/prepare-native-image-build.sh
Original file line number Diff line number Diff line change
Expand Up @@ -45,10 +45,10 @@ echo ""
echo "$JAVA_HOME"

cd cli
"${GRAAL_HOME}"/bin/java -agentlib:native-image-agent=config-output-dir=graalvm -jar build/libs/jlineup-cli-4.9.1-all.jar --config graalvm/lineup_chrome_headless.json --step before || true
"${GRAAL_HOME}"/bin/java -agentlib:native-image-agent=config-merge-dir=graalvm -jar build/libs/jlineup-cli-4.9.1-all.jar --config graalvm/lineup_chrome_headless.json --step after || true
"${GRAAL_HOME}"/bin/java -agentlib:native-image-agent=config-merge-dir=graalvm -jar build/libs/jlineup-cli-4.9.1-all.jar --config graalvm/lineup_firefox_headless.json --step before || true
"${GRAAL_HOME}"/bin/java -agentlib:native-image-agent=config-merge-dir=graalvm -jar build/libs/jlineup-cli-4.9.1-all.jar --config graalvm/lineup_chrome.json --step before || true
"${GRAAL_HOME}"/bin/java -agentlib:native-image-agent=config-merge-dir=graalvm -jar build/libs/jlineup-cli-4.9.1-all.jar --url www.otto.de --step before || true
"${GRAAL_HOME}"/bin/java -agentlib:native-image-agent=config-output-dir=graalvm -jar build/libs/jlineup-cli-4.9.2-all.jar --config graalvm/lineup_chrome_headless.json --step before || true
"${GRAAL_HOME}"/bin/java -agentlib:native-image-agent=config-merge-dir=graalvm -jar build/libs/jlineup-cli-4.9.2-all.jar --config graalvm/lineup_chrome_headless.json --step after || true
"${GRAAL_HOME}"/bin/java -agentlib:native-image-agent=config-merge-dir=graalvm -jar build/libs/jlineup-cli-4.9.2-all.jar --config graalvm/lineup_firefox_headless.json --step before || true
"${GRAAL_HOME}"/bin/java -agentlib:native-image-agent=config-merge-dir=graalvm -jar build/libs/jlineup-cli-4.9.2-all.jar --config graalvm/lineup_chrome.json --step before || true
"${GRAAL_HOME}"/bin/java -agentlib:native-image-agent=config-merge-dir=graalvm -jar build/libs/jlineup-cli-4.9.2-all.jar --url www.otto.de --step before || true

#-J-Djava.security.properties=graalvm/java.security.overrides \
2 changes: 1 addition & 1 deletion docs/CLI.md
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ support. It may also work under MacOS or Windows, but we don't test this.
You can simply download the CLI version by getting the jlineup-cli.jar
from Maven Central in a terminal window:

`wget https://repo1.maven.org/maven2/de/otto/jlineup-cli/4.9.1/jlineup-cli-4.9.1.jar -O jlineup.jar`
`wget https://repo1.maven.org/maven2/de/otto/jlineup-cli/4.9.2/jlineup-cli-4.9.2.jar -O jlineup.jar`

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

Expand Down
2 changes: 1 addition & 1 deletion docs/WEB.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ interface to take JLineup jobs. JLineup WEB requires at least Java 17.
You can simply download the web version by getting the jlineup-web.jar
from Maven Central in a terminal window:

`wget https://repo1.maven.org/maven2/de/otto/jlineup-web/4.9.1/jlineup-web-4.9.1.jar -O jlineup-web.jar`
`wget https://repo1.maven.org/maven2/de/otto/jlineup-web/4.9.2/jlineup-web-4.9.2.jar -O jlineup-web.jar`

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

Expand Down
2 changes: 1 addition & 1 deletion web/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ RUN apt-get update \
&& apt-get upgrade -y \
&& apt-get install -y wget \
&& apt-get install -yf chromium-browser firefox libjpeg-progs \
&& wget -U "jlineup-docker" -O jlineup-web.jar https://repo1.maven.org/maven2/de/otto/jlineup-web/4.9.1/jlineup-web-4.9.1.jar
&& wget -U "jlineup-docker" -O jlineup-web.jar https://repo1.maven.org/maven2/de/otto/jlineup-web/4.9.2/jlineup-web-4.9.2.jar
ADD docker/application.yml application.yml
RUN apt-get remove --auto-remove perl -yf && apt-get purge --auto-remove perl -yf
EXPOSE 8080
Expand Down

0 comments on commit 6d1ebbe

Please sign in to comment.