diff --git a/Dockerfile b/Dockerfile index e5555e1..8776d4c 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,4 +1,4 @@ -FROM fedora:40 +FROM fedora:42 LABEL authors Paul Podgorsek LABEL description Robot Framework in Docker. @@ -32,25 +32,25 @@ ENV ROBOT_UID 1000 ENV ROBOT_GID 1000 # Dependency versions -ENV AWS_CLI_VERSION 1.38.31 +ENV AWS_CLI_VERSION 1.42.11 ENV AXE_SELENIUM_LIBRARY_VERSION 2.1.6 -ENV BROWSER_LIBRARY_VERSION 19.4.0 -ENV CHROME_VERSION 135.0.7049.84 -ENV DATABASE_LIBRARY_VERSION 2.1.3 +ENV BROWSER_LIBRARY_VERSION 19.7.0 +ENV CHROME_VERSION 139.0.7258.68 +ENV DATABASE_LIBRARY_VERSION 2.1.4 ENV DATADRIVER_VERSION 1.11.2 ENV DATETIMETZ_VERSION 1.0.6 -ENV MICROSOFT_EDGE_VERSION 135.0.3179.54 -ENV FAKER_VERSION 5.0.0 -ENV FIREFOX_VERSION 137.0 +ENV MICROSOFT_EDGE_VERSION 139.0.3405.86 +ENV FAKER_VERSION 6.0.0 +ENV FIREFOX_VERSION 141.0 ENV FTP_LIBRARY_VERSION 1.9 ENV GECKO_DRIVER_VERSION v0.36.0 ENV IMAP_LIBRARY_VERSION 0.4.11 -ENV PABOT_VERSION 4.1.1 +ENV PABOT_VERSION 5.0.0 ENV REQUESTS_VERSION 0.9.7 -ENV ROBOT_FRAMEWORK_VERSION 7.2.2 +ENV ROBOT_FRAMEWORK_VERSION 7.3.2 ENV SELENIUM_LIBRARY_VERSION 6.7.1 ENV SSH_LIBRARY_VERSION 3.8.0 -ENV XVFB_VERSION 1.20 +ENV XVFB_VERSION 21.1.18 # By default, no reports are uploaded to AWS S3 ENV AWS_UPLOAD_TO_S3 false @@ -112,11 +112,11 @@ RUN wget -q "https://github.com/mozilla/geckodriver/releases/download/$GECKO_DRI # Install Microsoft Edge & webdriver RUN rpm --import https://packages.microsoft.com/keys/microsoft.asc \ - && dnf config-manager --add-repo https://packages.microsoft.com/yumrepos/edge \ + && dnf config-manager addrepo --from-repofile=https://packages.microsoft.com/yumrepos/edge/config.repo \ && dnf install -y \ microsoft-edge-stable-${MICROSOFT_EDGE_VERSION} \ zip \ - && wget -q "https://msedgedriver.azureedge.net/${MICROSOFT_EDGE_VERSION}/edgedriver_linux64.zip" \ + && wget -q "https://msedgedriver.microsoft.com/${MICROSOFT_EDGE_VERSION}/edgedriver_linux64.zip" \ && unzip edgedriver_linux64.zip -d edge \ && mv edge/msedgedriver /opt/robotframework/drivers/msedgedriver \ && rm -Rf edgedriver_linux64.zip edge/ \ diff --git a/README.md b/README.md index f019670..e7e2f28 100644 --- a/README.md +++ b/README.md @@ -50,23 +50,23 @@ The versioning of this image follows the one of Robot Framework: The versions used are: -* [Robot Framework](https://github.com/robotframework/robotframework) 7.2.2 -* [Robot Framework Browser (Playwright) Library](https://github.com/MarketSquare/robotframework-browser) 19.4.0 -* [Robot Framework DatabaseLibrary](https://github.com/franz-see/Robotframework-Database-Library) 2.1.3 +* [Robot Framework](https://github.com/robotframework/robotframework) 7.3.2 +* [Robot Framework Browser (Playwright) Library](https://github.com/MarketSquare/robotframework-browser) 19.7.0 +* [Robot Framework DatabaseLibrary](https://github.com/franz-see/Robotframework-Database-Library) 2.1.4 * [Robot Framework Datadriver](https://github.com/Snooz82/robotframework-datadriver) 1.11.2 * [Robot Framework DateTimeTZ](https://github.com/testautomation/DateTimeTZ) 1.0.6 -* [Robot Framework Faker](https://github.com/guykisel/robotframework-faker) 5.0.0 +* [Robot Framework Faker](https://github.com/guykisel/robotframework-faker) 6.0.0 * [Robot Framework FTPLibrary](https://github.com/kowalpy/Robot-Framework-FTP-Library) 1.9 * [Robot Framework IMAPLibrary 2](https://pypi.org/project/robotframework-imaplibrary2/) 0.4.11 -* [Robot Framework Pabot](https://github.com/mkorpela/pabot) 4.1.1 +* [Robot Framework Pabot](https://github.com/mkorpela/pabot) 5.0.0 * [Robot Framework Requests](https://github.com/bulkan/robotframework-requests) 0.9.7 * [Robot Framework SeleniumLibrary](https://github.com/robotframework/SeleniumLibrary) 6.7.1 * [Robot Framework SSHLibrary](https://github.com/robotframework/SSHLibrary) 3.8.0 * [Axe Selenium Library](https://github.com/mozilla-services/axe-selenium-python) 2.1.6 -* Firefox 137.0 -* [Chrome for Testing](https://googlechromelabs.github.io/chrome-for-testing/) 135.0 -* Microsoft Edge 135.0 -* [Amazon AWS CLI](https://pypi.org/project/awscli/) 1.38.31 +* Firefox 141.0 +* [Chrome for Testing](https://googlechromelabs.github.io/chrome-for-testing/) 139.0 +* Microsoft Edge 139.0 +* [Amazon AWS CLI](https://pypi.org/project/awscli/) 1.42.11 As stated by [the official GitHub project](https://github.com/robotframework/Selenium2Library), starting from version 3.0, Selenium2Library is renamed to SeleniumLibrary and this project exists mainly to help with transitioning. The Selenium2Library 3.0.0 is also the last release and for new releases, please look at the [SeleniumLibrary](https://github.com/robotframework/SeleniumLibrary) project.