Skip to content

Commit

Permalink
#36: Upgrade dependencies (#37)
Browse files Browse the repository at this point in the history
  • Loading branch information
kaklakariada authored Jun 29, 2023
1 parent 113f1b1 commit 8dbea0d
Show file tree
Hide file tree
Showing 9 changed files with 182 additions and 153 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/project-keeper.sh

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

2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ package test
import testSetupAbstraction "github.com/exasol/exasol-test-setup-abstraction-server/go-client"

func myTest() {
exasol, err := testSetupAbstraction.New().CloudSetupConfigFilePath("myConfig.json").DockerDbVersion("7.1.15").Start()
exasol, err := testSetupAbstraction.New().CloudSetupConfigFilePath("myConfig.json").DockerDbVersion("7.1.21").Start()
if err != nil {
panic("failed to start test setup")
}
Expand Down
161 changes: 80 additions & 81 deletions dependencies.md

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

35 changes: 23 additions & 12 deletions doc/changes/changes_0.3.3.md
Original file line number Diff line number Diff line change
@@ -1,47 +1,58 @@
# Exasol Test Setup Abstraction Server 0.3.3, released 2023-04-??
# Exasol Test Setup Abstraction Server 0.3.3, released 2023-06-29

Code name: Upgrade dependencies on top of 0.3.2

## Summary

This release fixes CVE-2022-41723 in dependency `golang.org/x/net`.
This release fixes CVE-2022-41723 in dependency `golang.org/x/net` and CVE-2023-34462 in `io.netty:netty-handler`. It also upgrades the default Exasol version to 7.1.19.

## Features
## Bugfixes

* #34: Updated dependencies
* #36: Updated dependencies

## Dependency Updates

### Server for the Exasol Test-Setup Abstraction

#### Compile Dependency Updates

* Updated `io.javalin:javalin:5.3.2` to `5.4.2`
* Updated `com.exasol:exasol-test-setup-abstraction-java:2.0.0` to `2.0.2`
* Removed `com.exasol:exasol-testcontainers:6.5.1`
* Updated `io.javalin:javalin:5.3.2` to `5.6.1`

#### Runtime Dependency Updates

* Updated `org.slf4j:slf4j-jdk14:2.0.6` to `2.0.7`

#### Test Dependency Updates

* Updated `org.mockito:mockito-junit-jupiter:5.1.1` to `5.2.0`
* Updated `io.rest-assured:rest-assured:5.3.0` to `5.3.1`
* Updated `org.junit.jupiter:junit-jupiter-engine:5.9.2` to `5.9.3`
* Updated `org.junit.jupiter:junit-jupiter-params:5.9.2` to `5.9.3`
* Updated `org.mockito:mockito-junit-jupiter:5.1.1` to `5.4.0`

#### Plugin Dependency Updates

* Updated `com.exasol:error-code-crawler-maven-plugin:1.2.1` to `1.2.2`
* Updated `com.exasol:error-code-crawler-maven-plugin:1.2.1` to `1.2.3`
* Updated `org.apache.maven.plugins:maven-assembly-plugin:3.4.2` to `3.5.0`
* Updated `org.apache.maven.plugins:maven-enforcer-plugin:3.1.0` to `3.2.1`
* Updated `org.apache.maven.plugins:maven-failsafe-plugin:3.0.0-M7` to `3.0.0-M8`
* Updated `org.apache.maven.plugins:maven-surefire-plugin:3.0.0-M7` to `3.0.0-M8`
* Updated `org.codehaus.mojo:versions-maven-plugin:2.13.0` to `2.14.2`
* Updated `org.apache.maven.plugins:maven-compiler-plugin:3.10.1` to `3.11.0`
* Updated `org.apache.maven.plugins:maven-enforcer-plugin:3.1.0` to `3.3.0`
* Updated `org.apache.maven.plugins:maven-failsafe-plugin:3.0.0-M7` to `3.0.0`
* Updated `org.apache.maven.plugins:maven-surefire-plugin:3.0.0-M7` to `3.0.0`
* Added `org.basepom.maven:duplicate-finder-maven-plugin:1.5.1`
* Updated `org.codehaus.mojo:flatten-maven-plugin:1.3.0` to `1.4.1`
* Updated `org.codehaus.mojo:versions-maven-plugin:2.13.0` to `2.15.0`
* Updated `org.jacoco:jacoco-maven-plugin:0.8.8` to `0.8.9`

### Go-client

#### Compile Dependency Updates

* Updated `golang:1.18` to `1.19`
* Updated `github.com/exasol/exasol-driver-go:v0.4.6` to `v0.4.7`
* Updated `github.com/exasol/exasol-driver-go:v0.4.6` to `v1.0.0`

#### Test Dependency Updates

* Updated `github.com/stretchr/testify:v1.8.1` to `v1.8.2`
* Updated `github.com/antchfx/xmlquery:v1.3.15` to `v1.3.17`
* Updated `github.com/stretchr/testify:v1.8.1` to `v1.8.4`
4 changes: 2 additions & 2 deletions go-client/Builder_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -9,8 +9,8 @@ import (
)

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

type BuilderSuite struct {
suite.Suite
Expand Down
14 changes: 7 additions & 7 deletions go-client/go.mod
Original file line number Diff line number Diff line change
Expand Up @@ -2,25 +2,25 @@ module github.com/exasol/exasol-test-setup-abstraction-server/go-client

go 1.19

require github.com/exasol/exasol-driver-go v0.4.7
require github.com/exasol/exasol-driver-go v1.0.0

require github.com/stretchr/testify v1.8.2
require github.com/stretchr/testify v1.8.4

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

require (
github.com/antchfx/xpath v1.2.4 // indirect
github.com/davecgh/go-spew v1.1.1 // indirect
github.com/exasol/error-reporting-go v0.1.1 // indirect
github.com/exasol/error-reporting-go v0.2.0 // indirect
github.com/golang/groupcache v0.0.0-20210331224755-41bb18bfe9da // indirect
github.com/gorilla/websocket v1.5.0 // indirect
github.com/kr/pretty v0.3.1 // indirect
github.com/pmezard/go-difflib v1.0.0 // indirect
golang.org/x/net v0.8.0 // indirect
golang.org/x/sync v0.1.0 // indirect
golang.org/x/text v0.8.0 // indirect
golang.org/x/net v0.11.0 // indirect
golang.org/x/sync v0.3.0 // indirect
golang.org/x/text v0.10.0 // indirect
gopkg.in/check.v1 v1.0.0-20201130134442-10cb98267c6c // indirect
)
Loading

0 comments on commit 8dbea0d

Please sign in to comment.