Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Dependency upgrades #472

Merged
merged 15 commits into from
Feb 7, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
25 changes: 13 additions & 12 deletions Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM fedora:38
FROM fedora:39

MAINTAINER Paul Podgorsek <[email protected]>
LABEL description Robot Framework in Docker.
Expand Down Expand Up @@ -29,23 +29,23 @@ ENV ROBOT_UID 1000
ENV ROBOT_GID 1000

# Dependency versions
ENV AWS_CLI_VERSION 1.29.40
ENV AWS_CLI_VERSION 1.32.36
ENV AXE_SELENIUM_LIBRARY_VERSION 2.1.6
ENV BROWSER_LIBRARY_VERSION 16.2.0
ENV CHROMIUM_VERSION 117.0
ENV DATABASE_LIBRARY_VERSION 1.2.4
ENV DATADRIVER_VERSION 1.8.1
ENV BROWSER_LIBRARY_VERSION 18.0.0
ENV CHROMIUM_VERSION 121.0
ENV DATABASE_LIBRARY_VERSION 1.4.3
ENV DATADRIVER_VERSION 1.10.0
ENV DATETIMETZ_VERSION 1.0.6
ENV MICROSOFT_EDGE_VERSION 116.0.1938.69
ENV MICROSOFT_EDGE_VERSION 121.0.2277.106
ENV FAKER_VERSION 5.0.0
ENV FIREFOX_VERSION 117.0
ENV FIREFOX_VERSION 122.0
ENV FTP_LIBRARY_VERSION 1.9
ENV GECKO_DRIVER_VERSION v0.33.0
ENV IMAP_LIBRARY_VERSION 0.4.6
ENV PABOT_VERSION 2.16.0
ENV REQUESTS_VERSION 0.9.5
ENV ROBOT_FRAMEWORK_VERSION 6.1
ENV SELENIUM_LIBRARY_VERSION 6.1.0
ENV PABOT_VERSION 2.18.0
ENV REQUESTS_VERSION 0.9.6
ENV ROBOT_FRAMEWORK_VERSION 7.0
ENV SELENIUM_LIBRARY_VERSION 6.2.0
ENV SSH_LIBRARY_VERSION 3.8.0
ENV XVFB_VERSION 1.20

Expand All @@ -62,6 +62,7 @@ RUN dnf upgrade -y --refresh \
&& dnf install -y \
chromedriver-${CHROMIUM_VERSION}* \
chromium-${CHROMIUM_VERSION}* \
dbus-glib \
firefox-${FIREFOX_VERSION}* \
gcc \
gcc-c++ \
Expand Down
22 changes: 11 additions & 11 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -43,23 +43,23 @@ The versioning of this image follows the one of Robot Framework:

The versions used are:

* [Robot Framework](https://github.com/robotframework/robotframework) 6.1
* [Robot Framework Browser Library](https://github.com/MarketSquare/robotframework-browser) 16.2.0
* [Robot Framework DatabaseLibrary](https://github.com/franz-see/Robotframework-Database-Library) 1.2.4
* [Robot Framework Datadriver](https://github.com/Snooz82/robotframework-datadriver) 1.8.1
* [Robot Framework](https://github.com/robotframework/robotframework) 7.0
* [Robot Framework Browser Library](https://github.com/MarketSquare/robotframework-browser) 18.0.0
* [Robot Framework DatabaseLibrary](https://github.com/franz-see/Robotframework-Database-Library) 1.4.3
* [Robot Framework Datadriver](https://github.com/Snooz82/robotframework-datadriver) 1.10.0
* [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 FTPLibrary](https://github.com/kowalpy/Robot-Framework-FTP-Library) 1.9
* [Robot Framework IMAPLibrary 2](https://pypi.org/project/robotframework-imaplibrary2/) 0.4.6
* [Robot Framework Pabot](https://github.com/mkorpela/pabot) 2.16.0
* [Robot Framework Requests](https://github.com/bulkan/robotframework-requests) 0.9.5
* [Robot Framework SeleniumLibrary](https://github.com/robotframework/SeleniumLibrary) 6.1.0
* [Robot Framework Pabot](https://github.com/mkorpela/pabot) 2.18.0
* [Robot Framework Requests](https://github.com/bulkan/robotframework-requests) 0.9.6
* [Robot Framework SeleniumLibrary](https://github.com/robotframework/SeleniumLibrary) 6.2.0
* [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 117.0
* Chromium 117.0
* Microsoft Edge 116.0.1938.69
* [Amazon AWS CLI](https://pypi.org/project/awscli/) 1.29.40
* Firefox 122.0
* Chromium 121.0
* Microsoft Edge 121.0.2277.106
* [Amazon AWS CLI](https://pypi.org/project/awscli/) 1.32.36

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.

Expand Down
Loading