Skip to content
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
7 changes: 1 addition & 6 deletions .github/workflows/ci-build.yml

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

14 changes: 2 additions & 12 deletions .project-keeper.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,19 +4,9 @@ sources:
modules:
- maven_central
- integration_tests
linkReplacements:
- "https://github.com/hamcrest/JavaHamcrest/hamcrest-all|https://github.com/hamcrest/JavaHamcrest"
build:
# UDFs in Exasol 7.1 require Ubuntu 20.04
runnerOs: ubuntu-20.04
exasolDbVersions:
- "8.32.0"
- "7.1.30"
workflows:
- name: ci-build.yml
stepCustomizations:
- action: INSERT_AFTER
job: matrix-build
stepId: enable-testcontainer-reuse
content:
name: Fix VM Crash in UDFs
id: fix-vm-crash
run: sudo sysctl -w kernel.apparmor_restrict_unprivileged_userns=0
3 changes: 2 additions & 1 deletion .vscode/settings.json
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,8 @@
"java.sources.organizeImports.staticStarThreshold": 3,
"java.test.config": {
"vmArgs": [
"-Djava.util.logging.config.file=src/test/resources/logging.properties"
"-Djava.util.logging.config.file=src/test/resources/logging.properties",
"-Dcom.exasol.dockerdb.image=7.1.30"
]
},
"sonarlint.connectedMode.project": {
Expand Down
6 changes: 3 additions & 3 deletions dependencies.md

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

2 changes: 2 additions & 0 deletions doc/changes/changes_0.6.15.md
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,8 @@ This release fixes the following vulnerabilities in test dependencies:
### Test Dependency Updates

* Updated `com.exasol:exasol-testcontainers:7.1.1` to `7.1.3`
* Removed `org.hamcrest:hamcrest-all:1.3`
* Added `org.hamcrest:hamcrest:3.0`
* Updated `org.junit.jupiter:junit-jupiter-engine:5.11.3` to `5.11.4`
* Updated `org.junit.jupiter:junit-jupiter-params:5.11.3` to `5.11.4`
* Updated `org.mockito:mockito-junit-jupiter:5.14.2` to `5.15.2`
Expand Down
4 changes: 2 additions & 2 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -80,8 +80,8 @@
</dependency>
<dependency>
<groupId>org.hamcrest</groupId>
<artifactId>hamcrest-all</artifactId>
<version>1.3</version>
<artifactId>hamcrest</artifactId>
<version>3.0</version>
<scope>test</scope>
</dependency>
<!--Integration test dependencies-->
Expand Down
Loading