Skip to content
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
5 changes: 5 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -27,6 +27,10 @@ All notable changes to this project will be documented in this file.

- opensearch: Remove the `performance-analyzer` plugin from the OpenSearch image ([#1357]).

### Fixed

- testing-tools: Re-add `pytest` Python package as well as `diffutils` package ([#1388]).

[#1336]: https://github.com/stackabletech/docker-images/pull/1336
[#1337]: https://github.com/stackabletech/docker-images/pull/1337
[#1340]: https://github.com/stackabletech/docker-images/pull/1340
Expand All @@ -40,6 +44,7 @@ All notable changes to this project will be documented in this file.
[#1373]: https://github.com/stackabletech/docker-images/pull/1373
[#1386]: https://github.com/stackabletech/docker-images/pull/1386
[#1387]: https://github.com/stackabletech/docker-images/pull/1387
[#1388]: https://github.com/stackabletech/docker-images/pull/1388

## [25.11.0] - 2025-11-07

Expand Down
4 changes: 3 additions & 1 deletion testing-tools/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -63,7 +63,9 @@ microdnf install \
curl \
tar \
zip \
unzip
unzip \
`# Required to do test assertions of files` \
diffutils

microdnf clean all
rm -rf /var/cache/yum
Expand Down
2 changes: 2 additions & 0 deletions testing-tools/requirements.txt
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,8 @@
# Beautiful Soup pulls data out of HTML.
beautifulsoup4==4.14.2
requests==2.32.5
# Needed to run Python tests
pytest==9.0.2

# Packages that were previously installed as system packages
certifi==2025.11.12
Expand Down