Skip to content

Commit 5b564cc

Browse files
Fix DataFrame conversion issue with arrays of objects.
Fix DataFrame conversion issue with arrays of objects.
2 parents 0b73253 + 86a2a64 commit 5b564cc

5 files changed

Lines changed: 8 additions & 6 deletions

File tree

README.md

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -340,6 +340,9 @@ Even more queries can be found [here](https://colab.research.google.com/github/R
340340

341341
# Latest updates
342342

343+
## Version 2.1.9
344+
- Fixed a bug in the inferred conversion to DataFrames of output involving arrays of objects.
345+
343346
## Version 2.1.8
344347
- The order of the columns in output DataFrames were occasionally reshuffled. This new version keeps the column order more stable.
345348
- Further improvements supporting built-in function and improved XML/XQuery 3.1 support.
@@ -455,4 +458,3 @@ Even more queries can be found [here](https://colab.research.google.com/github/R
455458
- Ability to write back a sequence of items to local disk, HDFS, S3... in various formats (JSON, CSV, Parquet...).
456459
- Automatically declare external variables bound as DataFrames to improve userfriendliness.
457460
- Simplified the function names to make them more intuitive (json(), items(), df(), rdd(), etc).
458-

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ build-backend = "setuptools.build_meta"
44

55
[project]
66
name = "jsoniq"
7-
version = "2.1.8"
7+
version = "2.1.9"
88
description = "Python edition of RumbleDB, a JSONiq engine"
99
requires-python = ">=3.11"
1010
dependencies = [

src/jsoniq/jars/rumbledb-2.1.8.jar

Lines changed: 0 additions & 3 deletions
This file was deleted.

src/jsoniq/jars/rumbledb-2.1.9.jar

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
version https://git-lfs.github.com/spec/v1
2+
oid sha256:cad5d2bbc20972bfe7536dad7624cb6f1d7df7efd995ab181173b199b5e3ad53
3+
size 79750237

src/jsoniq/session.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
import pandas as pd
88
from importlib.resources import files, as_file
99

10-
with as_file(files("jsoniq.jars").joinpath("rumbledb-2.1.8.jar")) as jar_path:
10+
with as_file(files("jsoniq.jars").joinpath("rumbledb-2.1.9.jar")) as jar_path:
1111
if (os.name == 'nt'):
1212
jar_path_str = str(jar_path)
1313
else:

0 commit comments

Comments
 (0)