We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 7b618a1 commit 05873d8Copy full SHA for 05873d8
2 files changed
CHANGELOG.md
@@ -2,6 +2,30 @@
2
3
## UNRELEASED
4
5
+## v1.1.4 (2024-02-01)
6
+
7
+### Fixed
8
9
+Fixed issue creating an Edge dataset without product attribute specified, but specifying the product in the `RPApi` object:
10
11
+```python
12
+from ravenpackapi import RPApi, Dataset
13
14
+api = RPApi(api_key="YOUR_API_KEY", product="edge")
15
16
+ds = api.create_dataset(
17
+ Dataset(
18
+ name="New Dataset",
19
+ filters={"entity_relevance": {"$gte": 90}},
20
+ )
21
+)
22
+```
23
24
+Since the product is not specified in `Dataset`'s `__init__`, the incorrect
25
+product was being passed to the API, resulting in the message.
26
27
+> Field 'product' must be 'edge'
28
29
## v1.1.3 (2023-12-06)
30
31
### Fixed
ravenpackapi/version.py
@@ -1 +1 @@
1
-__version__ = "1.1.3"
+__version__ = "1.1.4"
0 commit comments