Skip to content

Commit fa00a18

Browse files
🔐 Update dependencies to fix vulnerabilities (#427)
1 parent 2699a8a commit fa00a18

21 files changed

Lines changed: 738 additions & 448 deletions

.github/workflows/ci-build.yml

Lines changed: 2 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

.project-keeper.yml

Lines changed: 1 addition & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -11,17 +11,12 @@ sources:
1111
version:
1212
fromSource: pom.xml
1313
linkReplacements:
14-
excludes:
15-
# Project is written in Scala, no need to test with next Java version
16-
- "E-PK-CORE-18: Outdated content: '.github/workflows/ci-build-next-java.yml'"
1714
build:
1815
runnerOs: ubuntu-22.04
1916
freeDiskSpace: true
2017
exasolDbVersions:
21-
- "2025.2.1"
18+
- "2026.1.0"
2219
- "2025.1.10"
23-
# Disabled, see this for details: https://github.com/exasol/cloud-storage-extension/issues/356
24-
# - "7.1.30"
2520
workflows:
2621
- name: ci-build.yml
2722
stepCustomizations:

.vscode/settings.json

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010
"java.test.config": {
1111
"vmArgs": [
1212
"-Djava.util.logging.config.file=src/test/resources/logging.properties",
13-
"-Dcom.exasol.dockerdb.image=2025.2.1"
13+
"-Dcom.exasol.dockerdb.image=2026.1.0"
1414
]
1515
},
1616
"files.watcherExclude": {
@@ -19,5 +19,6 @@
1919
"sonarlint.connectedMode.project": {
2020
"connectionId": "exasol",
2121
"projectKey": "com.exasol:cloud-storage-extension"
22-
}
22+
},
23+
"java.jdt.ls.vmargs": "-XX:+UseParallelGC -XX:GCTimeRatio=4 -XX:AdaptiveSizePolicyWeight=90 -Dsun.zip.disableMemoryMapping=true -Xmx4G -Xms100m -Xlog:disable"
2324
}

dependencies.md

Lines changed: 180 additions & 202 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

doc/changes/changelog.md

Lines changed: 1 addition & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

doc/changes/changes_2.9.6.md

Lines changed: 301 additions & 0 deletions
Large diffs are not rendered by default.

doc/user_guide/user_guide.md

Lines changed: 11 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -150,7 +150,7 @@ downloaded jar file is the same as the checksum provided in the releases.
150150
To check the SHA256 result of the local jar, run the command:
151151

152152
```sh
153-
sha256sum exasol-cloud-storage-extension-2.9.5.jar
153+
sha256sum exasol-cloud-storage-extension-2.9.6.jar
154154
```
155155

156156
### Building From Source
@@ -180,7 +180,7 @@ mvn clean package -DskipTests=true
180180
```
181181

182182
The assembled jar file should be located at
183-
`target/exasol-cloud-storage-extension-2.9.5.jar`.
183+
`target/exasol-cloud-storage-extension-2.9.6.jar`.
184184

185185
### Create an Exasol Bucket
186186

@@ -202,7 +202,7 @@ for the HTTP protocol.
202202
Upload the jar file using curl command:
203203

204204
```sh
205-
curl -X PUT -T exasol-cloud-storage-extension-2.9.5.jar \
205+
curl -X PUT -T exasol-cloud-storage-extension-2.9.6.jar \
206206
http://w:<WRITE_PASSWORD>@exasol.datanode.domain.com:2580/<BUCKET>/
207207
```
208208

@@ -237,7 +237,7 @@ OPEN SCHEMA CLOUD_STORAGE_EXTENSION;
237237

238238
CREATE OR REPLACE JAVA SET SCRIPT IMPORT_PATH(...) EMITS (...) AS
239239
%scriptclass com.exasol.cloudetl.scriptclasses.FilesImportQueryGenerator;
240-
%jar /buckets/bfsdefault/<BUCKET>/exasol-cloud-storage-extension-2.9.5.jar;
240+
%jar /buckets/bfsdefault/<BUCKET>/exasol-cloud-storage-extension-2.9.6.jar;
241241
/
242242

243243
CREATE OR REPLACE JAVA SCALAR SCRIPT IMPORT_METADATA(...) EMITS (
@@ -247,12 +247,12 @@ CREATE OR REPLACE JAVA SCALAR SCRIPT IMPORT_METADATA(...) EMITS (
247247
end_index DECIMAL(36, 0)
248248
) AS
249249
%scriptclass com.exasol.cloudetl.scriptclasses.FilesMetadataReader;
250-
%jar /buckets/bfsdefault/<BUCKET>/exasol-cloud-storage-extension-2.9.5.jar;
250+
%jar /buckets/bfsdefault/<BUCKET>/exasol-cloud-storage-extension-2.9.6.jar;
251251
/
252252

253253
CREATE OR REPLACE JAVA SET SCRIPT IMPORT_FILES(...) EMITS (...) AS
254254
%scriptclass com.exasol.cloudetl.scriptclasses.FilesDataImporter;
255-
%jar /buckets/bfsdefault/<BUCKET>/exasol-cloud-storage-extension-2.9.5.jar;
255+
%jar /buckets/bfsdefault/<BUCKET>/exasol-cloud-storage-extension-2.9.6.jar;
256256
/
257257
```
258258

@@ -271,12 +271,12 @@ OPEN SCHEMA CLOUD_STORAGE_EXTENSION;
271271

272272
CREATE OR REPLACE JAVA SET SCRIPT EXPORT_PATH(...) EMITS (...) AS
273273
%scriptclass com.exasol.cloudetl.scriptclasses.TableExportQueryGenerator;
274-
%jar /buckets/bfsdefault/<BUCKET>/exasol-cloud-storage-extension-2.9.5.jar;
274+
%jar /buckets/bfsdefault/<BUCKET>/exasol-cloud-storage-extension-2.9.6.jar;
275275
/
276276

277277
CREATE OR REPLACE JAVA SET SCRIPT EXPORT_TABLE(...) EMITS (ROWS_AFFECTED INT) AS
278278
%scriptclass com.exasol.cloudetl.scriptclasses.TableDataExporter;
279-
%jar /buckets/bfsdefault/<BUCKET>/exasol-cloud-storage-extension-2.9.5.jar;
279+
%jar /buckets/bfsdefault/<BUCKET>/exasol-cloud-storage-extension-2.9.6.jar;
280280
/
281281
```
282282

@@ -410,13 +410,13 @@ CREATE OR REPLACE JAVA SCALAR SCRIPT IMPORT_METADATA(...) EMITS (
410410
) AS
411411
%jvmoption -DHTTPS_PROXY=http://username:password@10.10.1.10:1180
412412
%scriptclass com.exasol.cloudetl.scriptclasses.FilesMetadataReader;
413-
%jar /buckets/bfsdefault/<BUCKET>/exasol-cloud-storage-extension-2.9.5.jar;
413+
%jar /buckets/bfsdefault/<BUCKET>/exasol-cloud-storage-extension-2.9.6.jar;
414414
/
415415

416416
CREATE OR REPLACE JAVA SET SCRIPT IMPORT_FILES(...) EMITS (...) AS
417417
%jvmoption -DHTTPS_PROXY=http://username:password@10.10.1.10:1180
418418
%scriptclass com.exasol.cloudetl.scriptclasses.FilesDataImporter;
419-
%jar /buckets/bfsdefault/<BUCKET>/exasol-cloud-storage-extension-2.9.5.jar;
419+
%jar /buckets/bfsdefault/<BUCKET>/exasol-cloud-storage-extension-2.9.6.jar;
420420
/
421421
```
422422

@@ -1207,7 +1207,7 @@ In this case, full script will look like this:
12071207
CREATE OR REPLACE JAVA SET SCRIPT IMPORT_PATH(...) EMITS (...) AS
12081208
%jvmoption --add-exports=java.base/sun.nio.ch=ALL-UNNAMED;
12091209
%scriptclass com.exasol.cloudetl.scriptclasses.FilesImportQueryGenerator;
1210-
%jar /buckets/bfsdefault/default/exasol-cloud-storage-extension-2.9.5.jar;
1210+
%jar /buckets/bfsdefault/default/exasol-cloud-storage-extension-2.9.6.jar;
12111211
/
12121212
```
12131213

pk_generated_parent.pom

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)