-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Browse files
Browse the repository at this point in the history
* Increment version, upgrade dependencies * Fix sonar warning about regex * #155: Check if VS already exists before creating it * Adapt extension to shared integration tests * Make check for existing vs case-insensitive * Fix warning * Add changelog entry * Upgrade dependencies * Downgrade to Exasol 8.26.0 java.lang.IllegalStateException: E-ETAJ-12: Failed to ssh to the exasol database. This is required for redirecting a host port. Known mitigations: * Make sure the database is reachable, i.e. port 32773 open on host 'localhost'. * Make sure user 'root' can login to the database using your ssh-key. at com.exasol.exasoltestsetup.SshConnection.createSession(SshConnection.java:53) at com.exasol.exasoltestsetup.SshConnection.<init>(SshConnection.java:31) at com.exasol.exasoltestsetup.testcontainers.ExasolTestcontainerTestSetup.<init>(ExasolTestcontainerTestSetup.java:38) at com.exasol.exasoltestsetup.ExasolTestSetupFactory.getTestSetup(ExasolTestSetupFactory.java:123) at com.exasol.rls.extension.ExtensionIT.setup(ExtensionIT.java:47) at java.base/java.lang.reflect.Method.invoke(Method.java:566) at java.base/java.util.ArrayList.forEach(ArrayList.java:1541) Suppressed: java.lang.NullPointerException at com.exasol.rls.extension.ExtensionIT.teardown(ExtensionIT.java:64) at java.base/java.lang.reflect.Method.invoke(Method.java:566) at java.base/java.util.ArrayList.forEach(ArrayList.java:1541) at java.base/java.util.Collections$UnmodifiableCollection.forEach(Collections.java:1085) ... 1 more Caused by: com.jcraft.jsch.JSchException: Session.connect: java.net.SocketException: Connection reset at com.jcraft.jsch.Session.connect(Session.java:569) at com.jcraft.jsch.Session.connect(Session.java:198) at com.exasol.exasoltestsetup.SshConnection.createSession(SshConnection.java:39) ... 6 more Caused by: java.net.SocketException: Connection reset at java.base/java.net.SocketInputStream.read(SocketInputStream.java:186) at java.base/java.net.SocketInputStream.read(SocketInputStream.java:140) at java.base/java.net.SocketInputStream.read(SocketInputStream.java:200) at com.jcraft.jsch.IO.getByte(IO.java:86) at com.jcraft.jsch.Session.connect(Session.java:275) ... 8 more * Cleanup test * Implement review findings
- Loading branch information
1 parent
5ae6440
commit 18829eb
Showing
20 changed files
with
410 additions
and
480 deletions.
There are no files selected for viewing
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,32 @@ | ||
# Row Level Security lua 1.5.5, released 2024-05-07 | ||
|
||
Code name: Improve error handling for extension | ||
|
||
## Summary | ||
|
||
This release improves error handling when creating a new Virtual Schema using the extension: the extension now checks if a schema with the same name exists and returns a helpful error message. This check is case-insensitive to be consistent with other virtual schemas. | ||
|
||
## Bugfix | ||
|
||
* #155: Improved error handling for creating Virtual Schema using the extension | ||
|
||
## Dependency Updates | ||
|
||
### Exasol Row Level Security (Lua) | ||
|
||
#### Test Dependency Updates | ||
|
||
* Updated `com.exasol:exasol-testcontainers:7.0.1` to `7.1.0` | ||
* Updated `com.exasol:extension-manager-integration-test-java:0.5.9` to `0.5.11` | ||
* Updated `org.slf4j:slf4j-jdk14:2.0.12` to `2.0.13` | ||
|
||
### Extension | ||
|
||
#### Compile Dependency Updates | ||
|
||
* Updated `@exasol/extension-manager-interface:0.4.1` to `0.4.2` | ||
|
||
#### Development Dependency Updates | ||
|
||
* Updated `typescript-eslint:^7.6.0` to `^7.8.0` | ||
* Updated `typescript:^5.4.4` to `^5.4.5` |
Large diffs are not rendered by default.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.