Skip to content

Commit

Permalink
#31 Upgrade testcontainers to fix ssh credentials bug
Browse files Browse the repository at this point in the history
  • Loading branch information
kaklakariada committed Jan 31, 2023
1 parent 78e2271 commit d8f5a48
Show file tree
Hide file tree
Showing 10 changed files with 143 additions and 99 deletions.
2 changes: 1 addition & 1 deletion .project-keeper.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,4 +8,4 @@ sources:
path: go-client/go.mod
linkReplacements:
- https://javalin.io/javalin|https://javalin.io/
version: 0.3.1
version: 0.3.2
153 changes: 78 additions & 75 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.

29 changes: 29 additions & 0 deletions doc/changes/changes_0.3.2.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,29 @@
# Exasol Test Setup Abstraction Server 0.3.2, released 2023-01-31

Code name: Improve Docker Container Reuse

## Summary

This release avoids starting new Docker containers for each working directory in which the server was started.

## Bugfixes

* #31: Fixed starting new Docker containers for each working directory
## Dependency Updates

### Server for the Exasol Test-Setup Abstraction

#### Compile Dependency Updates

* Added `com.exasol:exasol-testcontainers:6.5.1`
* Updated `io.javalin:javalin:5.3.1` to `5.3.2`

#### Test Dependency Updates

* Updated `org.mockito:mockito-junit-jupiter:5.0.0` to `5.1.1`

### Go-client

#### Test Dependency Updates

* Updated `github.com/antchfx/xmlquery:v1.3.14` to `v1.3.15`
2 changes: 1 addition & 1 deletion go-client/Builder_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ import (

// Default version specified in exasol-test-setup-abstraction-java
const DEFAULT_EXASOL_VERSION = "7.1.15"
const NON_DEFAULT_EXASOL_VERSION = "7.1.14"
const NON_DEFAULT_EXASOL_VERSION = "7.1.16"

type BuilderSuite struct {
suite.Suite
Expand Down
2 changes: 1 addition & 1 deletion go-client/TestSetupAbstraction.go
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ type TestSetupAbstraction struct {
server *serverProcess
}

const serverVersion = "0.3.1"
const serverVersion = "0.3.2"

// Create creates a new Exasol test setup with the given path to the config file
// and starts a local server.
Expand Down
4 changes: 2 additions & 2 deletions go-client/go.mod
Original file line number Diff line number Diff line change
Expand Up @@ -7,12 +7,12 @@ require github.com/exasol/exasol-driver-go v0.4.6
require github.com/stretchr/testify v1.8.1

require (
github.com/antchfx/xmlquery v1.3.14
github.com/antchfx/xmlquery v1.3.15
gopkg.in/yaml.v3 v3.0.1
)

require (
github.com/antchfx/xpath v1.2.2 // indirect
github.com/antchfx/xpath v1.2.3 // indirect
github.com/davecgh/go-spew v1.1.1 // indirect
github.com/exasol/error-reporting-go v0.1.1 // indirect
github.com/golang/groupcache v0.0.0-20210331224755-41bb18bfe9da // indirect
Expand Down
8 changes: 4 additions & 4 deletions go-client/go.sum

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

2 changes: 1 addition & 1 deletion server/pk_generated_parent.pom

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

39 changes: 25 additions & 14 deletions server/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -5,33 +5,37 @@
<modelVersion>4.0.0</modelVersion>
<groupId>com.exasol</groupId>
<artifactId>exasol-test-setup-abstraction-server</artifactId>
<version>0.3.1</version>
<version>0.3.2</version>
<name>Server for the Exasol Test-Setup Abstraction</name>
<description>Test setup abstraction backend for Go and other languages.</description>
<url>https://github.com/exasol/exasol-test-setup-abstraction-server/</url>
<properties>
<junit.version>5.9.2</junit.version>
</properties>
<distributionManagement>
<snapshotRepository>
<id>ossrh</id>
<url>https://oss.sonatype.org/content/repositories/snapshots</url>
</snapshotRepository>
<repository>
<id>ossrh</id>
<url>https://oss.sonatype.org/service/local/staging/deploy/maven2/</url>
</repository>
</distributionManagement>
<dependencies>
<dependency>
<groupId>com.exasol</groupId>
<artifactId>exasol-test-setup-abstraction-java</artifactId>
<version>2.0.0</version>
</dependency>
<!-- Explicitly upgrade exasol-testcontainers to fix bug #31. This can be removed once
exasol-test-setup-abstraction-java includes the latest version. -->
<dependency>
<groupId>com.exasol</groupId>
<artifactId>exasol-testcontainers</artifactId>
<version>6.5.1</version>
</dependency>
<dependency>
<groupId>io.javalin</groupId>
<artifactId>javalin</artifactId>
<version>5.3.1</version>
<version>5.3.2</version>
</dependency>
<!-- -->
<dependency>
<groupId>org.slf4j</groupId>
<artifactId>slf4j-jdk14</artifactId>
<version>2.0.6</version>
<scope>runtime</scope>
</dependency>
<!-- test dependencies -->
<dependency>
Expand All @@ -55,7 +59,7 @@
<dependency>
<groupId>org.mockito</groupId>
<artifactId>mockito-junit-jupiter</artifactId>
<version>5.0.0</version>
<version>5.1.1</version>
<scope>test</scope>
</dependency>
<dependency>
Expand Down Expand Up @@ -117,6 +121,13 @@
</execution>
</executions>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-failsafe-plugin</artifactId>
<configuration>
<useModulePath>false</useModulePath>
</configuration>
</plugin>
<plugin>
<groupId>org.sonatype.ossindex.maven</groupId>
<artifactId>ossindex-maven-plugin</artifactId>
Expand All @@ -140,7 +151,7 @@
<parent>
<artifactId>exasol-test-setup-abstraction-server-generated-parent</artifactId>
<groupId>com.exasol</groupId>
<version>0.3.1</version>
<version>0.3.2</version>
<relativePath>pk_generated_parent.pom</relativePath>
</parent>
</project>

0 comments on commit d8f5a48

Please sign in to comment.