From 3e8304d3d445c37d82df8ef7c1559c9f776979fb Mon Sep 17 00:00:00 2001 From: Torsten Kilias Date: Wed, 19 Jun 2024 16:36:07 +0200 Subject: [PATCH 1/2] #794: Fixed install_via_pip.pl might downgrade already installed packages (#798) fixes #794 --------- Co-authored-by: Thomas Ubensee <34603111+tomuben@users.noreply.github.com> --- .current_gitmodules | 2 +- doc/changes/changelog.md | 1 + doc/changes/changes_8.2.0.md | 35 ++++++++ doc/changes/package_diffs/8.2.0/README.md | 8 ++ .../8.2.0/standard-EXASOL-all/README.md | 19 +++++ .../base_test_deps/apt_get_packages_diff.md | 10 +++ .../build_deps/apt_get_packages_diff.md | 13 +++ .../apt_get_packages_diff.md | 26 ++++++ .../apt_get_packages_trivy_diff.md | 5 ++ .../python3_pip_packages_diff.md | 79 +++++++++++++++++++ .../flavor_base_deps_r/cran_packages_diff.md | 48 +++++++++++ .../language_deps/apt_get_packages_diff.md | 10 +++ .../language_deps/apt_get_packages_r_diff.md | 8 ++ .../python3_pip_packages_diff.md | 7 ++ .../udfclient_deps/apt_get_packages_diff.md | 10 +++ .../template-Exasol-all-java-17/README.md | 15 ++++ .../base_test_deps/apt_get_packages_diff.md | 11 +++ .../build_deps/apt_get_packages_diff.md | 14 ++++ .../flavor_base_deps/apt_get_packages_diff.md | 9 +++ .../language_deps/apt_get_packages_diff.md | 7 ++ .../security_scan/apt_get_packages_diff.md | 5 ++ .../apt_get_packages_trivy_deps_diff.md | 6 ++ .../udfclient_deps/apt_get_packages_diff.md | 10 +++ .../README.md | 22 ++++++ .../base_test_deps/apt_get_packages_diff.md | 10 +++ .../build_deps/conda_channels_diff.md | 5 ++ .../build_deps/conda_packages_diff.md | 12 +++ .../conda_deps/apt_get_packages_diff.md | 9 +++ .../flavor_base_deps/conda_channels_diff.md | 5 ++ .../flavor_base_deps/conda_packages_diff.md | 4 + .../python3_pip_packages_diff.md | 4 + .../language_deps/conda_channels_diff.md | 5 ++ .../language_deps/conda_packages_diff.md | 15 ++++ .../security_scan/apt_get_packages_diff.md | 5 ++ .../apt_get_packages_trivy_deps_diff.md | 6 ++ .../udfclient_deps/conda_channels_diff.md | 5 ++ .../udfclient_deps/conda_packages_diff.md | 11 +++ .../README.md | 22 ++++++ .../base_test_deps/apt_get_packages_diff.md | 10 +++ .../build_deps/conda_channels_diff.md | 5 ++ .../build_deps/conda_packages_diff.md | 12 +++ .../flavor_base_deps/conda_channels_diff.md | 5 ++ .../flavor_base_deps/conda_packages_diff.md | 5 ++ .../python3_pip_packages_diff.md | 4 + .../language_deps/conda_channels_diff.md | 6 ++ .../language_deps/conda_packages_diff.md | 17 ++++ .../apt_get_packages_diff.md | 9 +++ .../security_scan/apt_get_packages_diff.md | 5 ++ .../apt_get_packages_trivy_deps_diff.md | 6 ++ .../udfclient_deps/conda_channels_diff.md | 5 ++ .../udfclient_deps/conda_packages_diff.md | 11 +++ .../template-Exasol-all-python-3.10/README.md | 17 ++++ .../base_test_deps/apt_get_packages_diff.md | 10 +++ .../build_deps/apt_get_packages_diff.md | 13 +++ .../flavor_base_deps/apt_get_packages_diff.md | 8 ++ .../python3_pip_packages_diff.md | 4 + .../language_deps/apt_get_packages_diff.md | 8 ++ .../python3_pip_packages_diff.md | 7 ++ .../security_scan/apt_get_packages_diff.md | 5 ++ .../apt_get_packages_trivy_deps_diff.md | 6 ++ .../udfclient_deps/apt_get_packages_diff.md | 10 +++ .../8.2.0/template-Exasol-all-r-4/README.md | 19 +++++ .../base_test_deps/apt_get_packages_diff.md | 11 +++ .../build_deps/apt_get_packages_diff.md | 14 ++++ .../flavor_base_deps/apt_get_packages_diff.md | 9 +++ .../flavor_base_deps/cran_packages_diff.md | 4 + .../language_deps/apt_get_packages_diff.md | 6 ++ .../language_deps/apt_get_packages_r_diff.md | 6 ++ .../security_scan/apt_get_packages_diff.md | 5 ++ .../apt_get_packages_oyster_deps_diff.md | 5 ++ .../apt_get_packages_trivy_deps_diff.md | 6 ++ .../security_scan/r_cran_packages_diff.md | 5 ++ .../udfclient_deps/apt_get_packages_diff.md | 10 +++ .../flavor_base_deps_python/Dockerfile | 2 +- .../flavor_base/language_deps/Dockerfile | 2 +- .../flavor_customization/Dockerfile | 2 +- pyproject.toml | 2 +- script-languages | 2 +- 78 files changed, 790 insertions(+), 6 deletions(-) create mode 100644 doc/changes/changes_8.2.0.md create mode 100644 doc/changes/package_diffs/8.2.0/README.md create mode 100644 doc/changes/package_diffs/8.2.0/standard-EXASOL-all/README.md create mode 100644 doc/changes/package_diffs/8.2.0/standard-EXASOL-all/base_test_deps/apt_get_packages_diff.md create mode 100644 doc/changes/package_diffs/8.2.0/standard-EXASOL-all/build_deps/apt_get_packages_diff.md create mode 100644 doc/changes/package_diffs/8.2.0/standard-EXASOL-all/flavor_base_deps_apt/apt_get_packages_diff.md create mode 100644 doc/changes/package_diffs/8.2.0/standard-EXASOL-all/flavor_base_deps_apt/apt_get_packages_trivy_diff.md create mode 100644 doc/changes/package_diffs/8.2.0/standard-EXASOL-all/flavor_base_deps_python/python3_pip_packages_diff.md create mode 100644 doc/changes/package_diffs/8.2.0/standard-EXASOL-all/flavor_base_deps_r/cran_packages_diff.md create mode 100644 doc/changes/package_diffs/8.2.0/standard-EXASOL-all/language_deps/apt_get_packages_diff.md create mode 100644 doc/changes/package_diffs/8.2.0/standard-EXASOL-all/language_deps/apt_get_packages_r_diff.md create mode 100644 doc/changes/package_diffs/8.2.0/standard-EXASOL-all/language_deps/python3_pip_packages_diff.md create mode 100644 doc/changes/package_diffs/8.2.0/standard-EXASOL-all/udfclient_deps/apt_get_packages_diff.md create mode 100644 doc/changes/package_diffs/8.2.0/template-Exasol-all-java-17/README.md create mode 100644 doc/changes/package_diffs/8.2.0/template-Exasol-all-java-17/base_test_deps/apt_get_packages_diff.md create mode 100644 doc/changes/package_diffs/8.2.0/template-Exasol-all-java-17/build_deps/apt_get_packages_diff.md create mode 100644 doc/changes/package_diffs/8.2.0/template-Exasol-all-java-17/flavor_base_deps/apt_get_packages_diff.md create mode 100644 doc/changes/package_diffs/8.2.0/template-Exasol-all-java-17/language_deps/apt_get_packages_diff.md create mode 100644 doc/changes/package_diffs/8.2.0/template-Exasol-all-java-17/security_scan/apt_get_packages_diff.md create mode 100644 doc/changes/package_diffs/8.2.0/template-Exasol-all-java-17/security_scan/apt_get_packages_trivy_deps_diff.md create mode 100644 doc/changes/package_diffs/8.2.0/template-Exasol-all-java-17/udfclient_deps/apt_get_packages_diff.md create mode 100644 doc/changes/package_diffs/8.2.0/template-Exasol-all-python-3.10-conda/README.md create mode 100644 doc/changes/package_diffs/8.2.0/template-Exasol-all-python-3.10-conda/base_test_deps/apt_get_packages_diff.md create mode 100644 doc/changes/package_diffs/8.2.0/template-Exasol-all-python-3.10-conda/build_deps/conda_channels_diff.md create mode 100644 doc/changes/package_diffs/8.2.0/template-Exasol-all-python-3.10-conda/build_deps/conda_packages_diff.md create mode 100644 doc/changes/package_diffs/8.2.0/template-Exasol-all-python-3.10-conda/conda_deps/apt_get_packages_diff.md create mode 100644 doc/changes/package_diffs/8.2.0/template-Exasol-all-python-3.10-conda/flavor_base_deps/conda_channels_diff.md create mode 100644 doc/changes/package_diffs/8.2.0/template-Exasol-all-python-3.10-conda/flavor_base_deps/conda_packages_diff.md create mode 100644 doc/changes/package_diffs/8.2.0/template-Exasol-all-python-3.10-conda/flavor_base_deps/python3_pip_packages_diff.md create mode 100644 doc/changes/package_diffs/8.2.0/template-Exasol-all-python-3.10-conda/language_deps/conda_channels_diff.md create mode 100644 doc/changes/package_diffs/8.2.0/template-Exasol-all-python-3.10-conda/language_deps/conda_packages_diff.md create mode 100644 doc/changes/package_diffs/8.2.0/template-Exasol-all-python-3.10-conda/security_scan/apt_get_packages_diff.md create mode 100644 doc/changes/package_diffs/8.2.0/template-Exasol-all-python-3.10-conda/security_scan/apt_get_packages_trivy_deps_diff.md create mode 100644 doc/changes/package_diffs/8.2.0/template-Exasol-all-python-3.10-conda/udfclient_deps/conda_channels_diff.md create mode 100644 doc/changes/package_diffs/8.2.0/template-Exasol-all-python-3.10-conda/udfclient_deps/conda_packages_diff.md create mode 100644 doc/changes/package_diffs/8.2.0/template-Exasol-all-python-3.10-cuda-conda/README.md create mode 100644 doc/changes/package_diffs/8.2.0/template-Exasol-all-python-3.10-cuda-conda/base_test_deps/apt_get_packages_diff.md create mode 100644 doc/changes/package_diffs/8.2.0/template-Exasol-all-python-3.10-cuda-conda/build_deps/conda_channels_diff.md create mode 100644 doc/changes/package_diffs/8.2.0/template-Exasol-all-python-3.10-cuda-conda/build_deps/conda_packages_diff.md create mode 100644 doc/changes/package_diffs/8.2.0/template-Exasol-all-python-3.10-cuda-conda/flavor_base_deps/conda_channels_diff.md create mode 100644 doc/changes/package_diffs/8.2.0/template-Exasol-all-python-3.10-cuda-conda/flavor_base_deps/conda_packages_diff.md create mode 100644 doc/changes/package_diffs/8.2.0/template-Exasol-all-python-3.10-cuda-conda/flavor_base_deps/python3_pip_packages_diff.md create mode 100644 doc/changes/package_diffs/8.2.0/template-Exasol-all-python-3.10-cuda-conda/language_deps/conda_channels_diff.md create mode 100644 doc/changes/package_diffs/8.2.0/template-Exasol-all-python-3.10-cuda-conda/language_deps/conda_packages_diff.md create mode 100644 doc/changes/package_diffs/8.2.0/template-Exasol-all-python-3.10-cuda-conda/nvidia_driver_deps/apt_get_packages_diff.md create mode 100644 doc/changes/package_diffs/8.2.0/template-Exasol-all-python-3.10-cuda-conda/security_scan/apt_get_packages_diff.md create mode 100644 doc/changes/package_diffs/8.2.0/template-Exasol-all-python-3.10-cuda-conda/security_scan/apt_get_packages_trivy_deps_diff.md create mode 100644 doc/changes/package_diffs/8.2.0/template-Exasol-all-python-3.10-cuda-conda/udfclient_deps/conda_channels_diff.md create mode 100644 doc/changes/package_diffs/8.2.0/template-Exasol-all-python-3.10-cuda-conda/udfclient_deps/conda_packages_diff.md create mode 100644 doc/changes/package_diffs/8.2.0/template-Exasol-all-python-3.10/README.md create mode 100644 doc/changes/package_diffs/8.2.0/template-Exasol-all-python-3.10/base_test_deps/apt_get_packages_diff.md create mode 100644 doc/changes/package_diffs/8.2.0/template-Exasol-all-python-3.10/build_deps/apt_get_packages_diff.md create mode 100644 doc/changes/package_diffs/8.2.0/template-Exasol-all-python-3.10/flavor_base_deps/apt_get_packages_diff.md create mode 100644 doc/changes/package_diffs/8.2.0/template-Exasol-all-python-3.10/flavor_base_deps/python3_pip_packages_diff.md create mode 100644 doc/changes/package_diffs/8.2.0/template-Exasol-all-python-3.10/language_deps/apt_get_packages_diff.md create mode 100644 doc/changes/package_diffs/8.2.0/template-Exasol-all-python-3.10/language_deps/python3_pip_packages_diff.md create mode 100644 doc/changes/package_diffs/8.2.0/template-Exasol-all-python-3.10/security_scan/apt_get_packages_diff.md create mode 100644 doc/changes/package_diffs/8.2.0/template-Exasol-all-python-3.10/security_scan/apt_get_packages_trivy_deps_diff.md create mode 100644 doc/changes/package_diffs/8.2.0/template-Exasol-all-python-3.10/udfclient_deps/apt_get_packages_diff.md create mode 100644 doc/changes/package_diffs/8.2.0/template-Exasol-all-r-4/README.md create mode 100644 doc/changes/package_diffs/8.2.0/template-Exasol-all-r-4/base_test_deps/apt_get_packages_diff.md create mode 100644 doc/changes/package_diffs/8.2.0/template-Exasol-all-r-4/build_deps/apt_get_packages_diff.md create mode 100644 doc/changes/package_diffs/8.2.0/template-Exasol-all-r-4/flavor_base_deps/apt_get_packages_diff.md create mode 100644 doc/changes/package_diffs/8.2.0/template-Exasol-all-r-4/flavor_base_deps/cran_packages_diff.md create mode 100644 doc/changes/package_diffs/8.2.0/template-Exasol-all-r-4/language_deps/apt_get_packages_diff.md create mode 100644 doc/changes/package_diffs/8.2.0/template-Exasol-all-r-4/language_deps/apt_get_packages_r_diff.md create mode 100644 doc/changes/package_diffs/8.2.0/template-Exasol-all-r-4/security_scan/apt_get_packages_diff.md create mode 100644 doc/changes/package_diffs/8.2.0/template-Exasol-all-r-4/security_scan/apt_get_packages_oyster_deps_diff.md create mode 100644 doc/changes/package_diffs/8.2.0/template-Exasol-all-r-4/security_scan/apt_get_packages_trivy_deps_diff.md create mode 100644 doc/changes/package_diffs/8.2.0/template-Exasol-all-r-4/security_scan/r_cran_packages_diff.md create mode 100644 doc/changes/package_diffs/8.2.0/template-Exasol-all-r-4/udfclient_deps/apt_get_packages_diff.md diff --git a/.current_gitmodules b/.current_gitmodules index ffa79f67..8dc9bc8e 100644 --- a/.current_gitmodules +++ b/.current_gitmodules @@ -1 +1 @@ -160000 fba2d07d939c0308866207d6c22ad4f99bb9ef0d 0 script-languages +160000 0831aa25ebe3804f2bd34832338d543de222e756 0 script-languages diff --git a/doc/changes/changelog.md b/doc/changes/changelog.md index 3bad6c9a..648ae5db 100644 --- a/doc/changes/changelog.md +++ b/doc/changes/changelog.md @@ -1,5 +1,6 @@ # Changes +* [8.2.0](changes_8.2.0.md) * [8.1.0](changes_8.1.0.md) * [8.0.0](changes_8.0.0.md) * [7.1.0](changes_7.1.0.md) diff --git a/doc/changes/changes_8.2.0.md b/doc/changes/changes_8.2.0.md new file mode 100644 index 00000000..8ddbfc3c --- /dev/null +++ b/doc/changes/changes_8.2.0.md @@ -0,0 +1,35 @@ +# script-languages-release 8.2.0, released t.b.d. + +Code name: t.b.d. + +## Summary + +t.b.d. + +## [Package Version Comparison between Release 8.1.0 and 8.2.0](package_diffs/8.2.0/README.md) + +## Script-Language-Container-Tool (Exaslct) + +This release uses version 0.19.0 of the container tool. + +## Bug Fixes + +- #794: Fixed install_via_pip.pl might downgrade already installed packages + +## Features / Enhancements + +n/a + +## Documentation + +n/a + +## Refactoring + +n/a + +## Security + +n/a + +Attention: Kernel CVE's can't be fixed by the container itself, rather need to be addressed by the host system executing them. diff --git a/doc/changes/package_diffs/8.2.0/README.md b/doc/changes/package_diffs/8.2.0/README.md new file mode 100644 index 00000000..c512f1e4 --- /dev/null +++ b/doc/changes/package_diffs/8.2.0/README.md @@ -0,0 +1,8 @@ +# Package Version Comparison between 8.2.0 and 8.1.0 + +- [Comparison of flavor Template-exasol-all-python-3.10-conda](template-Exasol-all-python-3.10-conda/README.md) +- [Comparison of flavor Standard-exasol-all](standard-EXASOL-all/README.md) +- [Comparison of flavor Template-exasol-all-python-3.10](template-Exasol-all-python-3.10/README.md) +- [Comparison of flavor Template-exasol-all-java-17](template-Exasol-all-java-17/README.md) +- [Comparison of flavor Template-exasol-all-r-4](template-Exasol-all-r-4/README.md) +- [Comparison of flavor Template-exasol-all-python-3.10-cuda-conda](template-Exasol-all-python-3.10-cuda-conda/README.md) diff --git a/doc/changes/package_diffs/8.2.0/standard-EXASOL-all/README.md b/doc/changes/package_diffs/8.2.0/standard-EXASOL-all/README.md new file mode 100644 index 00000000..80e69175 --- /dev/null +++ b/doc/changes/package_diffs/8.2.0/standard-EXASOL-all/README.md @@ -0,0 +1,19 @@ +# Package Version Comparison between Standard-exasol-all flavor in 8.2.0 and Standard-exasol-all flavor in 8.1.0 + +- Comparison of build step Udfclient_deps + - [Comparison of Apt Get Packages](udfclient_deps/apt_get_packages_diff.md) +- Comparison of build step Language_deps + - [Comparison of Apt Get Packages](language_deps/apt_get_packages_diff.md) + - [Comparison of Apt Get Packages R](language_deps/apt_get_packages_r_diff.md) + - [Comparison of Python3 Pip Packages](language_deps/python3_pip_packages_diff.md) +- Comparison of build step Flavor_base_deps_r + - [Comparison of Cran Packages](flavor_base_deps_r/cran_packages_diff.md) +- Comparison of build step Flavor_base_deps_python + - [Comparison of Python3 Pip Packages](flavor_base_deps_python/python3_pip_packages_diff.md) +- Comparison of build step Flavor_base_deps_apt + - [Comparison of Apt Get Packages](flavor_base_deps_apt/apt_get_packages_diff.md) + - [Comparison of Apt Get Packages Trivy](flavor_base_deps_apt/apt_get_packages_trivy_diff.md) +- Comparison of build step Build_deps + - [Comparison of Apt Get Packages](build_deps/apt_get_packages_diff.md) +- Comparison of build step Base_test_deps + - [Comparison of Apt Get Packages](base_test_deps/apt_get_packages_diff.md) diff --git a/doc/changes/package_diffs/8.2.0/standard-EXASOL-all/base_test_deps/apt_get_packages_diff.md b/doc/changes/package_diffs/8.2.0/standard-EXASOL-all/base_test_deps/apt_get_packages_diff.md new file mode 100644 index 00000000..1f759eeb --- /dev/null +++ b/doc/changes/package_diffs/8.2.0/standard-EXASOL-all/base_test_deps/apt_get_packages_diff.md @@ -0,0 +1,10 @@ + + +| | Package | Version in 8.1.0 | Version in 8.2.0 | Status | +|---:|:----------|:--------------------|:--------------------|:---------| +| 0 | binutils | 2.38-4ubuntu2.6 | 2.38-4ubuntu2.6 | | +| 1 | gdb | 12.1-0ubuntu1~22.04 | 12.1-0ubuntu1~22.04 | | +| 2 | gdbserver | 12.1-0ubuntu1~22.04 | 12.1-0ubuntu1~22.04 | | +| 3 | patchelf | 0.14.3-1 | 0.14.3-1 | | +| 4 | strace | 5.16-0ubuntu3 | 5.16-0ubuntu3 | | +| 5 | valgrind | 1:3.18.1-1ubuntu2 | 1:3.18.1-1ubuntu2 | | \ No newline at end of file diff --git a/doc/changes/package_diffs/8.2.0/standard-EXASOL-all/build_deps/apt_get_packages_diff.md b/doc/changes/package_diffs/8.2.0/standard-EXASOL-all/build_deps/apt_get_packages_diff.md new file mode 100644 index 00000000..fc2dc27b --- /dev/null +++ b/doc/changes/package_diffs/8.2.0/standard-EXASOL-all/build_deps/apt_get_packages_diff.md @@ -0,0 +1,13 @@ + + +| | Package | Version in 8.1.0 | Version in 8.2.0 | Status | +|---:|:------------------|:-----------------------------|:-----------------------------|:---------| +| 0 | build-essential | 12.9ubuntu3 | 12.9ubuntu3 | | +| 1 | chrpath | 0.16-2 | 0.16-2 | | +| 2 | coreutils | 8.32-4.1ubuntu1.2 | 8.32-4.1ubuntu1.2 | | +| 3 | curl | 7.81.0-1ubuntu1.16 | 7.81.0-1ubuntu1.16 | | +| 4 | libpcre3-dev | 2:8.39-13ubuntu0.22.04.1 | 2:8.39-13ubuntu0.22.04.1 | | +| 5 | locales | 2.35-0ubuntu3.8 | 2.35-0ubuntu3.8 | | +| 6 | openjdk-11-jdk | 11.0.23+9-1ubuntu1~22.04.1 | 11.0.23+9-1ubuntu1~22.04.1 | | +| 7 | protobuf-compiler | 3.12.4-1ubuntu7.22.04.1 | 3.12.4-1ubuntu7.22.04.1 | | +| 8 | tar | 1.34+dfsg-1ubuntu0.1.22.04.2 | 1.34+dfsg-1ubuntu0.1.22.04.2 | | \ No newline at end of file diff --git a/doc/changes/package_diffs/8.2.0/standard-EXASOL-all/flavor_base_deps_apt/apt_get_packages_diff.md b/doc/changes/package_diffs/8.2.0/standard-EXASOL-all/flavor_base_deps_apt/apt_get_packages_diff.md new file mode 100644 index 00000000..168a719a --- /dev/null +++ b/doc/changes/package_diffs/8.2.0/standard-EXASOL-all/flavor_base_deps_apt/apt_get_packages_diff.md @@ -0,0 +1,26 @@ + + +| | Package | Version in 8.1.0 | Version in 8.2.0 | Status | +|---:|:---------------------|:-----------------------------|:-----------------------------|:---------| +| 0 | apt-transport-https | 2.4.12 | 2.4.12 | | +| 1 | build-essential | 12.9ubuntu3 | 12.9ubuntu3 | | +| 2 | cmake | 3.22.1-1ubuntu1.22.04.2 | 3.22.1-1ubuntu1.22.04.2 | | +| 3 | git | 1:2.34.1-1ubuntu1.11 | 1:2.34.1-1ubuntu1.11 | | +| 4 | gnupg | 2.2.27-3ubuntu2.1 | 2.2.27-3ubuntu2.1 | | +| 5 | ldap-utils | 2.5.17+dfsg-0ubuntu0.22.04.1 | 2.5.17+dfsg-0ubuntu0.22.04.1 | | +| 6 | libcurl4-openssl-dev | 7.81.0-1ubuntu1.16 | 7.81.0-1ubuntu1.16 | | +| 7 | libhiredis-dev | 0.14.1-2 | 0.14.1-2 | | +| 8 | libldap2-dev | 2.5.17+dfsg-0ubuntu0.22.04.1 | 2.5.17+dfsg-0ubuntu0.22.04.1 | | +| 9 | libldb2 | 2:2.4.4-0ubuntu0.22.04.2 | 2:2.4.4-0ubuntu0.22.04.2 | | +| 10 | libleveldb1d | 1.23-3build1 | 1.23-3build1 | | +| 11 | libsasl2-dev | 2.1.27+dfsg2-3ubuntu1.2 | 2.1.27+dfsg2-3ubuntu1.2 | | +| 12 | libsmbclient | 2:4.15.13+dfsg-0ubuntu1.6 | 2:4.15.13+dfsg-0ubuntu1.6 | | +| 13 | libsmbclient-dev | 2:4.15.13+dfsg-0ubuntu1.6 | 2:4.15.13+dfsg-0ubuntu1.6 | | +| 14 | libxml2-dev | 2.9.13+dfsg-1ubuntu0.4 | 2.9.13+dfsg-1ubuntu0.4 | | +| 15 | maven | 3.6.3-5 | 3.6.3-5 | | +| 16 | openssl | 3.0.2-0ubuntu1.15 | 3.0.2-0ubuntu1.15 | | +| 17 | slapd | 2.5.17+dfsg-0ubuntu0.22.04.1 | 2.5.17+dfsg-0ubuntu0.22.04.1 | | +| 18 | smbclient | 2:4.15.13+dfsg-0ubuntu1.6 | 2:4.15.13+dfsg-0ubuntu1.6 | | +| 19 | unixodbc-dev | 2.3.9-5ubuntu0.1 | 2.3.9-5ubuntu0.1 | | +| 20 | unzip | 6.0-26ubuntu3.2 | 6.0-26ubuntu3.2 | | +| 21 | wget | 1.21.2-2ubuntu1 | 1.21.2-2ubuntu1 | | \ No newline at end of file diff --git a/doc/changes/package_diffs/8.2.0/standard-EXASOL-all/flavor_base_deps_apt/apt_get_packages_trivy_diff.md b/doc/changes/package_diffs/8.2.0/standard-EXASOL-all/flavor_base_deps_apt/apt_get_packages_trivy_diff.md new file mode 100644 index 00000000..4c88edfc --- /dev/null +++ b/doc/changes/package_diffs/8.2.0/standard-EXASOL-all/flavor_base_deps_apt/apt_get_packages_trivy_diff.md @@ -0,0 +1,5 @@ + + +| | Package | Version in 8.1.0 | Version in 8.2.0 | Status | +|---:|:----------|:-------------------|:-------------------|:---------| +| 0 | trivy | 0.51.1 | 0.51.1 | | \ No newline at end of file diff --git a/doc/changes/package_diffs/8.2.0/standard-EXASOL-all/flavor_base_deps_python/python3_pip_packages_diff.md b/doc/changes/package_diffs/8.2.0/standard-EXASOL-all/flavor_base_deps_python/python3_pip_packages_diff.md new file mode 100644 index 00000000..9457cbd6 --- /dev/null +++ b/doc/changes/package_diffs/8.2.0/standard-EXASOL-all/flavor_base_deps_python/python3_pip_packages_diff.md @@ -0,0 +1,79 @@ + + +| | Package | Version in 8.1.0 | Version in 8.2.0 | Status | +|---:|:------------------------------------------------------------------------------------------------------------------------------|:---------------------|:---------------------|:---------| +| 0 | awscrt | 0.20.9 | 0.20.9 | | +| 1 | azure-batch | 14.2.0 | 14.2.0 | | +| 2 | azure-cosmos | 4.6.0 | 4.6.0 | | +| 3 | azure-eventgrid | 4.19.0 | 4.19.0 | | +| 4 | azure-eventhub | 5.11.7 | 5.11.7 | | +| 5 | azure-eventhub-checkpointstoreblob | 1.1.4 | 1.1.4 | | +| 6 | azure-eventhub-checkpointstoreblob-aio | 1.1.4 | 1.1.4 | | +| 7 | azure-identity | 1.16.0 | 1.16.0 | | +| 8 | azure-keyvault | 4.2.0 | 4.2.0 | | +| 9 | azure-keyvault-certificates | 4.8.0 | 4.8.0 | | +| 10 | azure-keyvault-keys | 4.9.0 | 4.9.0 | | +| 11 | azure-keyvault-secrets | 4.8.0 | 4.8.0 | | +| 12 | azure-kusto-data | 4.4.0 | 4.4.0 | | +| 13 | azure-loganalytics | 0.1.1 | 0.1.1 | | +| 14 | azure-servicebus | 7.12.1 | 7.12.1 | | +| 15 | azure-storage-blob | 12.19.1 | 12.19.1 | | +| 16 | azure-storage-file-datalake | 12.14.0 | 12.14.0 | | +| 17 | azure-storage-file-share | 12.15.0 | 12.15.0 | | +| 18 | azure-storage-queue | 12.9.0 | 12.9.0 | | +| 19 | bitarray | 2.9.2 | 2.9.2 | | +| 20 | bitsets | 0.8.4 | 0.8.4 | | +| 21 | boto3 | 1.34.98 | 1.34.98 | | +| 22 | cffi | 1.16.0 | 1.16.0 | | +| 23 | cryptography | 42.0.6 | 42.0.6 | | +| 24 | cython | 3.0.10 | 3.0.10 | | +| 25 | debugpy | 1.8.1 | 1.8.1 | | +| 26 | docutils | 0.21.2 | 0.21.2 | | +| 27 | exasol-bucketfs | 0.9.0 | 0.9.0 | | +| 28 | git+http://github.com/EXASOL/websocket-api.git@5e122932d11a5c52a5889c6882b86a6018efb0fb#egg=exasol-db-api&subdirectory=python | No version specified | No version specified | | +| 29 | google-cloud-asset | 3.26.1 | 3.26.1 | | +| 30 | google-cloud-bigquery | 3.21.0 | 3.21.0 | | +| 31 | google-cloud-bigquery-storage | 2.25.0 | 2.25.0 | | +| 32 | google-cloud-bigtable | 2.23.1 | 2.23.1 | | +| 33 | google-cloud-containeranalysis | 2.14.3 | 2.14.3 | | +| 34 | google-cloud-datacatalog | 3.19.0 | 3.19.0 | | +| 35 | google-cloud-datastore | 2.19.0 | 2.19.0 | | +| 36 | google-cloud-firestore | 2.16.0 | 2.16.0 | | +| 37 | google-cloud-kms | 2.21.4 | 2.21.4 | | +| 38 | google-cloud-logging | 3.10.0 | 3.10.0 | | +| 39 | google-cloud-monitoring | 2.21.0 | 2.21.0 | | +| 40 | google-cloud-ndb | 2.3.1 | 2.3.1 | | +| 41 | google-cloud-pubsub | 2.21.1 | 2.21.1 | | +| 42 | google-cloud-spanner | 3.46.0 | 3.46.0 | | +| 43 | google-cloud-storage | 2.16.0 | 2.16.0 | | +| 44 | google-cloud-trace | 1.13.3 | 1.13.3 | | +| 45 | h2 | 4.1.0 | 4.1.0 | | +| 46 | jinja2 | 3.1.4 | 3.1.4 | | +| 47 | lxml | 5.2.1 | 5.2.1 | | +| 48 | martian | 2.0.post1 | 2.0.post1 | | +| 49 | numba | 0.59.1 | 0.59.1 | | +| 50 | paramiko | 3.4.0 | 3.4.0 | | +| 51 | plyvel | 1.5.1 | 1.5.1 | | +| 52 | protobuf | 4.25.3 | 4.25.3 | | +| 53 | pyOpenSSL | 24.1.0 | 24.1.0 | | +| 54 | pybase64 | 1.3.2 | 1.3.2 | | +| 55 | pybloomfiltermmap3 | 0.5.7 | 0.5.7 | | +| 56 | pycurl | 7.45.3 | 7.45.3 | | +| 57 | pyexasol | 0.25.2 | 0.25.2 | | +| 58 | pyftpdlib | 1.5.9 | 1.5.9 | | +| 59 | pyodbc | 5.1.0 | 5.1.0 | | +| 60 | pysftp | 0.2.9 | 0.2.9 | | +| 61 | pysimdjson | 6.0.2 | 6.0.2 | | +| 62 | pysmbc | 1.0.25.1 | 1.0.25.1 | | +| 63 | python-ldap | 3.4.4 | 3.4.4 | | +| 64 | pytz | 2024.1 | 2024.1 | | +| 65 | pyyaml | 6.0.1 | 6.0.1 | | +| 66 | redis | 5.0.4 | 5.0.4 | | +| 67 | requests | 2.31.0 | 2.31.0 | | +| 68 | roman | 4.2 | 4.2 | | +| 69 | sagemaker | 2.218.1 | 2.218.1 | | +| 70 | scikit-learn | 1.4.2 | 1.4.2 | | +| 71 | scipy | 1.13.0 | 1.13.0 | | +| 72 | setuptools | 69.5.1 | 69.5.1 | | +| 73 | simplejson | 3.19.2 | 3.19.2 | | +| 74 | ujson | 5.9.0 | 5.9.0 | | \ No newline at end of file diff --git a/doc/changes/package_diffs/8.2.0/standard-EXASOL-all/flavor_base_deps_r/cran_packages_diff.md b/doc/changes/package_diffs/8.2.0/standard-EXASOL-all/flavor_base_deps_r/cran_packages_diff.md new file mode 100644 index 00000000..22b0183c --- /dev/null +++ b/doc/changes/package_diffs/8.2.0/standard-EXASOL-all/flavor_base_deps_r/cran_packages_diff.md @@ -0,0 +1,48 @@ + + +| | Package | Version in 8.1.0 | Version in 8.2.0 | Status | +|---:|:--------------|:-------------------|:-------------------|:---------| +| 0 | BradleyTerry2 | 1.1-2 | 1.1-2 | | +| 1 | Formula | 1.2-5 | 1.2-5 | | +| 2 | RCurl | 1.98-1.14 | 1.98-1.14 | | +| 3 | RODBC | 1.3-23 | 1.3-23 | | +| 4 | Rcpp | 1.0.12 | 1.0.12 | | +| 5 | SparseM | 1.81 | 1.81 | | +| 6 | XML | 3.99-0.16.1 | 3.99-0.16.1 | | +| 7 | acepack | 1.4.2 | 1.4.2 | | +| 8 | brglm | 0.7.2 | 0.7.2 | | +| 9 | caret | 6.0-94 | 6.0-94 | | +| 10 | caretEnsemble | 2.0.3 | 2.0.3 | | +| 11 | chron | 2.3-61 | 2.3-61 | | +| 12 | data.table | 1.15.4 | 1.15.4 | | +| 13 | digest | 0.6.35 | 0.6.35 | | +| 14 | dplyr | 1.1.4 | 1.1.4 | | +| 15 | e1071 | 1.7-14 | 1.7-14 | | +| 16 | fastcluster | 1.2.6 | 1.2.6 | | +| 17 | flashClust | 1.01-2 | 1.01-2 | | +| 18 | foreach | 1.5.2 | 1.5.2 | | +| 19 | gbm | 2.1.9 | 2.1.9 | | +| 20 | glue | 1.7.0 | 1.7.0 | | +| 21 | gtools | 3.9.5 | 3.9.5 | | +| 22 | htmltools | 0.5.8.1 | 0.5.8.1 | | +| 23 | httr | 1.4.7 | 1.4.7 | | +| 24 | iterators | 1.0.14 | 1.0.14 | | +| 25 | jsonlite | 1.8.8 | 1.8.8 | | +| 26 | lme4 | 1.1-35.3 | 1.1-35.3 | | +| 27 | magrittr | 2.0.3 | 2.0.3 | | +| 28 | minqa | 1.2.6 | 1.2.6 | | +| 29 | nloptr | 2.0.3 | 2.0.3 | | +| 30 | oysteR | 0.1.1 | 0.1.1 | | +| 31 | plyr | 1.8.9 | 1.8.9 | | +| 32 | profileModel | 0.6.1 | 0.6.1 | | +| 33 | proto | 1.0.0 | 1.0.0 | | +| 34 | purrr | 1.0.2 | 1.0.2 | | +| 35 | randomForest | 4.7-1.1 | 4.7-1.1 | | +| 36 | redux | 1.1.4 | 1.1.4 | | +| 37 | reshape2 | 1.4.4 | 1.4.4 | | +| 38 | rjson | 0.2.21 | 0.2.21 | | +| 39 | scales | 1.3.0 | 1.3.0 | | +| 40 | stringr | 1.5.1 | 1.5.1 | | +| 41 | tibble | 3.2.1 | 3.2.1 | | +| 42 | tidyr | 1.3.1 | 1.3.1 | | +| 43 | yaml | 2.3.8 | 2.3.8 | | \ No newline at end of file diff --git a/doc/changes/package_diffs/8.2.0/standard-EXASOL-all/language_deps/apt_get_packages_diff.md b/doc/changes/package_diffs/8.2.0/standard-EXASOL-all/language_deps/apt_get_packages_diff.md new file mode 100644 index 00000000..acce4877 --- /dev/null +++ b/doc/changes/package_diffs/8.2.0/standard-EXASOL-all/language_deps/apt_get_packages_diff.md @@ -0,0 +1,10 @@ + + +| | Package | Version in 8.1.0 | Version in 8.2.0 | Status | +|---:|:------------------------|:---------------------------|:---------------------------|:---------| +| 0 | ca-certificates | 20230311ubuntu0.22.04.1 | 20230311ubuntu0.22.04.1 | | +| 1 | chrpath | 0.16-2 | 0.16-2 | | +| 2 | curl | 7.81.0-1ubuntu1.16 | 7.81.0-1ubuntu1.16 | | +| 3 | openjdk-11-jdk-headless | 11.0.23+9-1ubuntu1~22.04.1 | 11.0.23+9-1ubuntu1~22.04.1 | | +| 4 | python3-distutils | 3.10.8-1~22.04 | 3.10.8-1~22.04 | | +| 5 | python3.10-dev | 3.10.12-1~22.04.3 | 3.10.12-1~22.04.3 | | \ No newline at end of file diff --git a/doc/changes/package_diffs/8.2.0/standard-EXASOL-all/language_deps/apt_get_packages_r_diff.md b/doc/changes/package_diffs/8.2.0/standard-EXASOL-all/language_deps/apt_get_packages_r_diff.md new file mode 100644 index 00000000..c69de4e9 --- /dev/null +++ b/doc/changes/package_diffs/8.2.0/standard-EXASOL-all/language_deps/apt_get_packages_r_diff.md @@ -0,0 +1,8 @@ + + +| | Package | Version in 8.1.0 | Version in 8.2.0 | Status | +|---:|:--------------|:-------------------|:-------------------|:---------| +| 0 | libexpat1 | 2.4.7-1ubuntu0.3 | 2.4.7-1ubuntu0.3 | | +| 1 | libexpat1-dev | 2.4.7-1ubuntu0.3 | 2.4.7-1ubuntu0.3 | | +| 2 | r-base-core | 4.4.0-1.2204.0 | 4.4.0-1.2204.0 | | +| 3 | r-base-dev | 4.4.0-1.2204.0 | 4.4.0-1.2204.0 | | \ No newline at end of file diff --git a/doc/changes/package_diffs/8.2.0/standard-EXASOL-all/language_deps/python3_pip_packages_diff.md b/doc/changes/package_diffs/8.2.0/standard-EXASOL-all/language_deps/python3_pip_packages_diff.md new file mode 100644 index 00000000..18818c8e --- /dev/null +++ b/doc/changes/package_diffs/8.2.0/standard-EXASOL-all/language_deps/python3_pip_packages_diff.md @@ -0,0 +1,7 @@ + + +| | Package | Version in 8.1.0 | Version in 8.2.0 | Status | +|---:|:----------|:-------------------|:-------------------|:---------| +| 0 | numpy | 1.26.4 | 1.26.4 | | +| 1 | pandas | 2.2.2 | 2.2.2 | | +| 2 | pyarrow | 16.0.0 | 16.0.0 | | \ No newline at end of file diff --git a/doc/changes/package_diffs/8.2.0/standard-EXASOL-all/udfclient_deps/apt_get_packages_diff.md b/doc/changes/package_diffs/8.2.0/standard-EXASOL-all/udfclient_deps/apt_get_packages_diff.md new file mode 100644 index 00000000..36c97816 --- /dev/null +++ b/doc/changes/package_diffs/8.2.0/standard-EXASOL-all/udfclient_deps/apt_get_packages_diff.md @@ -0,0 +1,10 @@ + + +| | Package | Version in 8.1.0 | Version in 8.2.0 | Status | +|---:|:----------------|:------------------------|:------------------------|:---------| +| 0 | coreutils | 8.32-4.1ubuntu1.2 | 8.32-4.1ubuntu1.2 | | +| 1 | libnss-db | 2.2.3pre1-6ubuntu3 | 2.2.3pre1-6ubuntu3 | | +| 2 | libprotobuf-dev | 3.12.4-1ubuntu7.22.04.1 | 3.12.4-1ubuntu7.22.04.1 | | +| 3 | libssl-dev | 3.0.2-0ubuntu1.15 | 3.0.2-0ubuntu1.15 | | +| 4 | libzmq3-dev | 4.3.4-2 | 4.3.4-2 | | +| 5 | locales | 2.35-0ubuntu3.8 | 2.35-0ubuntu3.8 | | \ No newline at end of file diff --git a/doc/changes/package_diffs/8.2.0/template-Exasol-all-java-17/README.md b/doc/changes/package_diffs/8.2.0/template-Exasol-all-java-17/README.md new file mode 100644 index 00000000..f1c7cf75 --- /dev/null +++ b/doc/changes/package_diffs/8.2.0/template-Exasol-all-java-17/README.md @@ -0,0 +1,15 @@ +# Package Version Comparison between Template-exasol-all-java-17 flavor in 8.2.0 and Template-exasol-all-java-17 flavor in 8.1.0 + +- Comparison of build step Udfclient_deps + - [Comparison of Apt Get Packages](udfclient_deps/apt_get_packages_diff.md) +- Comparison of build step Security_scan + - [Comparison of Apt Get Packages](security_scan/apt_get_packages_diff.md) + - [Comparison of Apt Get Packages Trivy Deps](security_scan/apt_get_packages_trivy_deps_diff.md) +- Comparison of build step Language_deps + - [Comparison of Apt Get Packages](language_deps/apt_get_packages_diff.md) +- Comparison of build step Flavor_base_deps + - [Comparison of Apt Get Packages](flavor_base_deps/apt_get_packages_diff.md) +- Comparison of build step Build_deps + - [Comparison of Apt Get Packages](build_deps/apt_get_packages_diff.md) +- Comparison of build step Base_test_deps + - [Comparison of Apt Get Packages](base_test_deps/apt_get_packages_diff.md) diff --git a/doc/changes/package_diffs/8.2.0/template-Exasol-all-java-17/base_test_deps/apt_get_packages_diff.md b/doc/changes/package_diffs/8.2.0/template-Exasol-all-java-17/base_test_deps/apt_get_packages_diff.md new file mode 100644 index 00000000..32bc9b67 --- /dev/null +++ b/doc/changes/package_diffs/8.2.0/template-Exasol-all-java-17/base_test_deps/apt_get_packages_diff.md @@ -0,0 +1,11 @@ + + +| | Package | Version in 8.1.0 | Version in 8.2.0 | Status | +|---:|:----------|:--------------------|:--------------------|:---------| +| 0 | binutils | 2.38-4ubuntu2.6 | 2.38-4ubuntu2.6 | | +| 1 | chrpath | 0.16-2 | 0.16-2 | | +| 2 | gdb | 12.1-0ubuntu1~22.04 | 12.1-0ubuntu1~22.04 | | +| 3 | gdbserver | 12.1-0ubuntu1~22.04 | 12.1-0ubuntu1~22.04 | | +| 4 | patchelf | 0.14.3-1 | 0.14.3-1 | | +| 5 | strace | 5.16-0ubuntu3 | 5.16-0ubuntu3 | | +| 6 | valgrind | 1:3.18.1-1ubuntu2 | 1:3.18.1-1ubuntu2 | | \ No newline at end of file diff --git a/doc/changes/package_diffs/8.2.0/template-Exasol-all-java-17/build_deps/apt_get_packages_diff.md b/doc/changes/package_diffs/8.2.0/template-Exasol-all-java-17/build_deps/apt_get_packages_diff.md new file mode 100644 index 00000000..724ed775 --- /dev/null +++ b/doc/changes/package_diffs/8.2.0/template-Exasol-all-java-17/build_deps/apt_get_packages_diff.md @@ -0,0 +1,14 @@ + + +| | Package | Version in 8.1.0 | Version in 8.2.0 | Status | +|---:|:------------------------|:-----------------------------|:-----------------------------|:---------| +| 0 | build-essential | 12.9ubuntu3 | 12.9ubuntu3 | | +| 1 | chrpath | 0.16-2 | 0.16-2 | | +| 2 | coreutils | 8.32-4.1ubuntu1.2 | 8.32-4.1ubuntu1.2 | | +| 3 | curl | 7.81.0-1ubuntu1.16 | 7.81.0-1ubuntu1.16 | | +| 4 | libpcre3-dev | 2:8.39-13ubuntu0.22.04.1 | 2:8.39-13ubuntu0.22.04.1 | | +| 5 | locales | 2.35-0ubuntu3.8 | 2.35-0ubuntu3.8 | | +| 6 | openjdk-17-jdk-headless | 17.0.11+9-1~22.04.1 | 17.0.11+9-1~22.04.1 | | +| 7 | protobuf-compiler | 3.12.4-1ubuntu7.22.04.1 | 3.12.4-1ubuntu7.22.04.1 | | +| 8 | python3 | 3.10.6-1~22.04 | 3.10.6-1~22.04 | | +| 9 | tar | 1.34+dfsg-1ubuntu0.1.22.04.2 | 1.34+dfsg-1ubuntu0.1.22.04.2 | | \ No newline at end of file diff --git a/doc/changes/package_diffs/8.2.0/template-Exasol-all-java-17/flavor_base_deps/apt_get_packages_diff.md b/doc/changes/package_diffs/8.2.0/template-Exasol-all-java-17/flavor_base_deps/apt_get_packages_diff.md new file mode 100644 index 00000000..1bddfdda --- /dev/null +++ b/doc/changes/package_diffs/8.2.0/template-Exasol-all-java-17/flavor_base_deps/apt_get_packages_diff.md @@ -0,0 +1,9 @@ + + +| | Package | Version in 8.1.0 | Version in 8.2.0 | Status | +|---:|:----------|:---------------------|:---------------------|:---------| +| 0 | coreutils | 8.32-4.1ubuntu1.2 | 8.32-4.1ubuntu1.2 | | +| 1 | git | 1:2.34.1-1ubuntu1.11 | 1:2.34.1-1ubuntu1.11 | | +| 2 | locales | 2.35-0ubuntu3.8 | 2.35-0ubuntu3.8 | | +| 3 | unzip | 6.0-26ubuntu3.2 | 6.0-26ubuntu3.2 | | +| 4 | wget | 1.21.2-2ubuntu1 | 1.21.2-2ubuntu1 | | \ No newline at end of file diff --git a/doc/changes/package_diffs/8.2.0/template-Exasol-all-java-17/language_deps/apt_get_packages_diff.md b/doc/changes/package_diffs/8.2.0/template-Exasol-all-java-17/language_deps/apt_get_packages_diff.md new file mode 100644 index 00000000..7d31386e --- /dev/null +++ b/doc/changes/package_diffs/8.2.0/template-Exasol-all-java-17/language_deps/apt_get_packages_diff.md @@ -0,0 +1,7 @@ + + +| | Package | Version in 8.1.0 | Version in 8.2.0 | Status | +|---:|:------------------------|:------------------------|:------------------------|:---------| +| 0 | ca-certificates | 20230311ubuntu0.22.04.1 | 20230311ubuntu0.22.04.1 | | +| 1 | curl | 7.81.0-1ubuntu1.16 | 7.81.0-1ubuntu1.16 | | +| 2 | openjdk-17-jdk-headless | 17.0.11+9-1~22.04.1 | 17.0.11+9-1~22.04.1 | | \ No newline at end of file diff --git a/doc/changes/package_diffs/8.2.0/template-Exasol-all-java-17/security_scan/apt_get_packages_diff.md b/doc/changes/package_diffs/8.2.0/template-Exasol-all-java-17/security_scan/apt_get_packages_diff.md new file mode 100644 index 00000000..8b52e239 --- /dev/null +++ b/doc/changes/package_diffs/8.2.0/template-Exasol-all-java-17/security_scan/apt_get_packages_diff.md @@ -0,0 +1,5 @@ + + +| | Package | Version in 8.1.0 | Version in 8.2.0 | Status | +|---:|:----------|:---------------------|:---------------------|:---------| +| 0 | trivy | No version specified | No version specified | | \ No newline at end of file diff --git a/doc/changes/package_diffs/8.2.0/template-Exasol-all-java-17/security_scan/apt_get_packages_trivy_deps_diff.md b/doc/changes/package_diffs/8.2.0/template-Exasol-all-java-17/security_scan/apt_get_packages_trivy_deps_diff.md new file mode 100644 index 00000000..8f528b45 --- /dev/null +++ b/doc/changes/package_diffs/8.2.0/template-Exasol-all-java-17/security_scan/apt_get_packages_trivy_deps_diff.md @@ -0,0 +1,6 @@ + + +| | Package | Version in 8.1.0 | Version in 8.2.0 | Status | +|---:|:--------------------|:---------------------|:---------------------|:---------| +| 0 | apt-transport-https | No version specified | No version specified | | +| 1 | gnupg | No version specified | No version specified | | \ No newline at end of file diff --git a/doc/changes/package_diffs/8.2.0/template-Exasol-all-java-17/udfclient_deps/apt_get_packages_diff.md b/doc/changes/package_diffs/8.2.0/template-Exasol-all-java-17/udfclient_deps/apt_get_packages_diff.md new file mode 100644 index 00000000..36c97816 --- /dev/null +++ b/doc/changes/package_diffs/8.2.0/template-Exasol-all-java-17/udfclient_deps/apt_get_packages_diff.md @@ -0,0 +1,10 @@ + + +| | Package | Version in 8.1.0 | Version in 8.2.0 | Status | +|---:|:----------------|:------------------------|:------------------------|:---------| +| 0 | coreutils | 8.32-4.1ubuntu1.2 | 8.32-4.1ubuntu1.2 | | +| 1 | libnss-db | 2.2.3pre1-6ubuntu3 | 2.2.3pre1-6ubuntu3 | | +| 2 | libprotobuf-dev | 3.12.4-1ubuntu7.22.04.1 | 3.12.4-1ubuntu7.22.04.1 | | +| 3 | libssl-dev | 3.0.2-0ubuntu1.15 | 3.0.2-0ubuntu1.15 | | +| 4 | libzmq3-dev | 4.3.4-2 | 4.3.4-2 | | +| 5 | locales | 2.35-0ubuntu3.8 | 2.35-0ubuntu3.8 | | \ No newline at end of file diff --git a/doc/changes/package_diffs/8.2.0/template-Exasol-all-python-3.10-conda/README.md b/doc/changes/package_diffs/8.2.0/template-Exasol-all-python-3.10-conda/README.md new file mode 100644 index 00000000..6b07f68b --- /dev/null +++ b/doc/changes/package_diffs/8.2.0/template-Exasol-all-python-3.10-conda/README.md @@ -0,0 +1,22 @@ +# Package Version Comparison between Template-exasol-all-python-3.10-conda flavor in 8.2.0 and Template-exasol-all-python-3.10-conda flavor in 8.1.0 + +- Comparison of build step Udfclient_deps + - [Comparison of Conda Channels](udfclient_deps/conda_channels_diff.md) + - [Comparison of Conda Packages](udfclient_deps/conda_packages_diff.md) +- Comparison of build step Security_scan + - [Comparison of Apt Get Packages](security_scan/apt_get_packages_diff.md) + - [Comparison of Apt Get Packages Trivy Deps](security_scan/apt_get_packages_trivy_deps_diff.md) +- Comparison of build step Language_deps + - [Comparison of Conda Channels](language_deps/conda_channels_diff.md) + - [Comparison of Conda Packages](language_deps/conda_packages_diff.md) +- Comparison of build step Flavor_base_deps + - [Comparison of Conda Channels](flavor_base_deps/conda_channels_diff.md) + - [Comparison of Conda Packages](flavor_base_deps/conda_packages_diff.md) + - [Comparison of Python3 Pip Packages](flavor_base_deps/python3_pip_packages_diff.md) +- Comparison of build step Conda_deps + - [Comparison of Apt Get Packages](conda_deps/apt_get_packages_diff.md) +- Comparison of build step Build_deps + - [Comparison of Conda Channels](build_deps/conda_channels_diff.md) + - [Comparison of Conda Packages](build_deps/conda_packages_diff.md) +- Comparison of build step Base_test_deps + - [Comparison of Apt Get Packages](base_test_deps/apt_get_packages_diff.md) diff --git a/doc/changes/package_diffs/8.2.0/template-Exasol-all-python-3.10-conda/base_test_deps/apt_get_packages_diff.md b/doc/changes/package_diffs/8.2.0/template-Exasol-all-python-3.10-conda/base_test_deps/apt_get_packages_diff.md new file mode 100644 index 00000000..1f759eeb --- /dev/null +++ b/doc/changes/package_diffs/8.2.0/template-Exasol-all-python-3.10-conda/base_test_deps/apt_get_packages_diff.md @@ -0,0 +1,10 @@ + + +| | Package | Version in 8.1.0 | Version in 8.2.0 | Status | +|---:|:----------|:--------------------|:--------------------|:---------| +| 0 | binutils | 2.38-4ubuntu2.6 | 2.38-4ubuntu2.6 | | +| 1 | gdb | 12.1-0ubuntu1~22.04 | 12.1-0ubuntu1~22.04 | | +| 2 | gdbserver | 12.1-0ubuntu1~22.04 | 12.1-0ubuntu1~22.04 | | +| 3 | patchelf | 0.14.3-1 | 0.14.3-1 | | +| 4 | strace | 5.16-0ubuntu3 | 5.16-0ubuntu3 | | +| 5 | valgrind | 1:3.18.1-1ubuntu2 | 1:3.18.1-1ubuntu2 | | \ No newline at end of file diff --git a/doc/changes/package_diffs/8.2.0/template-Exasol-all-python-3.10-conda/build_deps/conda_channels_diff.md b/doc/changes/package_diffs/8.2.0/template-Exasol-all-python-3.10-conda/build_deps/conda_channels_diff.md new file mode 100644 index 00000000..447964a1 --- /dev/null +++ b/doc/changes/package_diffs/8.2.0/template-Exasol-all-python-3.10-conda/build_deps/conda_channels_diff.md @@ -0,0 +1,5 @@ + + +| | Package | Version in 8.1.0 | Version in 8.2.0 | Status | +|---:|:------------|:---------------------|:---------------------|:---------| +| 0 | conda-forge | No version specified | No version specified | | \ No newline at end of file diff --git a/doc/changes/package_diffs/8.2.0/template-Exasol-all-python-3.10-conda/build_deps/conda_packages_diff.md b/doc/changes/package_diffs/8.2.0/template-Exasol-all-python-3.10-conda/build_deps/conda_packages_diff.md new file mode 100644 index 00000000..a0f02d49 --- /dev/null +++ b/doc/changes/package_diffs/8.2.0/template-Exasol-all-python-3.10-conda/build_deps/conda_packages_diff.md @@ -0,0 +1,12 @@ + + +| | Package | Version in 8.1.0 | Version in 8.2.0 | Status | +|---:|:-------------|:-------------------|:-------------------|:---------| +| 0 | bazel | 5.2.0 | 5.2.0 | | +| 1 | chrpath | 0.16 | 0.16 | | +| 2 | gcc_linux-64 | 11.2.0 | 11.2.0 | | +| 3 | gxx_linux-64 | 11.2.0 | 11.2.0 | | +| 4 | make | 4.3 | 4.3 | | +| 5 | openjdk | 11.0.15 | 11.0.15 | | +| 6 | pcre | 8.45 | 8.45 | | +| 7 | protobuf | 4.25.3 | 4.25.3 | | \ No newline at end of file diff --git a/doc/changes/package_diffs/8.2.0/template-Exasol-all-python-3.10-conda/conda_deps/apt_get_packages_diff.md b/doc/changes/package_diffs/8.2.0/template-Exasol-all-python-3.10-conda/conda_deps/apt_get_packages_diff.md new file mode 100644 index 00000000..69884028 --- /dev/null +++ b/doc/changes/package_diffs/8.2.0/template-Exasol-all-python-3.10-conda/conda_deps/apt_get_packages_diff.md @@ -0,0 +1,9 @@ + + +| | Package | Version in 8.1.0 | Version in 8.2.0 | Status | +|---:|:----------------|:------------------------|:------------------------|:---------| +| 0 | bzip2 | 1.0.8-5build1 | 1.0.8-5build1 | | +| 1 | ca-certificates | 20230311ubuntu0.22.04.1 | 20230311ubuntu0.22.04.1 | | +| 2 | coreutils | 8.32-4.1ubuntu1.2 | 8.32-4.1ubuntu1.2 | | +| 3 | curl | 7.81.0-1ubuntu1.16 | 7.81.0-1ubuntu1.16 | | +| 4 | locales | 2.35-0ubuntu3.8 | 2.35-0ubuntu3.8 | | \ No newline at end of file diff --git a/doc/changes/package_diffs/8.2.0/template-Exasol-all-python-3.10-conda/flavor_base_deps/conda_channels_diff.md b/doc/changes/package_diffs/8.2.0/template-Exasol-all-python-3.10-conda/flavor_base_deps/conda_channels_diff.md new file mode 100644 index 00000000..447964a1 --- /dev/null +++ b/doc/changes/package_diffs/8.2.0/template-Exasol-all-python-3.10-conda/flavor_base_deps/conda_channels_diff.md @@ -0,0 +1,5 @@ + + +| | Package | Version in 8.1.0 | Version in 8.2.0 | Status | +|---:|:------------|:---------------------|:---------------------|:---------| +| 0 | conda-forge | No version specified | No version specified | | \ No newline at end of file diff --git a/doc/changes/package_diffs/8.2.0/template-Exasol-all-python-3.10-conda/flavor_base_deps/conda_packages_diff.md b/doc/changes/package_diffs/8.2.0/template-Exasol-all-python-3.10-conda/flavor_base_deps/conda_packages_diff.md new file mode 100644 index 00000000..9e05b0b1 --- /dev/null +++ b/doc/changes/package_diffs/8.2.0/template-Exasol-all-python-3.10-conda/flavor_base_deps/conda_packages_diff.md @@ -0,0 +1,4 @@ + + +| Package | Version in 8.1.0 | Version in 8.2.0 | Status | +|-----------|--------------------|--------------------|----------| \ No newline at end of file diff --git a/doc/changes/package_diffs/8.2.0/template-Exasol-all-python-3.10-conda/flavor_base_deps/python3_pip_packages_diff.md b/doc/changes/package_diffs/8.2.0/template-Exasol-all-python-3.10-conda/flavor_base_deps/python3_pip_packages_diff.md new file mode 100644 index 00000000..9e05b0b1 --- /dev/null +++ b/doc/changes/package_diffs/8.2.0/template-Exasol-all-python-3.10-conda/flavor_base_deps/python3_pip_packages_diff.md @@ -0,0 +1,4 @@ + + +| Package | Version in 8.1.0 | Version in 8.2.0 | Status | +|-----------|--------------------|--------------------|----------| \ No newline at end of file diff --git a/doc/changes/package_diffs/8.2.0/template-Exasol-all-python-3.10-conda/language_deps/conda_channels_diff.md b/doc/changes/package_diffs/8.2.0/template-Exasol-all-python-3.10-conda/language_deps/conda_channels_diff.md new file mode 100644 index 00000000..447964a1 --- /dev/null +++ b/doc/changes/package_diffs/8.2.0/template-Exasol-all-python-3.10-conda/language_deps/conda_channels_diff.md @@ -0,0 +1,5 @@ + + +| | Package | Version in 8.1.0 | Version in 8.2.0 | Status | +|---:|:------------|:---------------------|:---------------------|:---------| +| 0 | conda-forge | No version specified | No version specified | | \ No newline at end of file diff --git a/doc/changes/package_diffs/8.2.0/template-Exasol-all-python-3.10-conda/language_deps/conda_packages_diff.md b/doc/changes/package_diffs/8.2.0/template-Exasol-all-python-3.10-conda/language_deps/conda_packages_diff.md new file mode 100644 index 00000000..9bf5a19f --- /dev/null +++ b/doc/changes/package_diffs/8.2.0/template-Exasol-all-python-3.10-conda/language_deps/conda_packages_diff.md @@ -0,0 +1,15 @@ + + +| | Package | Version in 8.1.0 | Version in 8.2.0 | Status | +|---:|:-----------------|:---------------------|:---------------------|:---------| +| 0 | cryptography | 42.0.7 | 42.0.7 | | +| 1 | icu | 70.1=h27087fc_0 | 70.1=h27087fc_0 | | +| 2 | ld_impl_linux-64 | 2.36.1 | 2.36.1 | | +| 3 | libblas | 3.9.0=15_linux64_mkl | 3.9.0=15_linux64_mkl | | +| 4 | libxcrypt | 4.4.36 | 4.4.36 | | +| 5 | libxml2 | 2.10.3=hca2bb57_4 | 2.10.3=hca2bb57_4 | | +| 6 | mamba | 1.5.1 | 1.5.1 | | +| 7 | numpy | 1.26.2 | 1.26.2 | | +| 8 | pandas | 2.2.2 | 2.2.2 | | +| 9 | pyarrow | 16.0.0 | 16.0.0 | | +| 10 | python | 3.10.4 | 3.10.4 | | \ No newline at end of file diff --git a/doc/changes/package_diffs/8.2.0/template-Exasol-all-python-3.10-conda/security_scan/apt_get_packages_diff.md b/doc/changes/package_diffs/8.2.0/template-Exasol-all-python-3.10-conda/security_scan/apt_get_packages_diff.md new file mode 100644 index 00000000..8b52e239 --- /dev/null +++ b/doc/changes/package_diffs/8.2.0/template-Exasol-all-python-3.10-conda/security_scan/apt_get_packages_diff.md @@ -0,0 +1,5 @@ + + +| | Package | Version in 8.1.0 | Version in 8.2.0 | Status | +|---:|:----------|:---------------------|:---------------------|:---------| +| 0 | trivy | No version specified | No version specified | | \ No newline at end of file diff --git a/doc/changes/package_diffs/8.2.0/template-Exasol-all-python-3.10-conda/security_scan/apt_get_packages_trivy_deps_diff.md b/doc/changes/package_diffs/8.2.0/template-Exasol-all-python-3.10-conda/security_scan/apt_get_packages_trivy_deps_diff.md new file mode 100644 index 00000000..8f528b45 --- /dev/null +++ b/doc/changes/package_diffs/8.2.0/template-Exasol-all-python-3.10-conda/security_scan/apt_get_packages_trivy_deps_diff.md @@ -0,0 +1,6 @@ + + +| | Package | Version in 8.1.0 | Version in 8.2.0 | Status | +|---:|:--------------------|:---------------------|:---------------------|:---------| +| 0 | apt-transport-https | No version specified | No version specified | | +| 1 | gnupg | No version specified | No version specified | | \ No newline at end of file diff --git a/doc/changes/package_diffs/8.2.0/template-Exasol-all-python-3.10-conda/udfclient_deps/conda_channels_diff.md b/doc/changes/package_diffs/8.2.0/template-Exasol-all-python-3.10-conda/udfclient_deps/conda_channels_diff.md new file mode 100644 index 00000000..447964a1 --- /dev/null +++ b/doc/changes/package_diffs/8.2.0/template-Exasol-all-python-3.10-conda/udfclient_deps/conda_channels_diff.md @@ -0,0 +1,5 @@ + + +| | Package | Version in 8.1.0 | Version in 8.2.0 | Status | +|---:|:------------|:---------------------|:---------------------|:---------| +| 0 | conda-forge | No version specified | No version specified | | \ No newline at end of file diff --git a/doc/changes/package_diffs/8.2.0/template-Exasol-all-python-3.10-conda/udfclient_deps/conda_packages_diff.md b/doc/changes/package_diffs/8.2.0/template-Exasol-all-python-3.10-conda/udfclient_deps/conda_packages_diff.md new file mode 100644 index 00000000..2974b0d1 --- /dev/null +++ b/doc/changes/package_diffs/8.2.0/template-Exasol-all-python-3.10-conda/udfclient_deps/conda_packages_diff.md @@ -0,0 +1,11 @@ + + +| | Package | Version in 8.1.0 | Version in 8.2.0 | Status | +|---:|:--------------|:-------------------|:-------------------|:---------| +| 0 | _openmp_mutex | 4.5=2_kmp_llvm | 4.5=2_kmp_llvm | | +| 1 | cppzmq | 4.10.0 | 4.10.0 | | +| 2 | libprotobuf | 4.25.3 | 4.25.3 | | +| 3 | libzlib | 1.2.13 | 1.2.13 | | +| 4 | nss | 3.100 | 3.100 | | +| 5 | openssl | 3.3.0 | 3.3.0 | | +| 6 | zeromq | 4.3.5 | 4.3.5 | | \ No newline at end of file diff --git a/doc/changes/package_diffs/8.2.0/template-Exasol-all-python-3.10-cuda-conda/README.md b/doc/changes/package_diffs/8.2.0/template-Exasol-all-python-3.10-cuda-conda/README.md new file mode 100644 index 00000000..e5ce6f42 --- /dev/null +++ b/doc/changes/package_diffs/8.2.0/template-Exasol-all-python-3.10-cuda-conda/README.md @@ -0,0 +1,22 @@ +# Package Version Comparison between Template-exasol-all-python-3.10-cuda-conda flavor in 8.2.0 and Template-exasol-all-python-3.10-cuda-conda flavor in 8.1.0 + +- Comparison of build step Udfclient_deps + - [Comparison of Conda Channels](udfclient_deps/conda_channels_diff.md) + - [Comparison of Conda Packages](udfclient_deps/conda_packages_diff.md) +- Comparison of build step Security_scan + - [Comparison of Apt Get Packages](security_scan/apt_get_packages_diff.md) + - [Comparison of Apt Get Packages Trivy Deps](security_scan/apt_get_packages_trivy_deps_diff.md) +- Comparison of build step Nvidia_driver_deps + - [Comparison of Apt Get Packages](nvidia_driver_deps/apt_get_packages_diff.md) +- Comparison of build step Language_deps + - [Comparison of Conda Channels](language_deps/conda_channels_diff.md) + - [Comparison of Conda Packages](language_deps/conda_packages_diff.md) +- Comparison of build step Flavor_base_deps + - [Comparison of Conda Channels](flavor_base_deps/conda_channels_diff.md) + - [Comparison of Conda Packages](flavor_base_deps/conda_packages_diff.md) + - [Comparison of Python3 Pip Packages](flavor_base_deps/python3_pip_packages_diff.md) +- Comparison of build step Build_deps + - [Comparison of Conda Channels](build_deps/conda_channels_diff.md) + - [Comparison of Conda Packages](build_deps/conda_packages_diff.md) +- Comparison of build step Base_test_deps + - [Comparison of Apt Get Packages](base_test_deps/apt_get_packages_diff.md) diff --git a/doc/changes/package_diffs/8.2.0/template-Exasol-all-python-3.10-cuda-conda/base_test_deps/apt_get_packages_diff.md b/doc/changes/package_diffs/8.2.0/template-Exasol-all-python-3.10-cuda-conda/base_test_deps/apt_get_packages_diff.md new file mode 100644 index 00000000..1f759eeb --- /dev/null +++ b/doc/changes/package_diffs/8.2.0/template-Exasol-all-python-3.10-cuda-conda/base_test_deps/apt_get_packages_diff.md @@ -0,0 +1,10 @@ + + +| | Package | Version in 8.1.0 | Version in 8.2.0 | Status | +|---:|:----------|:--------------------|:--------------------|:---------| +| 0 | binutils | 2.38-4ubuntu2.6 | 2.38-4ubuntu2.6 | | +| 1 | gdb | 12.1-0ubuntu1~22.04 | 12.1-0ubuntu1~22.04 | | +| 2 | gdbserver | 12.1-0ubuntu1~22.04 | 12.1-0ubuntu1~22.04 | | +| 3 | patchelf | 0.14.3-1 | 0.14.3-1 | | +| 4 | strace | 5.16-0ubuntu3 | 5.16-0ubuntu3 | | +| 5 | valgrind | 1:3.18.1-1ubuntu2 | 1:3.18.1-1ubuntu2 | | \ No newline at end of file diff --git a/doc/changes/package_diffs/8.2.0/template-Exasol-all-python-3.10-cuda-conda/build_deps/conda_channels_diff.md b/doc/changes/package_diffs/8.2.0/template-Exasol-all-python-3.10-cuda-conda/build_deps/conda_channels_diff.md new file mode 100644 index 00000000..447964a1 --- /dev/null +++ b/doc/changes/package_diffs/8.2.0/template-Exasol-all-python-3.10-cuda-conda/build_deps/conda_channels_diff.md @@ -0,0 +1,5 @@ + + +| | Package | Version in 8.1.0 | Version in 8.2.0 | Status | +|---:|:------------|:---------------------|:---------------------|:---------| +| 0 | conda-forge | No version specified | No version specified | | \ No newline at end of file diff --git a/doc/changes/package_diffs/8.2.0/template-Exasol-all-python-3.10-cuda-conda/build_deps/conda_packages_diff.md b/doc/changes/package_diffs/8.2.0/template-Exasol-all-python-3.10-cuda-conda/build_deps/conda_packages_diff.md new file mode 100644 index 00000000..e4f949cb --- /dev/null +++ b/doc/changes/package_diffs/8.2.0/template-Exasol-all-python-3.10-cuda-conda/build_deps/conda_packages_diff.md @@ -0,0 +1,12 @@ + + +| | Package | Version in 8.1.0 | Version in 8.2.0 | Status | +|---:|:-------------|:-------------------|:-------------------|:---------| +| 0 | bazel | 5.2.0 | 5.2.0 | | +| 1 | chrpath | 0.16 | 0.16 | | +| 2 | gcc_linux-64 | 12.1.0 | 12.1.0 | | +| 3 | gxx_linux-64 | 12.1.0 | 12.1.0 | | +| 4 | make | 4.3 | 4.3 | | +| 5 | openjdk | 11.0.15 | 11.0.15 | | +| 6 | pcre | 8.45 | 8.45 | | +| 7 | protobuf | 4.25.3 | 4.25.3 | | \ No newline at end of file diff --git a/doc/changes/package_diffs/8.2.0/template-Exasol-all-python-3.10-cuda-conda/flavor_base_deps/conda_channels_diff.md b/doc/changes/package_diffs/8.2.0/template-Exasol-all-python-3.10-cuda-conda/flavor_base_deps/conda_channels_diff.md new file mode 100644 index 00000000..447964a1 --- /dev/null +++ b/doc/changes/package_diffs/8.2.0/template-Exasol-all-python-3.10-cuda-conda/flavor_base_deps/conda_channels_diff.md @@ -0,0 +1,5 @@ + + +| | Package | Version in 8.1.0 | Version in 8.2.0 | Status | +|---:|:------------|:---------------------|:---------------------|:---------| +| 0 | conda-forge | No version specified | No version specified | | \ No newline at end of file diff --git a/doc/changes/package_diffs/8.2.0/template-Exasol-all-python-3.10-cuda-conda/flavor_base_deps/conda_packages_diff.md b/doc/changes/package_diffs/8.2.0/template-Exasol-all-python-3.10-cuda-conda/flavor_base_deps/conda_packages_diff.md new file mode 100644 index 00000000..5fe67d07 --- /dev/null +++ b/doc/changes/package_diffs/8.2.0/template-Exasol-all-python-3.10-cuda-conda/flavor_base_deps/conda_packages_diff.md @@ -0,0 +1,5 @@ + + +| | Package | Version in 8.1.0 | Version in 8.2.0 | Status | +|---:|:----------|:-------------------|:-------------------|:---------| +| 0 | cudnn | 8.1.0.77 | 8.1.0.77 | | \ No newline at end of file diff --git a/doc/changes/package_diffs/8.2.0/template-Exasol-all-python-3.10-cuda-conda/flavor_base_deps/python3_pip_packages_diff.md b/doc/changes/package_diffs/8.2.0/template-Exasol-all-python-3.10-cuda-conda/flavor_base_deps/python3_pip_packages_diff.md new file mode 100644 index 00000000..9e05b0b1 --- /dev/null +++ b/doc/changes/package_diffs/8.2.0/template-Exasol-all-python-3.10-cuda-conda/flavor_base_deps/python3_pip_packages_diff.md @@ -0,0 +1,4 @@ + + +| Package | Version in 8.1.0 | Version in 8.2.0 | Status | +|-----------|--------------------|--------------------|----------| \ No newline at end of file diff --git a/doc/changes/package_diffs/8.2.0/template-Exasol-all-python-3.10-cuda-conda/language_deps/conda_channels_diff.md b/doc/changes/package_diffs/8.2.0/template-Exasol-all-python-3.10-cuda-conda/language_deps/conda_channels_diff.md new file mode 100644 index 00000000..56aacac9 --- /dev/null +++ b/doc/changes/package_diffs/8.2.0/template-Exasol-all-python-3.10-cuda-conda/language_deps/conda_channels_diff.md @@ -0,0 +1,6 @@ + + +| | Package | Version in 8.1.0 | Version in 8.2.0 | Status | +|---:|:------------|:---------------------|:---------------------|:---------| +| 0 | conda-forge | No version specified | No version specified | | +| 1 | nvidia | No version specified | No version specified | | \ No newline at end of file diff --git a/doc/changes/package_diffs/8.2.0/template-Exasol-all-python-3.10-cuda-conda/language_deps/conda_packages_diff.md b/doc/changes/package_diffs/8.2.0/template-Exasol-all-python-3.10-cuda-conda/language_deps/conda_packages_diff.md new file mode 100644 index 00000000..367c99ca --- /dev/null +++ b/doc/changes/package_diffs/8.2.0/template-Exasol-all-python-3.10-cuda-conda/language_deps/conda_packages_diff.md @@ -0,0 +1,17 @@ + + +| | Package | Version in 8.1.0 | Version in 8.2.0 | Status | +|---:|:-----------------|:-----------------------|:-----------------------|:---------| +| 0 | cryptography | 42.0.7 | 42.0.7 | | +| 1 | cuda-toolkit | 11.8.0 | 11.8.0 | | +| 2 | icu | 70.1=h27087fc_0 | 70.1=h27087fc_0 | | +| 3 | ld_impl_linux-64 | 2.36.1 | 2.36.1 | | +| 4 | libarrow | 16.0.0=he216f8a_1_cuda | 16.0.0=he216f8a_1_cuda | | +| 5 | libblas | 3.9.0=15_linux64_mkl | 3.9.0=15_linux64_mkl | | +| 6 | libxcrypt | 4.4.36 | 4.4.36 | | +| 7 | libxml2 | 2.10.3=hca2bb57_4 | 2.10.3=hca2bb57_4 | | +| 8 | mamba | 1.5.1 | 1.5.1 | | +| 9 | numpy | 1.26.2 | 1.26.2 | | +| 10 | pandas | 2.2.2 | 2.2.2 | | +| 11 | pyarrow | 16.0.0 | 16.0.0 | | +| 12 | python | 3.10.4 | 3.10.4 | | \ No newline at end of file diff --git a/doc/changes/package_diffs/8.2.0/template-Exasol-all-python-3.10-cuda-conda/nvidia_driver_deps/apt_get_packages_diff.md b/doc/changes/package_diffs/8.2.0/template-Exasol-all-python-3.10-cuda-conda/nvidia_driver_deps/apt_get_packages_diff.md new file mode 100644 index 00000000..69884028 --- /dev/null +++ b/doc/changes/package_diffs/8.2.0/template-Exasol-all-python-3.10-cuda-conda/nvidia_driver_deps/apt_get_packages_diff.md @@ -0,0 +1,9 @@ + + +| | Package | Version in 8.1.0 | Version in 8.2.0 | Status | +|---:|:----------------|:------------------------|:------------------------|:---------| +| 0 | bzip2 | 1.0.8-5build1 | 1.0.8-5build1 | | +| 1 | ca-certificates | 20230311ubuntu0.22.04.1 | 20230311ubuntu0.22.04.1 | | +| 2 | coreutils | 8.32-4.1ubuntu1.2 | 8.32-4.1ubuntu1.2 | | +| 3 | curl | 7.81.0-1ubuntu1.16 | 7.81.0-1ubuntu1.16 | | +| 4 | locales | 2.35-0ubuntu3.8 | 2.35-0ubuntu3.8 | | \ No newline at end of file diff --git a/doc/changes/package_diffs/8.2.0/template-Exasol-all-python-3.10-cuda-conda/security_scan/apt_get_packages_diff.md b/doc/changes/package_diffs/8.2.0/template-Exasol-all-python-3.10-cuda-conda/security_scan/apt_get_packages_diff.md new file mode 100644 index 00000000..8b52e239 --- /dev/null +++ b/doc/changes/package_diffs/8.2.0/template-Exasol-all-python-3.10-cuda-conda/security_scan/apt_get_packages_diff.md @@ -0,0 +1,5 @@ + + +| | Package | Version in 8.1.0 | Version in 8.2.0 | Status | +|---:|:----------|:---------------------|:---------------------|:---------| +| 0 | trivy | No version specified | No version specified | | \ No newline at end of file diff --git a/doc/changes/package_diffs/8.2.0/template-Exasol-all-python-3.10-cuda-conda/security_scan/apt_get_packages_trivy_deps_diff.md b/doc/changes/package_diffs/8.2.0/template-Exasol-all-python-3.10-cuda-conda/security_scan/apt_get_packages_trivy_deps_diff.md new file mode 100644 index 00000000..8f528b45 --- /dev/null +++ b/doc/changes/package_diffs/8.2.0/template-Exasol-all-python-3.10-cuda-conda/security_scan/apt_get_packages_trivy_deps_diff.md @@ -0,0 +1,6 @@ + + +| | Package | Version in 8.1.0 | Version in 8.2.0 | Status | +|---:|:--------------------|:---------------------|:---------------------|:---------| +| 0 | apt-transport-https | No version specified | No version specified | | +| 1 | gnupg | No version specified | No version specified | | \ No newline at end of file diff --git a/doc/changes/package_diffs/8.2.0/template-Exasol-all-python-3.10-cuda-conda/udfclient_deps/conda_channels_diff.md b/doc/changes/package_diffs/8.2.0/template-Exasol-all-python-3.10-cuda-conda/udfclient_deps/conda_channels_diff.md new file mode 100644 index 00000000..447964a1 --- /dev/null +++ b/doc/changes/package_diffs/8.2.0/template-Exasol-all-python-3.10-cuda-conda/udfclient_deps/conda_channels_diff.md @@ -0,0 +1,5 @@ + + +| | Package | Version in 8.1.0 | Version in 8.2.0 | Status | +|---:|:------------|:---------------------|:---------------------|:---------| +| 0 | conda-forge | No version specified | No version specified | | \ No newline at end of file diff --git a/doc/changes/package_diffs/8.2.0/template-Exasol-all-python-3.10-cuda-conda/udfclient_deps/conda_packages_diff.md b/doc/changes/package_diffs/8.2.0/template-Exasol-all-python-3.10-cuda-conda/udfclient_deps/conda_packages_diff.md new file mode 100644 index 00000000..2974b0d1 --- /dev/null +++ b/doc/changes/package_diffs/8.2.0/template-Exasol-all-python-3.10-cuda-conda/udfclient_deps/conda_packages_diff.md @@ -0,0 +1,11 @@ + + +| | Package | Version in 8.1.0 | Version in 8.2.0 | Status | +|---:|:--------------|:-------------------|:-------------------|:---------| +| 0 | _openmp_mutex | 4.5=2_kmp_llvm | 4.5=2_kmp_llvm | | +| 1 | cppzmq | 4.10.0 | 4.10.0 | | +| 2 | libprotobuf | 4.25.3 | 4.25.3 | | +| 3 | libzlib | 1.2.13 | 1.2.13 | | +| 4 | nss | 3.100 | 3.100 | | +| 5 | openssl | 3.3.0 | 3.3.0 | | +| 6 | zeromq | 4.3.5 | 4.3.5 | | \ No newline at end of file diff --git a/doc/changes/package_diffs/8.2.0/template-Exasol-all-python-3.10/README.md b/doc/changes/package_diffs/8.2.0/template-Exasol-all-python-3.10/README.md new file mode 100644 index 00000000..d5b03384 --- /dev/null +++ b/doc/changes/package_diffs/8.2.0/template-Exasol-all-python-3.10/README.md @@ -0,0 +1,17 @@ +# Package Version Comparison between Template-exasol-all-python-3.10 flavor in 8.2.0 and Template-exasol-all-python-3.10 flavor in 8.1.0 + +- Comparison of build step Udfclient_deps + - [Comparison of Apt Get Packages](udfclient_deps/apt_get_packages_diff.md) +- Comparison of build step Security_scan + - [Comparison of Apt Get Packages](security_scan/apt_get_packages_diff.md) + - [Comparison of Apt Get Packages Trivy Deps](security_scan/apt_get_packages_trivy_deps_diff.md) +- Comparison of build step Language_deps + - [Comparison of Apt Get Packages](language_deps/apt_get_packages_diff.md) + - [Comparison of Python3 Pip Packages](language_deps/python3_pip_packages_diff.md) +- Comparison of build step Flavor_base_deps + - [Comparison of Apt Get Packages](flavor_base_deps/apt_get_packages_diff.md) + - [Comparison of Python3 Pip Packages](flavor_base_deps/python3_pip_packages_diff.md) +- Comparison of build step Build_deps + - [Comparison of Apt Get Packages](build_deps/apt_get_packages_diff.md) +- Comparison of build step Base_test_deps + - [Comparison of Apt Get Packages](base_test_deps/apt_get_packages_diff.md) diff --git a/doc/changes/package_diffs/8.2.0/template-Exasol-all-python-3.10/base_test_deps/apt_get_packages_diff.md b/doc/changes/package_diffs/8.2.0/template-Exasol-all-python-3.10/base_test_deps/apt_get_packages_diff.md new file mode 100644 index 00000000..1f759eeb --- /dev/null +++ b/doc/changes/package_diffs/8.2.0/template-Exasol-all-python-3.10/base_test_deps/apt_get_packages_diff.md @@ -0,0 +1,10 @@ + + +| | Package | Version in 8.1.0 | Version in 8.2.0 | Status | +|---:|:----------|:--------------------|:--------------------|:---------| +| 0 | binutils | 2.38-4ubuntu2.6 | 2.38-4ubuntu2.6 | | +| 1 | gdb | 12.1-0ubuntu1~22.04 | 12.1-0ubuntu1~22.04 | | +| 2 | gdbserver | 12.1-0ubuntu1~22.04 | 12.1-0ubuntu1~22.04 | | +| 3 | patchelf | 0.14.3-1 | 0.14.3-1 | | +| 4 | strace | 5.16-0ubuntu3 | 5.16-0ubuntu3 | | +| 5 | valgrind | 1:3.18.1-1ubuntu2 | 1:3.18.1-1ubuntu2 | | \ No newline at end of file diff --git a/doc/changes/package_diffs/8.2.0/template-Exasol-all-python-3.10/build_deps/apt_get_packages_diff.md b/doc/changes/package_diffs/8.2.0/template-Exasol-all-python-3.10/build_deps/apt_get_packages_diff.md new file mode 100644 index 00000000..fc2dc27b --- /dev/null +++ b/doc/changes/package_diffs/8.2.0/template-Exasol-all-python-3.10/build_deps/apt_get_packages_diff.md @@ -0,0 +1,13 @@ + + +| | Package | Version in 8.1.0 | Version in 8.2.0 | Status | +|---:|:------------------|:-----------------------------|:-----------------------------|:---------| +| 0 | build-essential | 12.9ubuntu3 | 12.9ubuntu3 | | +| 1 | chrpath | 0.16-2 | 0.16-2 | | +| 2 | coreutils | 8.32-4.1ubuntu1.2 | 8.32-4.1ubuntu1.2 | | +| 3 | curl | 7.81.0-1ubuntu1.16 | 7.81.0-1ubuntu1.16 | | +| 4 | libpcre3-dev | 2:8.39-13ubuntu0.22.04.1 | 2:8.39-13ubuntu0.22.04.1 | | +| 5 | locales | 2.35-0ubuntu3.8 | 2.35-0ubuntu3.8 | | +| 6 | openjdk-11-jdk | 11.0.23+9-1ubuntu1~22.04.1 | 11.0.23+9-1ubuntu1~22.04.1 | | +| 7 | protobuf-compiler | 3.12.4-1ubuntu7.22.04.1 | 3.12.4-1ubuntu7.22.04.1 | | +| 8 | tar | 1.34+dfsg-1ubuntu0.1.22.04.2 | 1.34+dfsg-1ubuntu0.1.22.04.2 | | \ No newline at end of file diff --git a/doc/changes/package_diffs/8.2.0/template-Exasol-all-python-3.10/flavor_base_deps/apt_get_packages_diff.md b/doc/changes/package_diffs/8.2.0/template-Exasol-all-python-3.10/flavor_base_deps/apt_get_packages_diff.md new file mode 100644 index 00000000..51195ebb --- /dev/null +++ b/doc/changes/package_diffs/8.2.0/template-Exasol-all-python-3.10/flavor_base_deps/apt_get_packages_diff.md @@ -0,0 +1,8 @@ + + +| | Package | Version in 8.1.0 | Version in 8.2.0 | Status | +|---:|:---------------------|:---------------------|:---------------------|:---------| +| 0 | build-essential | 12.9ubuntu3 | 12.9ubuntu3 | | +| 1 | git | 1:2.34.1-1ubuntu1.11 | 1:2.34.1-1ubuntu1.11 | | +| 2 | libcurl4-openssl-dev | 7.81.0-1ubuntu1.16 | 7.81.0-1ubuntu1.16 | | +| 3 | unzip | 6.0-26ubuntu3.2 | 6.0-26ubuntu3.2 | | \ No newline at end of file diff --git a/doc/changes/package_diffs/8.2.0/template-Exasol-all-python-3.10/flavor_base_deps/python3_pip_packages_diff.md b/doc/changes/package_diffs/8.2.0/template-Exasol-all-python-3.10/flavor_base_deps/python3_pip_packages_diff.md new file mode 100644 index 00000000..9e05b0b1 --- /dev/null +++ b/doc/changes/package_diffs/8.2.0/template-Exasol-all-python-3.10/flavor_base_deps/python3_pip_packages_diff.md @@ -0,0 +1,4 @@ + + +| Package | Version in 8.1.0 | Version in 8.2.0 | Status | +|-----------|--------------------|--------------------|----------| \ No newline at end of file diff --git a/doc/changes/package_diffs/8.2.0/template-Exasol-all-python-3.10/language_deps/apt_get_packages_diff.md b/doc/changes/package_diffs/8.2.0/template-Exasol-all-python-3.10/language_deps/apt_get_packages_diff.md new file mode 100644 index 00000000..40570198 --- /dev/null +++ b/doc/changes/package_diffs/8.2.0/template-Exasol-all-python-3.10/language_deps/apt_get_packages_diff.md @@ -0,0 +1,8 @@ + + +| | Package | Version in 8.1.0 | Version in 8.2.0 | Status | +|---:|:------------------|:------------------------|:------------------------|:---------| +| 0 | ca-certificates | 20230311ubuntu0.22.04.1 | 20230311ubuntu0.22.04.1 | | +| 1 | curl | 7.81.0-1ubuntu1.16 | 7.81.0-1ubuntu1.16 | | +| 2 | python3-distutils | 3.10.8-1~22.04 | 3.10.8-1~22.04 | | +| 3 | python3.10-dev | 3.10.12-1~22.04.3 | 3.10.12-1~22.04.3 | | \ No newline at end of file diff --git a/doc/changes/package_diffs/8.2.0/template-Exasol-all-python-3.10/language_deps/python3_pip_packages_diff.md b/doc/changes/package_diffs/8.2.0/template-Exasol-all-python-3.10/language_deps/python3_pip_packages_diff.md new file mode 100644 index 00000000..18818c8e --- /dev/null +++ b/doc/changes/package_diffs/8.2.0/template-Exasol-all-python-3.10/language_deps/python3_pip_packages_diff.md @@ -0,0 +1,7 @@ + + +| | Package | Version in 8.1.0 | Version in 8.2.0 | Status | +|---:|:----------|:-------------------|:-------------------|:---------| +| 0 | numpy | 1.26.4 | 1.26.4 | | +| 1 | pandas | 2.2.2 | 2.2.2 | | +| 2 | pyarrow | 16.0.0 | 16.0.0 | | \ No newline at end of file diff --git a/doc/changes/package_diffs/8.2.0/template-Exasol-all-python-3.10/security_scan/apt_get_packages_diff.md b/doc/changes/package_diffs/8.2.0/template-Exasol-all-python-3.10/security_scan/apt_get_packages_diff.md new file mode 100644 index 00000000..8b52e239 --- /dev/null +++ b/doc/changes/package_diffs/8.2.0/template-Exasol-all-python-3.10/security_scan/apt_get_packages_diff.md @@ -0,0 +1,5 @@ + + +| | Package | Version in 8.1.0 | Version in 8.2.0 | Status | +|---:|:----------|:---------------------|:---------------------|:---------| +| 0 | trivy | No version specified | No version specified | | \ No newline at end of file diff --git a/doc/changes/package_diffs/8.2.0/template-Exasol-all-python-3.10/security_scan/apt_get_packages_trivy_deps_diff.md b/doc/changes/package_diffs/8.2.0/template-Exasol-all-python-3.10/security_scan/apt_get_packages_trivy_deps_diff.md new file mode 100644 index 00000000..8f528b45 --- /dev/null +++ b/doc/changes/package_diffs/8.2.0/template-Exasol-all-python-3.10/security_scan/apt_get_packages_trivy_deps_diff.md @@ -0,0 +1,6 @@ + + +| | Package | Version in 8.1.0 | Version in 8.2.0 | Status | +|---:|:--------------------|:---------------------|:---------------------|:---------| +| 0 | apt-transport-https | No version specified | No version specified | | +| 1 | gnupg | No version specified | No version specified | | \ No newline at end of file diff --git a/doc/changes/package_diffs/8.2.0/template-Exasol-all-python-3.10/udfclient_deps/apt_get_packages_diff.md b/doc/changes/package_diffs/8.2.0/template-Exasol-all-python-3.10/udfclient_deps/apt_get_packages_diff.md new file mode 100644 index 00000000..36c97816 --- /dev/null +++ b/doc/changes/package_diffs/8.2.0/template-Exasol-all-python-3.10/udfclient_deps/apt_get_packages_diff.md @@ -0,0 +1,10 @@ + + +| | Package | Version in 8.1.0 | Version in 8.2.0 | Status | +|---:|:----------------|:------------------------|:------------------------|:---------| +| 0 | coreutils | 8.32-4.1ubuntu1.2 | 8.32-4.1ubuntu1.2 | | +| 1 | libnss-db | 2.2.3pre1-6ubuntu3 | 2.2.3pre1-6ubuntu3 | | +| 2 | libprotobuf-dev | 3.12.4-1ubuntu7.22.04.1 | 3.12.4-1ubuntu7.22.04.1 | | +| 3 | libssl-dev | 3.0.2-0ubuntu1.15 | 3.0.2-0ubuntu1.15 | | +| 4 | libzmq3-dev | 4.3.4-2 | 4.3.4-2 | | +| 5 | locales | 2.35-0ubuntu3.8 | 2.35-0ubuntu3.8 | | \ No newline at end of file diff --git a/doc/changes/package_diffs/8.2.0/template-Exasol-all-r-4/README.md b/doc/changes/package_diffs/8.2.0/template-Exasol-all-r-4/README.md new file mode 100644 index 00000000..4abd312f --- /dev/null +++ b/doc/changes/package_diffs/8.2.0/template-Exasol-all-r-4/README.md @@ -0,0 +1,19 @@ +# Package Version Comparison between Template-exasol-all-r-4 flavor in 8.2.0 and Template-exasol-all-r-4 flavor in 8.1.0 + +- Comparison of build step Udfclient_deps + - [Comparison of Apt Get Packages](udfclient_deps/apt_get_packages_diff.md) +- Comparison of build step Security_scan + - [Comparison of Apt Get Packages](security_scan/apt_get_packages_diff.md) + - [Comparison of Apt Get Packages Oyster Deps](security_scan/apt_get_packages_oyster_deps_diff.md) + - [Comparison of Apt Get Packages Trivy Deps](security_scan/apt_get_packages_trivy_deps_diff.md) + - [Comparison of R Cran Packages](security_scan/r_cran_packages_diff.md) +- Comparison of build step Language_deps + - [Comparison of Apt Get Packages](language_deps/apt_get_packages_diff.md) + - [Comparison of Apt Get Packages R](language_deps/apt_get_packages_r_diff.md) +- Comparison of build step Flavor_base_deps + - [Comparison of Apt Get Packages](flavor_base_deps/apt_get_packages_diff.md) + - [Comparison of Cran Packages](flavor_base_deps/cran_packages_diff.md) +- Comparison of build step Build_deps + - [Comparison of Apt Get Packages](build_deps/apt_get_packages_diff.md) +- Comparison of build step Base_test_deps + - [Comparison of Apt Get Packages](base_test_deps/apt_get_packages_diff.md) diff --git a/doc/changes/package_diffs/8.2.0/template-Exasol-all-r-4/base_test_deps/apt_get_packages_diff.md b/doc/changes/package_diffs/8.2.0/template-Exasol-all-r-4/base_test_deps/apt_get_packages_diff.md new file mode 100644 index 00000000..32bc9b67 --- /dev/null +++ b/doc/changes/package_diffs/8.2.0/template-Exasol-all-r-4/base_test_deps/apt_get_packages_diff.md @@ -0,0 +1,11 @@ + + +| | Package | Version in 8.1.0 | Version in 8.2.0 | Status | +|---:|:----------|:--------------------|:--------------------|:---------| +| 0 | binutils | 2.38-4ubuntu2.6 | 2.38-4ubuntu2.6 | | +| 1 | chrpath | 0.16-2 | 0.16-2 | | +| 2 | gdb | 12.1-0ubuntu1~22.04 | 12.1-0ubuntu1~22.04 | | +| 3 | gdbserver | 12.1-0ubuntu1~22.04 | 12.1-0ubuntu1~22.04 | | +| 4 | patchelf | 0.14.3-1 | 0.14.3-1 | | +| 5 | strace | 5.16-0ubuntu3 | 5.16-0ubuntu3 | | +| 6 | valgrind | 1:3.18.1-1ubuntu2 | 1:3.18.1-1ubuntu2 | | \ No newline at end of file diff --git a/doc/changes/package_diffs/8.2.0/template-Exasol-all-r-4/build_deps/apt_get_packages_diff.md b/doc/changes/package_diffs/8.2.0/template-Exasol-all-r-4/build_deps/apt_get_packages_diff.md new file mode 100644 index 00000000..25fba9e9 --- /dev/null +++ b/doc/changes/package_diffs/8.2.0/template-Exasol-all-r-4/build_deps/apt_get_packages_diff.md @@ -0,0 +1,14 @@ + + +| | Package | Version in 8.1.0 | Version in 8.2.0 | Status | +|---:|:------------------|:-----------------------------|:-----------------------------|:---------| +| 0 | build-essential | 12.9ubuntu3 | 12.9ubuntu3 | | +| 1 | chrpath | 0.16-2 | 0.16-2 | | +| 2 | coreutils | 8.32-4.1ubuntu1.2 | 8.32-4.1ubuntu1.2 | | +| 3 | curl | 7.81.0-1ubuntu1.16 | 7.81.0-1ubuntu1.16 | | +| 4 | libpcre3-dev | 2:8.39-13ubuntu0.22.04.1 | 2:8.39-13ubuntu0.22.04.1 | | +| 5 | locales | 2.35-0ubuntu3.8 | 2.35-0ubuntu3.8 | | +| 6 | openjdk-11-jdk | 11.0.23+9-1ubuntu1~22.04.1 | 11.0.23+9-1ubuntu1~22.04.1 | | +| 7 | protobuf-compiler | 3.12.4-1ubuntu7.22.04.1 | 3.12.4-1ubuntu7.22.04.1 | | +| 8 | python3 | 3.10.6-1~22.04 | 3.10.6-1~22.04 | | +| 9 | tar | 1.34+dfsg-1ubuntu0.1.22.04.2 | 1.34+dfsg-1ubuntu0.1.22.04.2 | | \ No newline at end of file diff --git a/doc/changes/package_diffs/8.2.0/template-Exasol-all-r-4/flavor_base_deps/apt_get_packages_diff.md b/doc/changes/package_diffs/8.2.0/template-Exasol-all-r-4/flavor_base_deps/apt_get_packages_diff.md new file mode 100644 index 00000000..1bddfdda --- /dev/null +++ b/doc/changes/package_diffs/8.2.0/template-Exasol-all-r-4/flavor_base_deps/apt_get_packages_diff.md @@ -0,0 +1,9 @@ + + +| | Package | Version in 8.1.0 | Version in 8.2.0 | Status | +|---:|:----------|:---------------------|:---------------------|:---------| +| 0 | coreutils | 8.32-4.1ubuntu1.2 | 8.32-4.1ubuntu1.2 | | +| 1 | git | 1:2.34.1-1ubuntu1.11 | 1:2.34.1-1ubuntu1.11 | | +| 2 | locales | 2.35-0ubuntu3.8 | 2.35-0ubuntu3.8 | | +| 3 | unzip | 6.0-26ubuntu3.2 | 6.0-26ubuntu3.2 | | +| 4 | wget | 1.21.2-2ubuntu1 | 1.21.2-2ubuntu1 | | \ No newline at end of file diff --git a/doc/changes/package_diffs/8.2.0/template-Exasol-all-r-4/flavor_base_deps/cran_packages_diff.md b/doc/changes/package_diffs/8.2.0/template-Exasol-all-r-4/flavor_base_deps/cran_packages_diff.md new file mode 100644 index 00000000..9e05b0b1 --- /dev/null +++ b/doc/changes/package_diffs/8.2.0/template-Exasol-all-r-4/flavor_base_deps/cran_packages_diff.md @@ -0,0 +1,4 @@ + + +| Package | Version in 8.1.0 | Version in 8.2.0 | Status | +|-----------|--------------------|--------------------|----------| \ No newline at end of file diff --git a/doc/changes/package_diffs/8.2.0/template-Exasol-all-r-4/language_deps/apt_get_packages_diff.md b/doc/changes/package_diffs/8.2.0/template-Exasol-all-r-4/language_deps/apt_get_packages_diff.md new file mode 100644 index 00000000..84b55a75 --- /dev/null +++ b/doc/changes/package_diffs/8.2.0/template-Exasol-all-r-4/language_deps/apt_get_packages_diff.md @@ -0,0 +1,6 @@ + + +| | Package | Version in 8.1.0 | Version in 8.2.0 | Status | +|---:|:----------------|:------------------------|:------------------------|:---------| +| 0 | ca-certificates | 20230311ubuntu0.22.04.1 | 20230311ubuntu0.22.04.1 | | +| 1 | curl | 7.81.0-1ubuntu1.16 | 7.81.0-1ubuntu1.16 | | \ No newline at end of file diff --git a/doc/changes/package_diffs/8.2.0/template-Exasol-all-r-4/language_deps/apt_get_packages_r_diff.md b/doc/changes/package_diffs/8.2.0/template-Exasol-all-r-4/language_deps/apt_get_packages_r_diff.md new file mode 100644 index 00000000..c10e01a5 --- /dev/null +++ b/doc/changes/package_diffs/8.2.0/template-Exasol-all-r-4/language_deps/apt_get_packages_r_diff.md @@ -0,0 +1,6 @@ + + +| | Package | Version in 8.1.0 | Version in 8.2.0 | Status | +|---:|:------------|:-------------------|:-------------------|:---------| +| 0 | r-base-core | 4.4.0-1.2204.0 | 4.4.0-1.2204.0 | | +| 1 | r-base-dev | 4.4.0-1.2204.0 | 4.4.0-1.2204.0 | | \ No newline at end of file diff --git a/doc/changes/package_diffs/8.2.0/template-Exasol-all-r-4/security_scan/apt_get_packages_diff.md b/doc/changes/package_diffs/8.2.0/template-Exasol-all-r-4/security_scan/apt_get_packages_diff.md new file mode 100644 index 00000000..8b52e239 --- /dev/null +++ b/doc/changes/package_diffs/8.2.0/template-Exasol-all-r-4/security_scan/apt_get_packages_diff.md @@ -0,0 +1,5 @@ + + +| | Package | Version in 8.1.0 | Version in 8.2.0 | Status | +|---:|:----------|:---------------------|:---------------------|:---------| +| 0 | trivy | No version specified | No version specified | | \ No newline at end of file diff --git a/doc/changes/package_diffs/8.2.0/template-Exasol-all-r-4/security_scan/apt_get_packages_oyster_deps_diff.md b/doc/changes/package_diffs/8.2.0/template-Exasol-all-r-4/security_scan/apt_get_packages_oyster_deps_diff.md new file mode 100644 index 00000000..04d8ad8b --- /dev/null +++ b/doc/changes/package_diffs/8.2.0/template-Exasol-all-r-4/security_scan/apt_get_packages_oyster_deps_diff.md @@ -0,0 +1,5 @@ + + +| | Package | Version in 8.1.0 | Version in 8.2.0 | Status | +|---:|:---------------------|:---------------------|:---------------------|:---------| +| 0 | libcurl4-openssl-dev | No version specified | No version specified | | \ No newline at end of file diff --git a/doc/changes/package_diffs/8.2.0/template-Exasol-all-r-4/security_scan/apt_get_packages_trivy_deps_diff.md b/doc/changes/package_diffs/8.2.0/template-Exasol-all-r-4/security_scan/apt_get_packages_trivy_deps_diff.md new file mode 100644 index 00000000..8f528b45 --- /dev/null +++ b/doc/changes/package_diffs/8.2.0/template-Exasol-all-r-4/security_scan/apt_get_packages_trivy_deps_diff.md @@ -0,0 +1,6 @@ + + +| | Package | Version in 8.1.0 | Version in 8.2.0 | Status | +|---:|:--------------------|:---------------------|:---------------------|:---------| +| 0 | apt-transport-https | No version specified | No version specified | | +| 1 | gnupg | No version specified | No version specified | | \ No newline at end of file diff --git a/doc/changes/package_diffs/8.2.0/template-Exasol-all-r-4/security_scan/r_cran_packages_diff.md b/doc/changes/package_diffs/8.2.0/template-Exasol-all-r-4/security_scan/r_cran_packages_diff.md new file mode 100644 index 00000000..895dae2a --- /dev/null +++ b/doc/changes/package_diffs/8.2.0/template-Exasol-all-r-4/security_scan/r_cran_packages_diff.md @@ -0,0 +1,5 @@ + + +| | Package | Version in 8.1.0 | Version in 8.2.0 | Status | +|---:|:----------|:---------------------|:---------------------|:---------| +| 0 | oysteR | No version specified | No version specified | | \ No newline at end of file diff --git a/doc/changes/package_diffs/8.2.0/template-Exasol-all-r-4/udfclient_deps/apt_get_packages_diff.md b/doc/changes/package_diffs/8.2.0/template-Exasol-all-r-4/udfclient_deps/apt_get_packages_diff.md new file mode 100644 index 00000000..36c97816 --- /dev/null +++ b/doc/changes/package_diffs/8.2.0/template-Exasol-all-r-4/udfclient_deps/apt_get_packages_diff.md @@ -0,0 +1,10 @@ + + +| | Package | Version in 8.1.0 | Version in 8.2.0 | Status | +|---:|:----------------|:------------------------|:------------------------|:---------| +| 0 | coreutils | 8.32-4.1ubuntu1.2 | 8.32-4.1ubuntu1.2 | | +| 1 | libnss-db | 2.2.3pre1-6ubuntu3 | 2.2.3pre1-6ubuntu3 | | +| 2 | libprotobuf-dev | 3.12.4-1ubuntu7.22.04.1 | 3.12.4-1ubuntu7.22.04.1 | | +| 3 | libssl-dev | 3.0.2-0ubuntu1.15 | 3.0.2-0ubuntu1.15 | | +| 4 | libzmq3-dev | 4.3.4-2 | 4.3.4-2 | | +| 5 | locales | 2.35-0ubuntu3.8 | 2.35-0ubuntu3.8 | | \ No newline at end of file diff --git a/flavors/standard-EXASOL-all/flavor_base/flavor_base_deps_python/Dockerfile b/flavors/standard-EXASOL-all/flavor_base/flavor_base_deps_python/Dockerfile index fe9cc925..1abfd42b 100644 --- a/flavors/standard-EXASOL-all/flavor_base/flavor_base_deps_python/Dockerfile +++ b/flavors/standard-EXASOL-all/flavor_base/flavor_base_deps_python/Dockerfile @@ -3,4 +3,4 @@ FROM {{ flavor_base_deps_apt }} RUN mkdir -p /build_info/packages COPY flavor_base_deps_python/packages /build_info/packages/flavor_base_deps_python -RUN /scripts/install_scripts/install_via_pip.pl --file /build_info/packages/flavor_base_deps_python/python3_pip_packages --python-binary python3 --with-versions --allow-no-version-for-urls +RUN /scripts/install_scripts/install_via_pip.pl --file /build_info/packages/flavor_base_deps_python/python3_pip_packages --python-binary python3 --with-versions --allow-no-version-for-urls --ancestor-pip-package-root-path /build_info/packages diff --git a/flavors/standard-EXASOL-all/flavor_base/language_deps/Dockerfile b/flavors/standard-EXASOL-all/flavor_base/language_deps/Dockerfile index ee49bf35..314f68fd 100644 --- a/flavors/standard-EXASOL-all/flavor_base/language_deps/Dockerfile +++ b/flavors/standard-EXASOL-all/flavor_base/language_deps/Dockerfile @@ -11,7 +11,7 @@ RUN /scripts/install_scripts/install_via_apt.pl --file /build_info/packages/lang RUN /scripts/install_scripts/install_python3.10_pip.sh "pip == 24.0" COPY language_deps/packages/python3_pip_packages /build_info/packages/language_deps -RUN /scripts/install_scripts/install_via_pip.pl --file /build_info/packages/language_deps/python3_pip_packages --python-binary python3 --with-versions +RUN /scripts/install_scripts/install_via_pip.pl --file /build_info/packages/language_deps/python3_pip_packages --python-binary python3 --with-versions --ancestor-pip-package-root-path /build_info/packages ENV PYTHON3_PREFIX /usr ENV PYTHON3_VERSION python3.10 diff --git a/flavors/standard-EXASOL-all/flavor_customization/Dockerfile b/flavors/standard-EXASOL-all/flavor_customization/Dockerfile index 9d226c12..94ee44dc 100644 --- a/flavors/standard-EXASOL-all/flavor_customization/Dockerfile +++ b/flavors/standard-EXASOL-all/flavor_customization/Dockerfile @@ -20,7 +20,7 @@ COPY flavor_customization/packages/apt_get_packages /build_info/packages/flavor_ RUN /scripts/install_scripts/install_via_apt.pl --file /build_info/packages/flavor_customization/apt_get_packages --with-versions COPY flavor_customization/packages/python3_pip_packages /build_info/packages/flavor_customization -RUN /scripts/install_scripts/install_via_pip.pl --file /build_info/packages/flavor_customization/python3_pip_packages --python-binary python3 --with-versions --allow-no-version --ignore-installed +RUN /scripts/install_scripts/install_via_pip.pl --file /build_info/packages/flavor_customization/python3_pip_packages --python-binary python3 --with-versions --allow-no-version --ignore-installed --ancestor-pip-package-root-path /build_info/packages COPY flavor_customization/packages/r_cran_packages /build_info/packages/flavor_customization RUN /scripts/install_scripts/install_via_r_remotes.pl --file /build_info/packages/flavor_customization/r_cran_packages --rscript-binary Rscript --with-versions --allow-no-version diff --git a/pyproject.toml b/pyproject.toml index c8770fad..66235a2b 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [tool.poetry] name = "exasol-script-languages-release" -version = "8.1.0" +version = "8.2.0" description = "Script Languages Release" license = "MIT" diff --git a/script-languages b/script-languages index fba2d07d..0831aa25 160000 --- a/script-languages +++ b/script-languages @@ -1 +1 @@ -Subproject commit fba2d07d939c0308866207d6c22ad4f99bb9ef0d +Subproject commit 0831aa25ebe3804f2bd34832338d543de222e756 From 3d7dbfc7e842af3bbe207ac0dde971bfae7de250 Mon Sep 17 00:00:00 2001 From: Thomas Ubensee <34603111+tomuben@users.noreply.github.com> Date: Mon, 22 Jul 2024 09:19:57 -0300 Subject: [PATCH 2/2] #930: Updated Packages (#931) fixes #930 --- .current_gitmodules | 2 +- doc/changes/changes_8.2.0.md | 8 +- .../base_test_deps/apt_get_packages_diff.md | 16 +- .../apt_get_packages_diff.md | 44 +++--- .../python3_pip_packages_diff.md | 146 +++++++++--------- .../language_deps/apt_get_packages_diff.md | 12 +- .../udfclient_deps/apt_get_packages_diff.md | 8 +- .../base_test_deps/apt_get_packages_diff.md | 18 +-- .../flavor_base_deps/apt_get_packages_diff.md | 10 +- .../udfclient_deps/apt_get_packages_diff.md | 8 +- .../base_test_deps/apt_get_packages_diff.md | 16 +- .../base_test_deps/apt_get_packages_diff.md | 16 +- .../base_test_deps/apt_get_packages_diff.md | 16 +- .../language_deps/apt_get_packages_diff.md | 8 +- .../udfclient_deps/apt_get_packages_diff.md | 8 +- .../base_test_deps/apt_get_packages_diff.md | 18 +-- .../flavor_base_deps/apt_get_packages_diff.md | 10 +- .../udfclient_deps/apt_get_packages_diff.md | 8 +- .../base_test_deps/packages/apt_get_packages | 4 +- .../packages/apt_get_packages | 10 +- .../packages/python3_pip_packages | 2 +- .../language_deps/packages/apt_get_packages | 2 +- .../udfclient_deps/packages/apt_get_packages | 2 +- .../base_test_deps/packages/apt_get_packages | 4 +- .../packages/apt_get_packages | 2 +- .../udfclient_deps/packages/apt_get_packages | 2 +- .../base_test_deps/packages/apt_get_packages | 4 +- .../packages/apt_get_packages | 2 +- .../udfclient_deps/packages/apt_get_packages | 2 +- script-languages | 2 +- 30 files changed, 205 insertions(+), 205 deletions(-) diff --git a/.current_gitmodules b/.current_gitmodules index 8dc9bc8e..9b828602 100644 --- a/.current_gitmodules +++ b/.current_gitmodules @@ -1 +1 @@ -160000 0831aa25ebe3804f2bd34832338d543de222e756 0 script-languages +160000 7d6bcfa463f4114c371cb18e7c08a0af3d78e239 0 script-languages diff --git a/doc/changes/changes_8.2.0.md b/doc/changes/changes_8.2.0.md index 8ddbfc3c..0606243c 100644 --- a/doc/changes/changes_8.2.0.md +++ b/doc/changes/changes_8.2.0.md @@ -1,10 +1,10 @@ -# script-languages-release 8.2.0, released t.b.d. +# script-languages-release 8.2.0, released 2024-07-23. -Code name: t.b.d. +Code name: Package updates. ## Summary -t.b.d. +This release updates some Ubuntu and Python packages. Also, it fixes a bug where a Pip package could be downgraded during the Script-Languages-Container build process. ## [Package Version Comparison between Release 8.1.0 and 8.2.0](package_diffs/8.2.0/README.md) @@ -30,6 +30,6 @@ n/a ## Security -n/a + - #930: Updated Packages Attention: Kernel CVE's can't be fixed by the container itself, rather need to be addressed by the host system executing them. diff --git a/doc/changes/package_diffs/8.2.0/standard-EXASOL-all/base_test_deps/apt_get_packages_diff.md b/doc/changes/package_diffs/8.2.0/standard-EXASOL-all/base_test_deps/apt_get_packages_diff.md index 1f759eeb..50830ff9 100644 --- a/doc/changes/package_diffs/8.2.0/standard-EXASOL-all/base_test_deps/apt_get_packages_diff.md +++ b/doc/changes/package_diffs/8.2.0/standard-EXASOL-all/base_test_deps/apt_get_packages_diff.md @@ -1,10 +1,10 @@ -| | Package | Version in 8.1.0 | Version in 8.2.0 | Status | -|---:|:----------|:--------------------|:--------------------|:---------| -| 0 | binutils | 2.38-4ubuntu2.6 | 2.38-4ubuntu2.6 | | -| 1 | gdb | 12.1-0ubuntu1~22.04 | 12.1-0ubuntu1~22.04 | | -| 2 | gdbserver | 12.1-0ubuntu1~22.04 | 12.1-0ubuntu1~22.04 | | -| 3 | patchelf | 0.14.3-1 | 0.14.3-1 | | -| 4 | strace | 5.16-0ubuntu3 | 5.16-0ubuntu3 | | -| 5 | valgrind | 1:3.18.1-1ubuntu2 | 1:3.18.1-1ubuntu2 | | \ No newline at end of file +| | Package | Version in 8.1.0 | Version in 8.2.0 | Status | +|---:|:----------|:--------------------|:----------------------|:---------| +| 0 | gdb | 12.1-0ubuntu1~22.04 | 12.1-0ubuntu1~22.04.2 | UPDATED | +| 1 | gdbserver | 12.1-0ubuntu1~22.04 | 12.1-0ubuntu1~22.04.2 | UPDATED | +| 2 | binutils | 2.38-4ubuntu2.6 | 2.38-4ubuntu2.6 | | +| 3 | patchelf | 0.14.3-1 | 0.14.3-1 | | +| 4 | strace | 5.16-0ubuntu3 | 5.16-0ubuntu3 | | +| 5 | valgrind | 1:3.18.1-1ubuntu2 | 1:3.18.1-1ubuntu2 | | \ No newline at end of file diff --git a/doc/changes/package_diffs/8.2.0/standard-EXASOL-all/flavor_base_deps_apt/apt_get_packages_diff.md b/doc/changes/package_diffs/8.2.0/standard-EXASOL-all/flavor_base_deps_apt/apt_get_packages_diff.md index 168a719a..0b4ac1d2 100644 --- a/doc/changes/package_diffs/8.2.0/standard-EXASOL-all/flavor_base_deps_apt/apt_get_packages_diff.md +++ b/doc/changes/package_diffs/8.2.0/standard-EXASOL-all/flavor_base_deps_apt/apt_get_packages_diff.md @@ -2,25 +2,25 @@ | | Package | Version in 8.1.0 | Version in 8.2.0 | Status | |---:|:---------------------|:-----------------------------|:-----------------------------|:---------| -| 0 | apt-transport-https | 2.4.12 | 2.4.12 | | -| 1 | build-essential | 12.9ubuntu3 | 12.9ubuntu3 | | -| 2 | cmake | 3.22.1-1ubuntu1.22.04.2 | 3.22.1-1ubuntu1.22.04.2 | | -| 3 | git | 1:2.34.1-1ubuntu1.11 | 1:2.34.1-1ubuntu1.11 | | -| 4 | gnupg | 2.2.27-3ubuntu2.1 | 2.2.27-3ubuntu2.1 | | -| 5 | ldap-utils | 2.5.17+dfsg-0ubuntu0.22.04.1 | 2.5.17+dfsg-0ubuntu0.22.04.1 | | -| 6 | libcurl4-openssl-dev | 7.81.0-1ubuntu1.16 | 7.81.0-1ubuntu1.16 | | -| 7 | libhiredis-dev | 0.14.1-2 | 0.14.1-2 | | -| 8 | libldap2-dev | 2.5.17+dfsg-0ubuntu0.22.04.1 | 2.5.17+dfsg-0ubuntu0.22.04.1 | | -| 9 | libldb2 | 2:2.4.4-0ubuntu0.22.04.2 | 2:2.4.4-0ubuntu0.22.04.2 | | -| 10 | libleveldb1d | 1.23-3build1 | 1.23-3build1 | | -| 11 | libsasl2-dev | 2.1.27+dfsg2-3ubuntu1.2 | 2.1.27+dfsg2-3ubuntu1.2 | | -| 12 | libsmbclient | 2:4.15.13+dfsg-0ubuntu1.6 | 2:4.15.13+dfsg-0ubuntu1.6 | | -| 13 | libsmbclient-dev | 2:4.15.13+dfsg-0ubuntu1.6 | 2:4.15.13+dfsg-0ubuntu1.6 | | -| 14 | libxml2-dev | 2.9.13+dfsg-1ubuntu0.4 | 2.9.13+dfsg-1ubuntu0.4 | | -| 15 | maven | 3.6.3-5 | 3.6.3-5 | | -| 16 | openssl | 3.0.2-0ubuntu1.15 | 3.0.2-0ubuntu1.15 | | -| 17 | slapd | 2.5.17+dfsg-0ubuntu0.22.04.1 | 2.5.17+dfsg-0ubuntu0.22.04.1 | | -| 18 | smbclient | 2:4.15.13+dfsg-0ubuntu1.6 | 2:4.15.13+dfsg-0ubuntu1.6 | | -| 19 | unixodbc-dev | 2.3.9-5ubuntu0.1 | 2.3.9-5ubuntu0.1 | | -| 20 | unzip | 6.0-26ubuntu3.2 | 6.0-26ubuntu3.2 | | -| 21 | wget | 1.21.2-2ubuntu1 | 1.21.2-2ubuntu1 | | \ No newline at end of file +| 0 | ldap-utils | 2.5.17+dfsg-0ubuntu0.22.04.1 | 2.5.18+dfsg-0ubuntu0.22.04.1 | UPDATED | +| 1 | libldap2-dev | 2.5.17+dfsg-0ubuntu0.22.04.1 | 2.5.18+dfsg-0ubuntu0.22.04.1 | UPDATED | +| 2 | openssl | 3.0.2-0ubuntu1.15 | 3.0.2-0ubuntu1.16 | UPDATED | +| 3 | slapd | 2.5.17+dfsg-0ubuntu0.22.04.1 | 2.5.18+dfsg-0ubuntu0.22.04.1 | UPDATED | +| 4 | wget | 1.21.2-2ubuntu1 | 1.21.2-2ubuntu1.1 | UPDATED | +| 5 | apt-transport-https | 2.4.12 | 2.4.12 | | +| 6 | build-essential | 12.9ubuntu3 | 12.9ubuntu3 | | +| 7 | cmake | 3.22.1-1ubuntu1.22.04.2 | 3.22.1-1ubuntu1.22.04.2 | | +| 8 | git | 1:2.34.1-1ubuntu1.11 | 1:2.34.1-1ubuntu1.11 | | +| 9 | gnupg | 2.2.27-3ubuntu2.1 | 2.2.27-3ubuntu2.1 | | +| 10 | libcurl4-openssl-dev | 7.81.0-1ubuntu1.16 | 7.81.0-1ubuntu1.16 | | +| 11 | libhiredis-dev | 0.14.1-2 | 0.14.1-2 | | +| 12 | libldb2 | 2:2.4.4-0ubuntu0.22.04.2 | 2:2.4.4-0ubuntu0.22.04.2 | | +| 13 | libleveldb1d | 1.23-3build1 | 1.23-3build1 | | +| 14 | libsasl2-dev | 2.1.27+dfsg2-3ubuntu1.2 | 2.1.27+dfsg2-3ubuntu1.2 | | +| 15 | libsmbclient | 2:4.15.13+dfsg-0ubuntu1.6 | 2:4.15.13+dfsg-0ubuntu1.6 | | +| 16 | libsmbclient-dev | 2:4.15.13+dfsg-0ubuntu1.6 | 2:4.15.13+dfsg-0ubuntu1.6 | | +| 17 | libxml2-dev | 2.9.13+dfsg-1ubuntu0.4 | 2.9.13+dfsg-1ubuntu0.4 | | +| 18 | maven | 3.6.3-5 | 3.6.3-5 | | +| 19 | smbclient | 2:4.15.13+dfsg-0ubuntu1.6 | 2:4.15.13+dfsg-0ubuntu1.6 | | +| 20 | unixodbc-dev | 2.3.9-5ubuntu0.1 | 2.3.9-5ubuntu0.1 | | +| 21 | unzip | 6.0-26ubuntu3.2 | 6.0-26ubuntu3.2 | | \ No newline at end of file diff --git a/doc/changes/package_diffs/8.2.0/standard-EXASOL-all/flavor_base_deps_python/python3_pip_packages_diff.md b/doc/changes/package_diffs/8.2.0/standard-EXASOL-all/flavor_base_deps_python/python3_pip_packages_diff.md index 9457cbd6..51763ca7 100644 --- a/doc/changes/package_diffs/8.2.0/standard-EXASOL-all/flavor_base_deps_python/python3_pip_packages_diff.md +++ b/doc/changes/package_diffs/8.2.0/standard-EXASOL-all/flavor_base_deps_python/python3_pip_packages_diff.md @@ -2,78 +2,78 @@ | | Package | Version in 8.1.0 | Version in 8.2.0 | Status | |---:|:------------------------------------------------------------------------------------------------------------------------------|:---------------------|:---------------------|:---------| -| 0 | awscrt | 0.20.9 | 0.20.9 | | -| 1 | azure-batch | 14.2.0 | 14.2.0 | | -| 2 | azure-cosmos | 4.6.0 | 4.6.0 | | -| 3 | azure-eventgrid | 4.19.0 | 4.19.0 | | -| 4 | azure-eventhub | 5.11.7 | 5.11.7 | | -| 5 | azure-eventhub-checkpointstoreblob | 1.1.4 | 1.1.4 | | -| 6 | azure-eventhub-checkpointstoreblob-aio | 1.1.4 | 1.1.4 | | -| 7 | azure-identity | 1.16.0 | 1.16.0 | | -| 8 | azure-keyvault | 4.2.0 | 4.2.0 | | -| 9 | azure-keyvault-certificates | 4.8.0 | 4.8.0 | | -| 10 | azure-keyvault-keys | 4.9.0 | 4.9.0 | | -| 11 | azure-keyvault-secrets | 4.8.0 | 4.8.0 | | -| 12 | azure-kusto-data | 4.4.0 | 4.4.0 | | -| 13 | azure-loganalytics | 0.1.1 | 0.1.1 | | -| 14 | azure-servicebus | 7.12.1 | 7.12.1 | | -| 15 | azure-storage-blob | 12.19.1 | 12.19.1 | | -| 16 | azure-storage-file-datalake | 12.14.0 | 12.14.0 | | -| 17 | azure-storage-file-share | 12.15.0 | 12.15.0 | | -| 18 | azure-storage-queue | 12.9.0 | 12.9.0 | | -| 19 | bitarray | 2.9.2 | 2.9.2 | | -| 20 | bitsets | 0.8.4 | 0.8.4 | | -| 21 | boto3 | 1.34.98 | 1.34.98 | | -| 22 | cffi | 1.16.0 | 1.16.0 | | -| 23 | cryptography | 42.0.6 | 42.0.6 | | -| 24 | cython | 3.0.10 | 3.0.10 | | -| 25 | debugpy | 1.8.1 | 1.8.1 | | -| 26 | docutils | 0.21.2 | 0.21.2 | | -| 27 | exasol-bucketfs | 0.9.0 | 0.9.0 | | -| 28 | git+http://github.com/EXASOL/websocket-api.git@5e122932d11a5c52a5889c6882b86a6018efb0fb#egg=exasol-db-api&subdirectory=python | No version specified | No version specified | | -| 29 | google-cloud-asset | 3.26.1 | 3.26.1 | | -| 30 | google-cloud-bigquery | 3.21.0 | 3.21.0 | | -| 31 | google-cloud-bigquery-storage | 2.25.0 | 2.25.0 | | -| 32 | google-cloud-bigtable | 2.23.1 | 2.23.1 | | -| 33 | google-cloud-containeranalysis | 2.14.3 | 2.14.3 | | -| 34 | google-cloud-datacatalog | 3.19.0 | 3.19.0 | | -| 35 | google-cloud-datastore | 2.19.0 | 2.19.0 | | -| 36 | google-cloud-firestore | 2.16.0 | 2.16.0 | | -| 37 | google-cloud-kms | 2.21.4 | 2.21.4 | | -| 38 | google-cloud-logging | 3.10.0 | 3.10.0 | | -| 39 | google-cloud-monitoring | 2.21.0 | 2.21.0 | | -| 40 | google-cloud-ndb | 2.3.1 | 2.3.1 | | -| 41 | google-cloud-pubsub | 2.21.1 | 2.21.1 | | -| 42 | google-cloud-spanner | 3.46.0 | 3.46.0 | | -| 43 | google-cloud-storage | 2.16.0 | 2.16.0 | | -| 44 | google-cloud-trace | 1.13.3 | 1.13.3 | | -| 45 | h2 | 4.1.0 | 4.1.0 | | -| 46 | jinja2 | 3.1.4 | 3.1.4 | | -| 47 | lxml | 5.2.1 | 5.2.1 | | -| 48 | martian | 2.0.post1 | 2.0.post1 | | -| 49 | numba | 0.59.1 | 0.59.1 | | -| 50 | paramiko | 3.4.0 | 3.4.0 | | -| 51 | plyvel | 1.5.1 | 1.5.1 | | -| 52 | protobuf | 4.25.3 | 4.25.3 | | -| 53 | pyOpenSSL | 24.1.0 | 24.1.0 | | -| 54 | pybase64 | 1.3.2 | 1.3.2 | | -| 55 | pybloomfiltermmap3 | 0.5.7 | 0.5.7 | | -| 56 | pycurl | 7.45.3 | 7.45.3 | | -| 57 | pyexasol | 0.25.2 | 0.25.2 | | -| 58 | pyftpdlib | 1.5.9 | 1.5.9 | | -| 59 | pyodbc | 5.1.0 | 5.1.0 | | -| 60 | pysftp | 0.2.9 | 0.2.9 | | -| 61 | pysimdjson | 6.0.2 | 6.0.2 | | -| 62 | pysmbc | 1.0.25.1 | 1.0.25.1 | | -| 63 | python-ldap | 3.4.4 | 3.4.4 | | -| 64 | pytz | 2024.1 | 2024.1 | | -| 65 | pyyaml | 6.0.1 | 6.0.1 | | -| 66 | redis | 5.0.4 | 5.0.4 | | -| 67 | requests | 2.31.0 | 2.31.0 | | -| 68 | roman | 4.2 | 4.2 | | -| 69 | sagemaker | 2.218.1 | 2.218.1 | | -| 70 | scikit-learn | 1.4.2 | 1.4.2 | | -| 71 | scipy | 1.13.0 | 1.13.0 | | -| 72 | setuptools | 69.5.1 | 69.5.1 | | +| 0 | setuptools | 69.5.1 | 70.0.0 | UPDATED | +| 1 | awscrt | 0.20.9 | 0.20.9 | | +| 2 | azure-batch | 14.2.0 | 14.2.0 | | +| 3 | azure-cosmos | 4.6.0 | 4.6.0 | | +| 4 | azure-eventgrid | 4.19.0 | 4.19.0 | | +| 5 | azure-eventhub | 5.11.7 | 5.11.7 | | +| 6 | azure-eventhub-checkpointstoreblob | 1.1.4 | 1.1.4 | | +| 7 | azure-eventhub-checkpointstoreblob-aio | 1.1.4 | 1.1.4 | | +| 8 | azure-identity | 1.16.0 | 1.16.0 | | +| 9 | azure-keyvault | 4.2.0 | 4.2.0 | | +| 10 | azure-keyvault-certificates | 4.8.0 | 4.8.0 | | +| 11 | azure-keyvault-keys | 4.9.0 | 4.9.0 | | +| 12 | azure-keyvault-secrets | 4.8.0 | 4.8.0 | | +| 13 | azure-kusto-data | 4.4.0 | 4.4.0 | | +| 14 | azure-loganalytics | 0.1.1 | 0.1.1 | | +| 15 | azure-servicebus | 7.12.1 | 7.12.1 | | +| 16 | azure-storage-blob | 12.19.1 | 12.19.1 | | +| 17 | azure-storage-file-datalake | 12.14.0 | 12.14.0 | | +| 18 | azure-storage-file-share | 12.15.0 | 12.15.0 | | +| 19 | azure-storage-queue | 12.9.0 | 12.9.0 | | +| 20 | bitarray | 2.9.2 | 2.9.2 | | +| 21 | bitsets | 0.8.4 | 0.8.4 | | +| 22 | boto3 | 1.34.98 | 1.34.98 | | +| 23 | cffi | 1.16.0 | 1.16.0 | | +| 24 | cryptography | 42.0.6 | 42.0.6 | | +| 25 | cython | 3.0.10 | 3.0.10 | | +| 26 | debugpy | 1.8.1 | 1.8.1 | | +| 27 | docutils | 0.21.2 | 0.21.2 | | +| 28 | exasol-bucketfs | 0.9.0 | 0.9.0 | | +| 29 | git+http://github.com/EXASOL/websocket-api.git@5e122932d11a5c52a5889c6882b86a6018efb0fb#egg=exasol-db-api&subdirectory=python | No version specified | No version specified | | +| 30 | google-cloud-asset | 3.26.1 | 3.26.1 | | +| 31 | google-cloud-bigquery | 3.21.0 | 3.21.0 | | +| 32 | google-cloud-bigquery-storage | 2.25.0 | 2.25.0 | | +| 33 | google-cloud-bigtable | 2.23.1 | 2.23.1 | | +| 34 | google-cloud-containeranalysis | 2.14.3 | 2.14.3 | | +| 35 | google-cloud-datacatalog | 3.19.0 | 3.19.0 | | +| 36 | google-cloud-datastore | 2.19.0 | 2.19.0 | | +| 37 | google-cloud-firestore | 2.16.0 | 2.16.0 | | +| 38 | google-cloud-kms | 2.21.4 | 2.21.4 | | +| 39 | google-cloud-logging | 3.10.0 | 3.10.0 | | +| 40 | google-cloud-monitoring | 2.21.0 | 2.21.0 | | +| 41 | google-cloud-ndb | 2.3.1 | 2.3.1 | | +| 42 | google-cloud-pubsub | 2.21.1 | 2.21.1 | | +| 43 | google-cloud-spanner | 3.46.0 | 3.46.0 | | +| 44 | google-cloud-storage | 2.16.0 | 2.16.0 | | +| 45 | google-cloud-trace | 1.13.3 | 1.13.3 | | +| 46 | h2 | 4.1.0 | 4.1.0 | | +| 47 | jinja2 | 3.1.4 | 3.1.4 | | +| 48 | lxml | 5.2.1 | 5.2.1 | | +| 49 | martian | 2.0.post1 | 2.0.post1 | | +| 50 | numba | 0.59.1 | 0.59.1 | | +| 51 | paramiko | 3.4.0 | 3.4.0 | | +| 52 | plyvel | 1.5.1 | 1.5.1 | | +| 53 | protobuf | 4.25.3 | 4.25.3 | | +| 54 | pyOpenSSL | 24.1.0 | 24.1.0 | | +| 55 | pybase64 | 1.3.2 | 1.3.2 | | +| 56 | pybloomfiltermmap3 | 0.5.7 | 0.5.7 | | +| 57 | pycurl | 7.45.3 | 7.45.3 | | +| 58 | pyexasol | 0.25.2 | 0.25.2 | | +| 59 | pyftpdlib | 1.5.9 | 1.5.9 | | +| 60 | pyodbc | 5.1.0 | 5.1.0 | | +| 61 | pysftp | 0.2.9 | 0.2.9 | | +| 62 | pysimdjson | 6.0.2 | 6.0.2 | | +| 63 | pysmbc | 1.0.25.1 | 1.0.25.1 | | +| 64 | python-ldap | 3.4.4 | 3.4.4 | | +| 65 | pytz | 2024.1 | 2024.1 | | +| 66 | pyyaml | 6.0.1 | 6.0.1 | | +| 67 | redis | 5.0.4 | 5.0.4 | | +| 68 | requests | 2.31.0 | 2.31.0 | | +| 69 | roman | 4.2 | 4.2 | | +| 70 | sagemaker | 2.218.1 | 2.218.1 | | +| 71 | scikit-learn | 1.4.2 | 1.4.2 | | +| 72 | scipy | 1.13.0 | 1.13.0 | | | 73 | simplejson | 3.19.2 | 3.19.2 | | | 74 | ujson | 5.9.0 | 5.9.0 | | \ No newline at end of file diff --git a/doc/changes/package_diffs/8.2.0/standard-EXASOL-all/language_deps/apt_get_packages_diff.md b/doc/changes/package_diffs/8.2.0/standard-EXASOL-all/language_deps/apt_get_packages_diff.md index acce4877..b2194243 100644 --- a/doc/changes/package_diffs/8.2.0/standard-EXASOL-all/language_deps/apt_get_packages_diff.md +++ b/doc/changes/package_diffs/8.2.0/standard-EXASOL-all/language_deps/apt_get_packages_diff.md @@ -2,9 +2,9 @@ | | Package | Version in 8.1.0 | Version in 8.2.0 | Status | |---:|:------------------------|:---------------------------|:---------------------------|:---------| -| 0 | ca-certificates | 20230311ubuntu0.22.04.1 | 20230311ubuntu0.22.04.1 | | -| 1 | chrpath | 0.16-2 | 0.16-2 | | -| 2 | curl | 7.81.0-1ubuntu1.16 | 7.81.0-1ubuntu1.16 | | -| 3 | openjdk-11-jdk-headless | 11.0.23+9-1ubuntu1~22.04.1 | 11.0.23+9-1ubuntu1~22.04.1 | | -| 4 | python3-distutils | 3.10.8-1~22.04 | 3.10.8-1~22.04 | | -| 5 | python3.10-dev | 3.10.12-1~22.04.3 | 3.10.12-1~22.04.3 | | \ No newline at end of file +| 0 | python3.10-dev | 3.10.12-1~22.04.3 | 3.10.12-1~22.04.4 | UPDATED | +| 1 | ca-certificates | 20230311ubuntu0.22.04.1 | 20230311ubuntu0.22.04.1 | | +| 2 | chrpath | 0.16-2 | 0.16-2 | | +| 3 | curl | 7.81.0-1ubuntu1.16 | 7.81.0-1ubuntu1.16 | | +| 4 | openjdk-11-jdk-headless | 11.0.23+9-1ubuntu1~22.04.1 | 11.0.23+9-1ubuntu1~22.04.1 | | +| 5 | python3-distutils | 3.10.8-1~22.04 | 3.10.8-1~22.04 | | \ No newline at end of file diff --git a/doc/changes/package_diffs/8.2.0/standard-EXASOL-all/udfclient_deps/apt_get_packages_diff.md b/doc/changes/package_diffs/8.2.0/standard-EXASOL-all/udfclient_deps/apt_get_packages_diff.md index 36c97816..2fcaebfd 100644 --- a/doc/changes/package_diffs/8.2.0/standard-EXASOL-all/udfclient_deps/apt_get_packages_diff.md +++ b/doc/changes/package_diffs/8.2.0/standard-EXASOL-all/udfclient_deps/apt_get_packages_diff.md @@ -2,9 +2,9 @@ | | Package | Version in 8.1.0 | Version in 8.2.0 | Status | |---:|:----------------|:------------------------|:------------------------|:---------| -| 0 | coreutils | 8.32-4.1ubuntu1.2 | 8.32-4.1ubuntu1.2 | | -| 1 | libnss-db | 2.2.3pre1-6ubuntu3 | 2.2.3pre1-6ubuntu3 | | -| 2 | libprotobuf-dev | 3.12.4-1ubuntu7.22.04.1 | 3.12.4-1ubuntu7.22.04.1 | | -| 3 | libssl-dev | 3.0.2-0ubuntu1.15 | 3.0.2-0ubuntu1.15 | | +| 0 | libssl-dev | 3.0.2-0ubuntu1.15 | 3.0.2-0ubuntu1.16 | UPDATED | +| 1 | coreutils | 8.32-4.1ubuntu1.2 | 8.32-4.1ubuntu1.2 | | +| 2 | libnss-db | 2.2.3pre1-6ubuntu3 | 2.2.3pre1-6ubuntu3 | | +| 3 | libprotobuf-dev | 3.12.4-1ubuntu7.22.04.1 | 3.12.4-1ubuntu7.22.04.1 | | | 4 | libzmq3-dev | 4.3.4-2 | 4.3.4-2 | | | 5 | locales | 2.35-0ubuntu3.8 | 2.35-0ubuntu3.8 | | \ No newline at end of file diff --git a/doc/changes/package_diffs/8.2.0/template-Exasol-all-java-17/base_test_deps/apt_get_packages_diff.md b/doc/changes/package_diffs/8.2.0/template-Exasol-all-java-17/base_test_deps/apt_get_packages_diff.md index 32bc9b67..3b61fea6 100644 --- a/doc/changes/package_diffs/8.2.0/template-Exasol-all-java-17/base_test_deps/apt_get_packages_diff.md +++ b/doc/changes/package_diffs/8.2.0/template-Exasol-all-java-17/base_test_deps/apt_get_packages_diff.md @@ -1,11 +1,11 @@ -| | Package | Version in 8.1.0 | Version in 8.2.0 | Status | -|---:|:----------|:--------------------|:--------------------|:---------| -| 0 | binutils | 2.38-4ubuntu2.6 | 2.38-4ubuntu2.6 | | -| 1 | chrpath | 0.16-2 | 0.16-2 | | -| 2 | gdb | 12.1-0ubuntu1~22.04 | 12.1-0ubuntu1~22.04 | | -| 3 | gdbserver | 12.1-0ubuntu1~22.04 | 12.1-0ubuntu1~22.04 | | -| 4 | patchelf | 0.14.3-1 | 0.14.3-1 | | -| 5 | strace | 5.16-0ubuntu3 | 5.16-0ubuntu3 | | -| 6 | valgrind | 1:3.18.1-1ubuntu2 | 1:3.18.1-1ubuntu2 | | \ No newline at end of file +| | Package | Version in 8.1.0 | Version in 8.2.0 | Status | +|---:|:----------|:--------------------|:----------------------|:---------| +| 0 | gdb | 12.1-0ubuntu1~22.04 | 12.1-0ubuntu1~22.04.2 | UPDATED | +| 1 | gdbserver | 12.1-0ubuntu1~22.04 | 12.1-0ubuntu1~22.04.2 | UPDATED | +| 2 | binutils | 2.38-4ubuntu2.6 | 2.38-4ubuntu2.6 | | +| 3 | chrpath | 0.16-2 | 0.16-2 | | +| 4 | patchelf | 0.14.3-1 | 0.14.3-1 | | +| 5 | strace | 5.16-0ubuntu3 | 5.16-0ubuntu3 | | +| 6 | valgrind | 1:3.18.1-1ubuntu2 | 1:3.18.1-1ubuntu2 | | \ No newline at end of file diff --git a/doc/changes/package_diffs/8.2.0/template-Exasol-all-java-17/flavor_base_deps/apt_get_packages_diff.md b/doc/changes/package_diffs/8.2.0/template-Exasol-all-java-17/flavor_base_deps/apt_get_packages_diff.md index 1bddfdda..1de63ec9 100644 --- a/doc/changes/package_diffs/8.2.0/template-Exasol-all-java-17/flavor_base_deps/apt_get_packages_diff.md +++ b/doc/changes/package_diffs/8.2.0/template-Exasol-all-java-17/flavor_base_deps/apt_get_packages_diff.md @@ -2,8 +2,8 @@ | | Package | Version in 8.1.0 | Version in 8.2.0 | Status | |---:|:----------|:---------------------|:---------------------|:---------| -| 0 | coreutils | 8.32-4.1ubuntu1.2 | 8.32-4.1ubuntu1.2 | | -| 1 | git | 1:2.34.1-1ubuntu1.11 | 1:2.34.1-1ubuntu1.11 | | -| 2 | locales | 2.35-0ubuntu3.8 | 2.35-0ubuntu3.8 | | -| 3 | unzip | 6.0-26ubuntu3.2 | 6.0-26ubuntu3.2 | | -| 4 | wget | 1.21.2-2ubuntu1 | 1.21.2-2ubuntu1 | | \ No newline at end of file +| 0 | wget | 1.21.2-2ubuntu1 | 1.21.2-2ubuntu1.1 | UPDATED | +| 1 | coreutils | 8.32-4.1ubuntu1.2 | 8.32-4.1ubuntu1.2 | | +| 2 | git | 1:2.34.1-1ubuntu1.11 | 1:2.34.1-1ubuntu1.11 | | +| 3 | locales | 2.35-0ubuntu3.8 | 2.35-0ubuntu3.8 | | +| 4 | unzip | 6.0-26ubuntu3.2 | 6.0-26ubuntu3.2 | | \ No newline at end of file diff --git a/doc/changes/package_diffs/8.2.0/template-Exasol-all-java-17/udfclient_deps/apt_get_packages_diff.md b/doc/changes/package_diffs/8.2.0/template-Exasol-all-java-17/udfclient_deps/apt_get_packages_diff.md index 36c97816..2fcaebfd 100644 --- a/doc/changes/package_diffs/8.2.0/template-Exasol-all-java-17/udfclient_deps/apt_get_packages_diff.md +++ b/doc/changes/package_diffs/8.2.0/template-Exasol-all-java-17/udfclient_deps/apt_get_packages_diff.md @@ -2,9 +2,9 @@ | | Package | Version in 8.1.0 | Version in 8.2.0 | Status | |---:|:----------------|:------------------------|:------------------------|:---------| -| 0 | coreutils | 8.32-4.1ubuntu1.2 | 8.32-4.1ubuntu1.2 | | -| 1 | libnss-db | 2.2.3pre1-6ubuntu3 | 2.2.3pre1-6ubuntu3 | | -| 2 | libprotobuf-dev | 3.12.4-1ubuntu7.22.04.1 | 3.12.4-1ubuntu7.22.04.1 | | -| 3 | libssl-dev | 3.0.2-0ubuntu1.15 | 3.0.2-0ubuntu1.15 | | +| 0 | libssl-dev | 3.0.2-0ubuntu1.15 | 3.0.2-0ubuntu1.16 | UPDATED | +| 1 | coreutils | 8.32-4.1ubuntu1.2 | 8.32-4.1ubuntu1.2 | | +| 2 | libnss-db | 2.2.3pre1-6ubuntu3 | 2.2.3pre1-6ubuntu3 | | +| 3 | libprotobuf-dev | 3.12.4-1ubuntu7.22.04.1 | 3.12.4-1ubuntu7.22.04.1 | | | 4 | libzmq3-dev | 4.3.4-2 | 4.3.4-2 | | | 5 | locales | 2.35-0ubuntu3.8 | 2.35-0ubuntu3.8 | | \ No newline at end of file diff --git a/doc/changes/package_diffs/8.2.0/template-Exasol-all-python-3.10-conda/base_test_deps/apt_get_packages_diff.md b/doc/changes/package_diffs/8.2.0/template-Exasol-all-python-3.10-conda/base_test_deps/apt_get_packages_diff.md index 1f759eeb..50830ff9 100644 --- a/doc/changes/package_diffs/8.2.0/template-Exasol-all-python-3.10-conda/base_test_deps/apt_get_packages_diff.md +++ b/doc/changes/package_diffs/8.2.0/template-Exasol-all-python-3.10-conda/base_test_deps/apt_get_packages_diff.md @@ -1,10 +1,10 @@ -| | Package | Version in 8.1.0 | Version in 8.2.0 | Status | -|---:|:----------|:--------------------|:--------------------|:---------| -| 0 | binutils | 2.38-4ubuntu2.6 | 2.38-4ubuntu2.6 | | -| 1 | gdb | 12.1-0ubuntu1~22.04 | 12.1-0ubuntu1~22.04 | | -| 2 | gdbserver | 12.1-0ubuntu1~22.04 | 12.1-0ubuntu1~22.04 | | -| 3 | patchelf | 0.14.3-1 | 0.14.3-1 | | -| 4 | strace | 5.16-0ubuntu3 | 5.16-0ubuntu3 | | -| 5 | valgrind | 1:3.18.1-1ubuntu2 | 1:3.18.1-1ubuntu2 | | \ No newline at end of file +| | Package | Version in 8.1.0 | Version in 8.2.0 | Status | +|---:|:----------|:--------------------|:----------------------|:---------| +| 0 | gdb | 12.1-0ubuntu1~22.04 | 12.1-0ubuntu1~22.04.2 | UPDATED | +| 1 | gdbserver | 12.1-0ubuntu1~22.04 | 12.1-0ubuntu1~22.04.2 | UPDATED | +| 2 | binutils | 2.38-4ubuntu2.6 | 2.38-4ubuntu2.6 | | +| 3 | patchelf | 0.14.3-1 | 0.14.3-1 | | +| 4 | strace | 5.16-0ubuntu3 | 5.16-0ubuntu3 | | +| 5 | valgrind | 1:3.18.1-1ubuntu2 | 1:3.18.1-1ubuntu2 | | \ No newline at end of file diff --git a/doc/changes/package_diffs/8.2.0/template-Exasol-all-python-3.10-cuda-conda/base_test_deps/apt_get_packages_diff.md b/doc/changes/package_diffs/8.2.0/template-Exasol-all-python-3.10-cuda-conda/base_test_deps/apt_get_packages_diff.md index 1f759eeb..50830ff9 100644 --- a/doc/changes/package_diffs/8.2.0/template-Exasol-all-python-3.10-cuda-conda/base_test_deps/apt_get_packages_diff.md +++ b/doc/changes/package_diffs/8.2.0/template-Exasol-all-python-3.10-cuda-conda/base_test_deps/apt_get_packages_diff.md @@ -1,10 +1,10 @@ -| | Package | Version in 8.1.0 | Version in 8.2.0 | Status | -|---:|:----------|:--------------------|:--------------------|:---------| -| 0 | binutils | 2.38-4ubuntu2.6 | 2.38-4ubuntu2.6 | | -| 1 | gdb | 12.1-0ubuntu1~22.04 | 12.1-0ubuntu1~22.04 | | -| 2 | gdbserver | 12.1-0ubuntu1~22.04 | 12.1-0ubuntu1~22.04 | | -| 3 | patchelf | 0.14.3-1 | 0.14.3-1 | | -| 4 | strace | 5.16-0ubuntu3 | 5.16-0ubuntu3 | | -| 5 | valgrind | 1:3.18.1-1ubuntu2 | 1:3.18.1-1ubuntu2 | | \ No newline at end of file +| | Package | Version in 8.1.0 | Version in 8.2.0 | Status | +|---:|:----------|:--------------------|:----------------------|:---------| +| 0 | gdb | 12.1-0ubuntu1~22.04 | 12.1-0ubuntu1~22.04.2 | UPDATED | +| 1 | gdbserver | 12.1-0ubuntu1~22.04 | 12.1-0ubuntu1~22.04.2 | UPDATED | +| 2 | binutils | 2.38-4ubuntu2.6 | 2.38-4ubuntu2.6 | | +| 3 | patchelf | 0.14.3-1 | 0.14.3-1 | | +| 4 | strace | 5.16-0ubuntu3 | 5.16-0ubuntu3 | | +| 5 | valgrind | 1:3.18.1-1ubuntu2 | 1:3.18.1-1ubuntu2 | | \ No newline at end of file diff --git a/doc/changes/package_diffs/8.2.0/template-Exasol-all-python-3.10/base_test_deps/apt_get_packages_diff.md b/doc/changes/package_diffs/8.2.0/template-Exasol-all-python-3.10/base_test_deps/apt_get_packages_diff.md index 1f759eeb..50830ff9 100644 --- a/doc/changes/package_diffs/8.2.0/template-Exasol-all-python-3.10/base_test_deps/apt_get_packages_diff.md +++ b/doc/changes/package_diffs/8.2.0/template-Exasol-all-python-3.10/base_test_deps/apt_get_packages_diff.md @@ -1,10 +1,10 @@ -| | Package | Version in 8.1.0 | Version in 8.2.0 | Status | -|---:|:----------|:--------------------|:--------------------|:---------| -| 0 | binutils | 2.38-4ubuntu2.6 | 2.38-4ubuntu2.6 | | -| 1 | gdb | 12.1-0ubuntu1~22.04 | 12.1-0ubuntu1~22.04 | | -| 2 | gdbserver | 12.1-0ubuntu1~22.04 | 12.1-0ubuntu1~22.04 | | -| 3 | patchelf | 0.14.3-1 | 0.14.3-1 | | -| 4 | strace | 5.16-0ubuntu3 | 5.16-0ubuntu3 | | -| 5 | valgrind | 1:3.18.1-1ubuntu2 | 1:3.18.1-1ubuntu2 | | \ No newline at end of file +| | Package | Version in 8.1.0 | Version in 8.2.0 | Status | +|---:|:----------|:--------------------|:----------------------|:---------| +| 0 | gdb | 12.1-0ubuntu1~22.04 | 12.1-0ubuntu1~22.04.2 | UPDATED | +| 1 | gdbserver | 12.1-0ubuntu1~22.04 | 12.1-0ubuntu1~22.04.2 | UPDATED | +| 2 | binutils | 2.38-4ubuntu2.6 | 2.38-4ubuntu2.6 | | +| 3 | patchelf | 0.14.3-1 | 0.14.3-1 | | +| 4 | strace | 5.16-0ubuntu3 | 5.16-0ubuntu3 | | +| 5 | valgrind | 1:3.18.1-1ubuntu2 | 1:3.18.1-1ubuntu2 | | \ No newline at end of file diff --git a/doc/changes/package_diffs/8.2.0/template-Exasol-all-python-3.10/language_deps/apt_get_packages_diff.md b/doc/changes/package_diffs/8.2.0/template-Exasol-all-python-3.10/language_deps/apt_get_packages_diff.md index 40570198..4dedb6bb 100644 --- a/doc/changes/package_diffs/8.2.0/template-Exasol-all-python-3.10/language_deps/apt_get_packages_diff.md +++ b/doc/changes/package_diffs/8.2.0/template-Exasol-all-python-3.10/language_deps/apt_get_packages_diff.md @@ -2,7 +2,7 @@ | | Package | Version in 8.1.0 | Version in 8.2.0 | Status | |---:|:------------------|:------------------------|:------------------------|:---------| -| 0 | ca-certificates | 20230311ubuntu0.22.04.1 | 20230311ubuntu0.22.04.1 | | -| 1 | curl | 7.81.0-1ubuntu1.16 | 7.81.0-1ubuntu1.16 | | -| 2 | python3-distutils | 3.10.8-1~22.04 | 3.10.8-1~22.04 | | -| 3 | python3.10-dev | 3.10.12-1~22.04.3 | 3.10.12-1~22.04.3 | | \ No newline at end of file +| 0 | python3.10-dev | 3.10.12-1~22.04.3 | 3.10.12-1~22.04.4 | UPDATED | +| 1 | ca-certificates | 20230311ubuntu0.22.04.1 | 20230311ubuntu0.22.04.1 | | +| 2 | curl | 7.81.0-1ubuntu1.16 | 7.81.0-1ubuntu1.16 | | +| 3 | python3-distutils | 3.10.8-1~22.04 | 3.10.8-1~22.04 | | \ No newline at end of file diff --git a/doc/changes/package_diffs/8.2.0/template-Exasol-all-python-3.10/udfclient_deps/apt_get_packages_diff.md b/doc/changes/package_diffs/8.2.0/template-Exasol-all-python-3.10/udfclient_deps/apt_get_packages_diff.md index 36c97816..2fcaebfd 100644 --- a/doc/changes/package_diffs/8.2.0/template-Exasol-all-python-3.10/udfclient_deps/apt_get_packages_diff.md +++ b/doc/changes/package_diffs/8.2.0/template-Exasol-all-python-3.10/udfclient_deps/apt_get_packages_diff.md @@ -2,9 +2,9 @@ | | Package | Version in 8.1.0 | Version in 8.2.0 | Status | |---:|:----------------|:------------------------|:------------------------|:---------| -| 0 | coreutils | 8.32-4.1ubuntu1.2 | 8.32-4.1ubuntu1.2 | | -| 1 | libnss-db | 2.2.3pre1-6ubuntu3 | 2.2.3pre1-6ubuntu3 | | -| 2 | libprotobuf-dev | 3.12.4-1ubuntu7.22.04.1 | 3.12.4-1ubuntu7.22.04.1 | | -| 3 | libssl-dev | 3.0.2-0ubuntu1.15 | 3.0.2-0ubuntu1.15 | | +| 0 | libssl-dev | 3.0.2-0ubuntu1.15 | 3.0.2-0ubuntu1.16 | UPDATED | +| 1 | coreutils | 8.32-4.1ubuntu1.2 | 8.32-4.1ubuntu1.2 | | +| 2 | libnss-db | 2.2.3pre1-6ubuntu3 | 2.2.3pre1-6ubuntu3 | | +| 3 | libprotobuf-dev | 3.12.4-1ubuntu7.22.04.1 | 3.12.4-1ubuntu7.22.04.1 | | | 4 | libzmq3-dev | 4.3.4-2 | 4.3.4-2 | | | 5 | locales | 2.35-0ubuntu3.8 | 2.35-0ubuntu3.8 | | \ No newline at end of file diff --git a/doc/changes/package_diffs/8.2.0/template-Exasol-all-r-4/base_test_deps/apt_get_packages_diff.md b/doc/changes/package_diffs/8.2.0/template-Exasol-all-r-4/base_test_deps/apt_get_packages_diff.md index 32bc9b67..3b61fea6 100644 --- a/doc/changes/package_diffs/8.2.0/template-Exasol-all-r-4/base_test_deps/apt_get_packages_diff.md +++ b/doc/changes/package_diffs/8.2.0/template-Exasol-all-r-4/base_test_deps/apt_get_packages_diff.md @@ -1,11 +1,11 @@ -| | Package | Version in 8.1.0 | Version in 8.2.0 | Status | -|---:|:----------|:--------------------|:--------------------|:---------| -| 0 | binutils | 2.38-4ubuntu2.6 | 2.38-4ubuntu2.6 | | -| 1 | chrpath | 0.16-2 | 0.16-2 | | -| 2 | gdb | 12.1-0ubuntu1~22.04 | 12.1-0ubuntu1~22.04 | | -| 3 | gdbserver | 12.1-0ubuntu1~22.04 | 12.1-0ubuntu1~22.04 | | -| 4 | patchelf | 0.14.3-1 | 0.14.3-1 | | -| 5 | strace | 5.16-0ubuntu3 | 5.16-0ubuntu3 | | -| 6 | valgrind | 1:3.18.1-1ubuntu2 | 1:3.18.1-1ubuntu2 | | \ No newline at end of file +| | Package | Version in 8.1.0 | Version in 8.2.0 | Status | +|---:|:----------|:--------------------|:----------------------|:---------| +| 0 | gdb | 12.1-0ubuntu1~22.04 | 12.1-0ubuntu1~22.04.2 | UPDATED | +| 1 | gdbserver | 12.1-0ubuntu1~22.04 | 12.1-0ubuntu1~22.04.2 | UPDATED | +| 2 | binutils | 2.38-4ubuntu2.6 | 2.38-4ubuntu2.6 | | +| 3 | chrpath | 0.16-2 | 0.16-2 | | +| 4 | patchelf | 0.14.3-1 | 0.14.3-1 | | +| 5 | strace | 5.16-0ubuntu3 | 5.16-0ubuntu3 | | +| 6 | valgrind | 1:3.18.1-1ubuntu2 | 1:3.18.1-1ubuntu2 | | \ No newline at end of file diff --git a/doc/changes/package_diffs/8.2.0/template-Exasol-all-r-4/flavor_base_deps/apt_get_packages_diff.md b/doc/changes/package_diffs/8.2.0/template-Exasol-all-r-4/flavor_base_deps/apt_get_packages_diff.md index 1bddfdda..1de63ec9 100644 --- a/doc/changes/package_diffs/8.2.0/template-Exasol-all-r-4/flavor_base_deps/apt_get_packages_diff.md +++ b/doc/changes/package_diffs/8.2.0/template-Exasol-all-r-4/flavor_base_deps/apt_get_packages_diff.md @@ -2,8 +2,8 @@ | | Package | Version in 8.1.0 | Version in 8.2.0 | Status | |---:|:----------|:---------------------|:---------------------|:---------| -| 0 | coreutils | 8.32-4.1ubuntu1.2 | 8.32-4.1ubuntu1.2 | | -| 1 | git | 1:2.34.1-1ubuntu1.11 | 1:2.34.1-1ubuntu1.11 | | -| 2 | locales | 2.35-0ubuntu3.8 | 2.35-0ubuntu3.8 | | -| 3 | unzip | 6.0-26ubuntu3.2 | 6.0-26ubuntu3.2 | | -| 4 | wget | 1.21.2-2ubuntu1 | 1.21.2-2ubuntu1 | | \ No newline at end of file +| 0 | wget | 1.21.2-2ubuntu1 | 1.21.2-2ubuntu1.1 | UPDATED | +| 1 | coreutils | 8.32-4.1ubuntu1.2 | 8.32-4.1ubuntu1.2 | | +| 2 | git | 1:2.34.1-1ubuntu1.11 | 1:2.34.1-1ubuntu1.11 | | +| 3 | locales | 2.35-0ubuntu3.8 | 2.35-0ubuntu3.8 | | +| 4 | unzip | 6.0-26ubuntu3.2 | 6.0-26ubuntu3.2 | | \ No newline at end of file diff --git a/doc/changes/package_diffs/8.2.0/template-Exasol-all-r-4/udfclient_deps/apt_get_packages_diff.md b/doc/changes/package_diffs/8.2.0/template-Exasol-all-r-4/udfclient_deps/apt_get_packages_diff.md index 36c97816..2fcaebfd 100644 --- a/doc/changes/package_diffs/8.2.0/template-Exasol-all-r-4/udfclient_deps/apt_get_packages_diff.md +++ b/doc/changes/package_diffs/8.2.0/template-Exasol-all-r-4/udfclient_deps/apt_get_packages_diff.md @@ -2,9 +2,9 @@ | | Package | Version in 8.1.0 | Version in 8.2.0 | Status | |---:|:----------------|:------------------------|:------------------------|:---------| -| 0 | coreutils | 8.32-4.1ubuntu1.2 | 8.32-4.1ubuntu1.2 | | -| 1 | libnss-db | 2.2.3pre1-6ubuntu3 | 2.2.3pre1-6ubuntu3 | | -| 2 | libprotobuf-dev | 3.12.4-1ubuntu7.22.04.1 | 3.12.4-1ubuntu7.22.04.1 | | -| 3 | libssl-dev | 3.0.2-0ubuntu1.15 | 3.0.2-0ubuntu1.15 | | +| 0 | libssl-dev | 3.0.2-0ubuntu1.15 | 3.0.2-0ubuntu1.16 | UPDATED | +| 1 | coreutils | 8.32-4.1ubuntu1.2 | 8.32-4.1ubuntu1.2 | | +| 2 | libnss-db | 2.2.3pre1-6ubuntu3 | 2.2.3pre1-6ubuntu3 | | +| 3 | libprotobuf-dev | 3.12.4-1ubuntu7.22.04.1 | 3.12.4-1ubuntu7.22.04.1 | | | 4 | libzmq3-dev | 4.3.4-2 | 4.3.4-2 | | | 5 | locales | 2.35-0ubuntu3.8 | 2.35-0ubuntu3.8 | | \ No newline at end of file diff --git a/flavors/standard-EXASOL-all/flavor_base/base_test_deps/packages/apt_get_packages b/flavors/standard-EXASOL-all/flavor_base/base_test_deps/packages/apt_get_packages index 216b6ecc..e7eb8b71 100644 --- a/flavors/standard-EXASOL-all/flavor_base/base_test_deps/packages/apt_get_packages +++ b/flavors/standard-EXASOL-all/flavor_base/base_test_deps/packages/apt_get_packages @@ -1,6 +1,6 @@ -gdb|12.1-0ubuntu1~22.04 +gdb|12.1-0ubuntu1~22.04.2 valgrind|1:3.18.1-1ubuntu2 -gdbserver|12.1-0ubuntu1~22.04 +gdbserver|12.1-0ubuntu1~22.04.2 binutils|2.38-4ubuntu2.6 patchelf|0.14.3-1 strace|5.16-0ubuntu3 diff --git a/flavors/standard-EXASOL-all/flavor_base/flavor_base_deps_apt/packages/apt_get_packages b/flavors/standard-EXASOL-all/flavor_base/flavor_base_deps_apt/packages/apt_get_packages index 4ee92242..ccf1125b 100644 --- a/flavors/standard-EXASOL-all/flavor_base/flavor_base_deps_apt/packages/apt_get_packages +++ b/flavors/standard-EXASOL-all/flavor_base/flavor_base_deps_apt/packages/apt_get_packages @@ -2,15 +2,15 @@ unzip|6.0-26ubuntu3.2 git|1:2.34.1-1ubuntu1.11 libcurl4-openssl-dev|7.81.0-1ubuntu1.16 build-essential|12.9ubuntu3 -wget|1.21.2-2ubuntu1 +wget|1.21.2-2ubuntu1.1 maven|3.6.3-5 libldb2|2:2.4.4-0ubuntu0.22.04.2 libleveldb1d|1.23-3build1 -openssl|3.0.2-0ubuntu1.15 -libldap2-dev|2.5.17+dfsg-0ubuntu0.22.04.1 +openssl|3.0.2-0ubuntu1.16 +libldap2-dev|2.5.18+dfsg-0ubuntu0.22.04.1 libsasl2-dev|2.1.27+dfsg2-3ubuntu1.2 # Needed by python-ldap -slapd|2.5.17+dfsg-0ubuntu0.22.04.1 -ldap-utils|2.5.17+dfsg-0ubuntu0.22.04.1 +slapd|2.5.18+dfsg-0ubuntu0.22.04.1 +ldap-utils|2.5.18+dfsg-0ubuntu0.22.04.1 unixodbc-dev|2.3.9-5ubuntu0.1 libxml2-dev|2.9.13+dfsg-1ubuntu0.4 apt-transport-https|2.4.12 diff --git a/flavors/standard-EXASOL-all/flavor_base/flavor_base_deps_python/packages/python3_pip_packages b/flavors/standard-EXASOL-all/flavor_base/flavor_base_deps_python/packages/python3_pip_packages index 514cf0d8..e9080b4a 100644 --- a/flavors/standard-EXASOL-all/flavor_base/flavor_base_deps_python/packages/python3_pip_packages +++ b/flavors/standard-EXASOL-all/flavor_base/flavor_base_deps_python/packages/python3_pip_packages @@ -40,7 +40,7 @@ pyexasol|0.25.2 pysftp|0.2.9 pytz|2024.1 sagemaker|2.218.1 -setuptools|69.5.1 +setuptools|70.0.0 pycurl|7.45.3 redis|5.0.4 roman|4.2 diff --git a/flavors/standard-EXASOL-all/flavor_base/language_deps/packages/apt_get_packages b/flavors/standard-EXASOL-all/flavor_base/language_deps/packages/apt_get_packages index 1d705d3a..74dc0d33 100644 --- a/flavors/standard-EXASOL-all/flavor_base/language_deps/packages/apt_get_packages +++ b/flavors/standard-EXASOL-all/flavor_base/language_deps/packages/apt_get_packages @@ -1,5 +1,5 @@ ca-certificates|20230311ubuntu0.22.04.1 -python3.10-dev|3.10.12-1~22.04.3 +python3.10-dev|3.10.12-1~22.04.4 python3-distutils|3.10.8-1~22.04 curl|7.81.0-1ubuntu1.16 openjdk-11-jdk-headless|11.0.23+9-1ubuntu1~22.04.1 diff --git a/flavors/standard-EXASOL-all/flavor_base/udfclient_deps/packages/apt_get_packages b/flavors/standard-EXASOL-all/flavor_base/udfclient_deps/packages/apt_get_packages index 69dd406d..d0957280 100644 --- a/flavors/standard-EXASOL-all/flavor_base/udfclient_deps/packages/apt_get_packages +++ b/flavors/standard-EXASOL-all/flavor_base/udfclient_deps/packages/apt_get_packages @@ -3,4 +3,4 @@ locales|2.35-0ubuntu3.8 libnss-db|2.2.3pre1-6ubuntu3 libzmq3-dev|4.3.4-2 libprotobuf-dev|3.12.4-1ubuntu7.22.04.1 -libssl-dev|3.0.2-0ubuntu1.15 +libssl-dev|3.0.2-0ubuntu1.16 diff --git a/flavors/template-Exasol-all-java-17/flavor_base/base_test_deps/packages/apt_get_packages b/flavors/template-Exasol-all-java-17/flavor_base/base_test_deps/packages/apt_get_packages index 65277b9c..d7e9d183 100644 --- a/flavors/template-Exasol-all-java-17/flavor_base/base_test_deps/packages/apt_get_packages +++ b/flavors/template-Exasol-all-java-17/flavor_base/base_test_deps/packages/apt_get_packages @@ -1,6 +1,6 @@ -gdb|12.1-0ubuntu1~22.04 +gdb|12.1-0ubuntu1~22.04.2 valgrind|1:3.18.1-1ubuntu2 -gdbserver|12.1-0ubuntu1~22.04 +gdbserver|12.1-0ubuntu1~22.04.2 binutils|2.38-4ubuntu2.6 patchelf|0.14.3-1 strace|5.16-0ubuntu3 diff --git a/flavors/template-Exasol-all-java-17/flavor_base/flavor_base_deps/packages/apt_get_packages b/flavors/template-Exasol-all-java-17/flavor_base/flavor_base_deps/packages/apt_get_packages index 1d3d3c6d..e5641b0e 100644 --- a/flavors/template-Exasol-all-java-17/flavor_base/flavor_base_deps/packages/apt_get_packages +++ b/flavors/template-Exasol-all-java-17/flavor_base/flavor_base_deps/packages/apt_get_packages @@ -1,5 +1,5 @@ coreutils|8.32-4.1ubuntu1.2 locales|2.35-0ubuntu3.8 unzip|6.0-26ubuntu3.2 -wget|1.21.2-2ubuntu1 +wget|1.21.2-2ubuntu1.1 git|1:2.34.1-1ubuntu1.11 diff --git a/flavors/template-Exasol-all-java-17/flavor_base/udfclient_deps/packages/apt_get_packages b/flavors/template-Exasol-all-java-17/flavor_base/udfclient_deps/packages/apt_get_packages index 69dd406d..d0957280 100644 --- a/flavors/template-Exasol-all-java-17/flavor_base/udfclient_deps/packages/apt_get_packages +++ b/flavors/template-Exasol-all-java-17/flavor_base/udfclient_deps/packages/apt_get_packages @@ -3,4 +3,4 @@ locales|2.35-0ubuntu3.8 libnss-db|2.2.3pre1-6ubuntu3 libzmq3-dev|4.3.4-2 libprotobuf-dev|3.12.4-1ubuntu7.22.04.1 -libssl-dev|3.0.2-0ubuntu1.15 +libssl-dev|3.0.2-0ubuntu1.16 diff --git a/flavors/template-Exasol-all-r-4/flavor_base/base_test_deps/packages/apt_get_packages b/flavors/template-Exasol-all-r-4/flavor_base/base_test_deps/packages/apt_get_packages index 65277b9c..d7e9d183 100644 --- a/flavors/template-Exasol-all-r-4/flavor_base/base_test_deps/packages/apt_get_packages +++ b/flavors/template-Exasol-all-r-4/flavor_base/base_test_deps/packages/apt_get_packages @@ -1,6 +1,6 @@ -gdb|12.1-0ubuntu1~22.04 +gdb|12.1-0ubuntu1~22.04.2 valgrind|1:3.18.1-1ubuntu2 -gdbserver|12.1-0ubuntu1~22.04 +gdbserver|12.1-0ubuntu1~22.04.2 binutils|2.38-4ubuntu2.6 patchelf|0.14.3-1 strace|5.16-0ubuntu3 diff --git a/flavors/template-Exasol-all-r-4/flavor_base/flavor_base_deps/packages/apt_get_packages b/flavors/template-Exasol-all-r-4/flavor_base/flavor_base_deps/packages/apt_get_packages index 1d3d3c6d..e5641b0e 100644 --- a/flavors/template-Exasol-all-r-4/flavor_base/flavor_base_deps/packages/apt_get_packages +++ b/flavors/template-Exasol-all-r-4/flavor_base/flavor_base_deps/packages/apt_get_packages @@ -1,5 +1,5 @@ coreutils|8.32-4.1ubuntu1.2 locales|2.35-0ubuntu3.8 unzip|6.0-26ubuntu3.2 -wget|1.21.2-2ubuntu1 +wget|1.21.2-2ubuntu1.1 git|1:2.34.1-1ubuntu1.11 diff --git a/flavors/template-Exasol-all-r-4/flavor_base/udfclient_deps/packages/apt_get_packages b/flavors/template-Exasol-all-r-4/flavor_base/udfclient_deps/packages/apt_get_packages index 69dd406d..d0957280 100644 --- a/flavors/template-Exasol-all-r-4/flavor_base/udfclient_deps/packages/apt_get_packages +++ b/flavors/template-Exasol-all-r-4/flavor_base/udfclient_deps/packages/apt_get_packages @@ -3,4 +3,4 @@ locales|2.35-0ubuntu3.8 libnss-db|2.2.3pre1-6ubuntu3 libzmq3-dev|4.3.4-2 libprotobuf-dev|3.12.4-1ubuntu7.22.04.1 -libssl-dev|3.0.2-0ubuntu1.15 +libssl-dev|3.0.2-0ubuntu1.16 diff --git a/script-languages b/script-languages index 0831aa25..7d6bcfa4 160000 --- a/script-languages +++ b/script-languages @@ -1 +1 @@ -Subproject commit 0831aa25ebe3804f2bd34832338d543de222e756 +Subproject commit 7d6bcfa463f4114c371cb18e7c08a0af3d78e239