Skip to content

Commit 3f03855

Browse files
authored
release v0.10.5 (#213)
release notes for v0.10.5 and increment version to 0.10.5 --------- Co-authored-by: Danny Meijer <10511979+dannymeijer@users.noreply.github.com>
1 parent e6c2105 commit 3f03855

2 files changed

Lines changed: 23 additions & 2 deletions

File tree

docs/releases/0.10.md

Lines changed: 22 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,9 +24,30 @@ For users currently using v0.9, consider the following:
2424

2525
* `JDBCReader`, `HanaReader`, and `TeradataReader` classes have been updated to use `params` over `options` for improved consistency and maintainability. The `options` field has been renamed to `params`, and an alias `options` has been added for backwards compatibility. These changes provide a more consistent API across different reader classes and improve code readability. Note that `dbtable` and `query` validation now occurs upon *initialization* rather than at *runtime*, requiring either `dbtable` or `query` to be submitted to use JDBC based classes.
2626

27+
## Release 0.10.5
28+
29+
**v0.10.5** - *2025-07-14*
30+
31+
* **Full Changelog**:
32+
<https://github.com/Nike-Inc/koheesio/compare/koheesio-v0.10.4...koheesio-v0.10.5>
33+
34+
!!! bug "bugfix - PR [#210](https://github.com/Nike-Inc/koheesio/pull/210)"
35+
#### *Spark*: Fix imports for Spark 3.4.x compatibility
36+
37+
Fixed an issue where certain imports in the `spark.utils.common` module would throw an error in Spark 3.4.x environments because they are only available in Spark 3.5+.
38+
39+
For instance, this would result in errors like:
40+
```
41+
ModuleNotFoundError: No module named 'pyspark.sql.connect.streaming'
42+
```
43+
44+
Connect capabilities are now properly excluded in Spark versions below 3.5.
45+
46+
<small> by @maxim-mityutko</small>
47+
2748
## Release 0.10.4
2849

29-
**v0.10.4** - *2025-07-00*
50+
**v0.10.4** - *2025-07-10*
3051

3152
* **Full Changelog**:
3253
<https://github.com/Nike-Inc/koheesio/compare/koheesio-v0.10.3...koheesio-v0.10.4>

src/koheesio/__about__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212

1313
LICENSE_INFO = "Licensed as Apache 2.0"
1414
SOURCE = "https://github.com/Nike-Inc/koheesio"
15-
__version__ = "0.10.4"
15+
__version__ = "0.10.5"
1616
__logo__ = (
1717
75,
1818
(

0 commit comments

Comments
 (0)