Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

#84: Fix NullPointerException when starting DockerDB #85

Merged
merged 5 commits into from
Sep 30, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
14 changes: 5 additions & 9 deletions .github/workflows/dependencies_update.yml

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

2 changes: 1 addition & 1 deletion .github/workflows/quick-checks.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ jobs:
strategy:
fail-fast: false
matrix:
exasol_db_version: [8.27.0, 8.26.0, 7.1.26]
exasol_db_version: [8.31.0, 7.1.29]
steps:
- name: Checkout the repository
uses: actions/checkout@v4
Expand Down
2 changes: 1 addition & 1 deletion .vscode/settings.json
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@
"java.test.config": {
"vmArgs": [
"-Djava.util.logging.config.file=src/test/resources/logging.properties",
"-Dcom.exasol.dockerdb.image=8.27.0"
"-Dcom.exasol.dockerdb.image=8.31.0"
]
},
"sonarlint.connectedMode.project": {
Expand Down
146 changes: 73 additions & 73 deletions cloudSetup/.terraform.lock.hcl

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

4 changes: 2 additions & 2 deletions cloudSetup/cloudSetup.tf
Original file line number Diff line number Diff line change
Expand Up @@ -5,10 +5,10 @@ provider "aws" {

module "exasol_setup" {
source = "exasol/exasol-test-setup/aws"
version = "1.2.2"
version = "2.0.0"
owner = var.owner
deputy = var.deputy
datanode_count = 1
project = "ETSA"
exasol_image = "Exasol-R7.1.26-BYOL"
exasol_image = "Exasol-R7.1.26-PAYG"
}
4 changes: 2 additions & 2 deletions dependencies.md

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

1 change: 1 addition & 0 deletions doc/changes/changelog.md

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

41 changes: 41 additions & 0 deletions doc/changes/changes_2.1.5.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,41 @@
# Exasol Test Setup Abstraction Java 2.1.5, released 2024-09-30

Code name: Fix `NullPointerException` with Docker DB >= 8.29.1

## Summary

This release fixes a `NullPointerException` when launching Exasol Docker DB >= 8.29.1.

## Features

* #84: Fixed `NullPointerException` when launching Exasol Docker DB >= 8.29.1

## Dependency Updates

### Compile Dependency Updates

* Updated `com.exasol:bucketfs-java:3.1.2` to `3.2.0`
* Updated `com.exasol:exasol-testcontainers:7.1.0` to `7.1.1`
* Updated `com.github.mwiede:jsch:0.2.17` to `0.2.20`
* Updated `software.amazon.awssdk:cloudformation:2.25.56` to `2.28.11`
* Updated `software.amazon.awssdk:ec2:2.25.56` to `2.28.11`

### Runtime Dependency Updates

* Updated `org.eclipse.parsson:parsson:1.1.6` to `1.1.7`

### Test Dependency Updates

* Updated `nl.jqno.equalsverifier:equalsverifier:3.16.1` to `3.17`
* Updated `org.hamcrest:hamcrest:2.2` to `3.0`
* Updated `org.junit.jupiter:junit-jupiter-engine:5.10.2` to `5.11.1`
* Updated `org.junit.jupiter:junit-jupiter-params:5.10.2` to `5.11.1`
* Updated `org.slf4j:slf4j-jdk14:2.0.13` to `2.0.16`

### Plugin Dependency Updates

* Updated `com.exasol:project-keeper-maven-plugin:4.3.1` to `4.3.3`
* Updated `org.apache.maven.plugins:maven-enforcer-plugin:3.4.1` to `3.5.0`
* Updated `org.apache.maven.plugins:maven-javadoc-plugin:3.6.3` to `3.7.0`
* Updated `org.sonarsource.scanner.maven:sonar-maven-plugin:3.11.0.3922` to `4.0.0.4121`
* Updated `org.sonatype.plugins:nexus-staging-maven-plugin:1.6.13` to `1.7.0`
10 changes: 5 additions & 5 deletions pk_generated_parent.pom

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

Loading