Skip to content

Commit

Permalink
Merge pull request #1028 from exasol/develop
Browse files Browse the repository at this point in the history
Changelog:
- #772: Added check of installation of R packages (#1021) 
- Updated dependencies and release log (#1027)
  • Loading branch information
tomuben authored Nov 26, 2024
2 parents 24ef2a3 + fb23db5 commit 0809df3
Show file tree
Hide file tree
Showing 7 changed files with 89 additions and 85 deletions.
2 changes: 1 addition & 1 deletion .current_gitmodules

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

11 changes: 7 additions & 4 deletions doc/changes/changes_9.0.0.md
Original file line number Diff line number Diff line change
@@ -1,11 +1,13 @@
# script-languages-release 9.0.0, released t.b.d.
# script-languages-release 9.0.0, released 2024-11-26

Code name: t.b.d.
Code name: New script options parser

## Summary

t.b.d.

This release introduces the new Script Options parser used in the Java UDF's. The new parser provides additional escape syntax which allows a more flexible definition of option values.
Note: In this release, the old options parser is still the default parser, the new parser needs to be activated manually.
Additionally, the release contains several bugfixes for the internal toolchain of building script languages containers, and updates several dependencies.
The flavor `template-Exasol-all-python-3.10-cuda-conda` was renamed to `template-Exasol-8-python-3.10-cuda-conda`.

## Script-Language-Container-Tool (Exaslct)

Expand Down Expand Up @@ -48,6 +50,7 @@ This release uses version 1.0.0 of the container tool.
- #958: Fix conda version conflict
- #1014: Fixed Push Docker Test Container workflow
- #1017: Implemented a GH workflow which validates correct target branch of PR
- #772: Added check of installation of R packages

## Doc

Expand Down

Large diffs are not rendered by default.

Original file line number Diff line number Diff line change
Expand Up @@ -59,7 +59,7 @@ scikit-learn|1.4.2
plyvel|1.5.1
python-ldap|3.4.4
pyOpenSSL|24.1.0
git+http://github.com/EXASOL/websocket-api.git@5e122932d11a5c52a5889c6882b86a6018efb0fb#egg=exasol-db-api&subdirectory=python|
git+http://github.com/EXASOL/websocket-api.git@303c0587e11a8c59d0bd48c23d4fa744976c86ed#egg=exasol-db-api&subdirectory=python|
debugpy|1.8.1
pybase64|1.3.2
pysimdjson|6.0.2
Expand All @@ -68,7 +68,7 @@ bitarray|2.9.2
pybloomfiltermmap3|0.5.7
bitsets|0.8.4
pyyaml|6.0.1
exasol-bucketfs|0.9.0
exasol-bucketfs|0.13.0
pysmbc|1.0.25.1
cryptography|42.0.6
h2|4.1.0
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ COPY flavor_customization/packages/python3_pip_packages /build_info/packages/fla
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
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 --no-version-validation

##########################################################################
##########################################################################
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -7,4 +7,4 @@
# If a line starts with # the whole line is a comment, however you can
# also start a comment after the package definition.

stringr|1.4.0
#mlr3|0.21.1

0 comments on commit 0809df3

Please sign in to comment.