Skip to content

Commit

Permalink
#73: Fixed "query_via_exaplus"
Browse files Browse the repository at this point in the history
  • Loading branch information
tomuben committed Jul 31, 2024
1 parent 160a765 commit f1f13a5
Show file tree
Hide file tree
Showing 5 changed files with 271 additions and 315 deletions.
1 change: 1 addition & 0 deletions doc/changes/changelog.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
# Changes

* [0.5.1](changes_0.5.1.md)
* [0.5.0](changes_0.5.0.md)
* [0.4.0](changes_0.4.0.md)
* [0.3.0](changes_0.3.0.md)
Expand Down
36 changes: 36 additions & 0 deletions doc/changes/changes_0.5.1.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,36 @@
# Exasol Python Test Framework 0.5.1, released 2024-07-31

Code name: Hotfix for 'query_via_exaplus'

## Summary

This release fixes the test function 'query_via_exaplus' which does not work with custom certificates.

## Features

n/a

## Bugs

#73: Fixed "query_via_exaplus"

## Documentation

n/a

## Refactoring

n/a

## Security

⚠️ Attention ⚠️

Security vulnerabilities have been addressed, hence we advise users of
our library to update and check the security of their own dependency tree.
E.g. by using a vulnerability scanner like [trivy](https://aquasecurity.github.io/trivy/v0.17.2/).


## Dependency updates

### Compile Dependency Updates
2 changes: 1 addition & 1 deletion exasol_python_test_framework/udf/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -244,7 +244,7 @@ def query(self, *args, **kwargs):

def query_via_exaplus(self, query):
cmd = '''%(exaplus)s -c %(conn)s -u %(user)s -P %(password)s
-no-config -autocommit ON -L -pipe''' % {
-no-config -autocommit ON -L -pipe jdbcparam validateservercertificate=0''' % {
'exaplus': os.environ.get('EXAPLUS'),
'conn': opts.server,
'user': self.user,
Expand Down
Loading

0 comments on commit f1f13a5

Please sign in to comment.