-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
5f915fd
commit 4c0d835
Showing
8 changed files
with
173 additions
and
106 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,21 +1,24 @@ | ||
{ | ||
"editor.formatOnSave": true, | ||
"editor.codeActionsOnSave": { | ||
"source.organizeImports": true, | ||
"source.generate.finalModifiers": true, | ||
"source.fixAll": true | ||
}, | ||
"java.codeGeneration.useBlocks": true, | ||
"java.saveActions.organizeImports": true, | ||
"java.sources.organizeImports.starThreshold": 3, | ||
"java.sources.organizeImports.staticStarThreshold": 3, | ||
"java.test.config": { | ||
"vmArgs": [ | ||
"-Djava.util.logging.config.file=src/test/resources/logging.properties" | ||
] | ||
}, | ||
"sonarlint.connectedMode.project": { | ||
"connectionId": "exasol", | ||
"projectKey": "com.exasol:parquet-io-java" | ||
} | ||
} | ||
"editor.formatOnSave": true, | ||
"editor.codeActionsOnSave": { | ||
"source.organizeImports": true, | ||
"source.generate.finalModifiers": true, | ||
"source.fixAll": true | ||
}, | ||
"java.codeGeneration.useBlocks": true, | ||
"java.saveActions.organizeImports": true, | ||
"java.sources.organizeImports.starThreshold": 3, | ||
"java.sources.organizeImports.staticStarThreshold": 3, | ||
"java.test.config": { | ||
"vmArgs": [ | ||
"-Djava.util.logging.config.file=src/test/resources/logging.properties" | ||
] | ||
}, | ||
"sonarlint.connectedMode.project": { | ||
"connectionId": "exasol", | ||
"projectKey": "com.exasol:parquet-io-java" | ||
}, | ||
"files.watcherExclude": { | ||
"**/target": true | ||
} | ||
} |
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,27 @@ | ||
# Parquet for Java 2.0.6, released 2023-10-24 | ||
|
||
Code name: Fix CVE-2023-39410 and CVE-2023-42503 | ||
|
||
## Summary | ||
|
||
This release fixes the following vulnerabilities: | ||
|
||
* CVE-2023-39410 in compile dependency `org.apache.avro:avro` | ||
* CVE-2023-42503 in compile dependency `org.apache.commons:commons-compress` | ||
|
||
## Security | ||
|
||
* #64: Fixed CVE-2023-39410 in `org.apache.avro:avro` | ||
|
||
## Dependency Updates | ||
|
||
### Compile Dependency Updates | ||
|
||
* Added `org.apache.avro:avro:1.11.3` | ||
* Added `org.apache.commons:commons-compress:1.24.0` | ||
|
||
### Test Dependency Updates | ||
|
||
* Added `nl.jqno.equalsverifier:equalsverifier:3.15.2` | ||
* Updated `org.mockito:mockito-core:5.5.0` to `5.6.0` | ||
* Updated `org.mockito:mockito-junit-jupiter:5.5.0` to `5.6.0` |
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
12 changes: 12 additions & 0 deletions
12
src/test/java/com/exasol/parquetio/data/ChunkIntervalImplTest.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,12 @@ | ||
package com.exasol.parquetio.data; | ||
|
||
import org.junit.jupiter.api.Test; | ||
|
||
import nl.jqno.equalsverifier.EqualsVerifier; | ||
|
||
class ChunkIntervalImplTest { | ||
@Test | ||
void verifyEqualsContract() { | ||
EqualsVerifier.forClass(ChunkIntervalImpl.class).verify(); | ||
} | ||
} |