We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 0f21836 commit 0da5ba0Copy full SHA for 0da5ba0
CHANGELOG.md
@@ -1,5 +1,33 @@
1
# Changelog
2
3
+## v1.1.1 (2023-09-21)
4
+
5
+### Removed
6
7
+* Removed dependency on `future` #9
8
9
+### Fixed
10
11
+Fixed bug with lazy loading that caused the wrong product (`RPA`) being sent
12
+_sometimes_ when saving a dataset without modifying it.
13
14
+To reproduce the issue:
15
+```python
16
+from ravenpackapi import RPApi
17
+api = RPApi(product="edge")
18
+ds = api.get_dataset("SOME_DATASET_ID")
19
+ds.save()
20
+```
21
22
+Note that this error is not always triggered and is not deterministic.
23
24
+## v1.1.0 (2023-09-21)
25
26
+### Added
27
28
+- Support for anaconda
29
+- New Github Actions pipeline
30
31
## v1.0.60 (2023-09-13)
32
33
### Added
0 commit comments