Skip to content

Commit 35fbe7d

Browse files
committed
Bump ScalaTest to 3.2.20 and fix GPG decryption example in changelog.
1 parent 329b2a5 commit 35fbe7d

3 files changed

Lines changed: 5 additions & 5 deletions

File tree

README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -2165,12 +2165,12 @@ A: Update hadoop dll to version 3.2.2 or newer.
21652165
- [#869](https://github.com/AbsaOSS/cobrix/pull/869) Added support for REDEFINES when writing EBCDIC files from Spark DataFrames. Thanks @Il-Pela!
21662166
- [#757](https://github.com/AbsaOSS/cobrix/issues/757) Added support for GPG transparent decryption when reading data files
21672167
```scala
2168-
val df = spark.read
2168+
spark.read
21692169
.format("cobol")
21702170
.option("copybook", copybookPath)
21712171
.option("gpg_private_key", gpgPrivateKey) // -----BEGIN PGP PRIVATE KEY BLOCK----- ...
2172-
.option("gpg_private_key", gpg_private_key_passphrase)
2173-
.load("/some/path")
2172+
.option("gpg_private_key_passphrase", gpg_private_key_passphrase)
2173+
.load("/some/path/*.gpg")
21742174
```
21752175
21762176
- #### 2.10.8 released 3 August 2026.

pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -105,7 +105,7 @@
105105
<scala.version>2.12.21</scala.version>
106106
<scala.compat.version>2.12</scala.compat.version>
107107
<spark.version>3.5.7</spark.version>
108-
<scalatest.version>3.2.19</scalatest.version>
108+
<scalatest.version>3.2.20</scalatest.version>
109109
<specs.version>2.4.16</specs.version>
110110
<jackson.version>2.15.4</jackson.version>
111111
<mockito.version>4.11.0</mockito.version>

project/Dependencies.scala

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ object Dependencies {
2323
private val jacksonVersion = "2.15.4"
2424
private val bouncycastleVersion = "1.84"
2525

26-
private val scalatestVersion = "3.2.19"
26+
private val scalatestVersion = "3.2.20"
2727
private val mockitoVersion = "4.11.0"
2828

2929
private val defaultSparkVersionForScala211 = "2.4.8"

0 commit comments

Comments
 (0)