You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: CHANGELOG.md
+15-2Lines changed: 15 additions & 2 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -1,18 +1,31 @@
1
1
## Unreleased
2
+
3
+
## 0.2.13
4
+
### Added
5
+
-`create_collection` function
6
+
### Changed
7
+
- Fixed the issues #20 and #22.
8
+
- Changed the behavior of the `copy_collection` function. Previously it would copy only the content of the source collection, but now copies the contents together with source collection itself.
9
+
In other words, now a new collection with the same name as the source collection is created in the destination and the content of the source collection is copied into it.
10
+
- Improved the function `make_json`.
11
+
2
12
## 0.2.12
3
13
### Added
4
14
-`clone_card` function
5
15
### Changed
6
-
- Fixed the issues #12, #20
7
-
- Updated the `search` and `get_db_id` functions to reflect the changes in v.40 of Metabase
16
+
- Fixed the issues #12.
17
+
- Updated the `search` and `get_db_id` functions to reflect the changes in v.40 of Metabase.
8
18
- Updated the docstring of the `update_column` function to reflect the changes in v.39 of Metabase.
19
+
9
20
## 0.2.11 (2021-05-03)
10
21
### Added
11
22
-`search` function (Endpoint: [`GET /api/search/`](https://www.metabase.com/docs/latest/api-documentation.html#get-apisearch))
12
23
-`get_card_data` function for getting data of the questions (Endpoint: [`POST /api/card/:card-id/query/:export-format`](https://www.metabase.com/docs/latest/api-documentation.html#post-apicardcard-idqueryexport-format))
source_collection_name -- name of the collection to copy (default None)
720
745
source_collection_id -- id of the collection to copy (default None)
721
-
destination_collection_name -- the name to use for the collection in the destination (default None).
746
+
destination_collection_name -- the name to be used for the collection in the destination (default None).
722
747
If None, it will use the name of the source collection + postfix.
723
-
destination_parent_collection_name -- name of the destination parent collection (default None)
724
-
destination_parent_collection_id -- id of the destination parent collection (default None)
725
-
postfix -- if destination_collection_name is None, adds this string to the end of source_collection_name
726
-
to make destination_collection_name.
727
-
child_items_postfix -- this string is added to the end of the child items names,
728
-
when saving them in the destination (default '').
729
-
deepcopy_dashboards -- whether to duplicate the cards inside dashboards (default False).
730
-
savinge, putin the duplicated cards in a collection called
748
+
destination_parent_collection_name -- name of the destination parent collection (default None). This is the collection that would have the copied collection as a child.
749
+
destination_parent_collection_id -- id of the destination parent collection (default None). This is the collection that would have the copied collection as a child.
750
+
deepcopy_dashboards -- whether to duplicate the cards inside the dashboards (default False). If True, puts the duplicated cards in a collection called
731
751
"[dashboard_name]'s duplicated cards" in the same path as the duplicated dashboard.
752
+
postfix -- if destination_collection_name is None, adds this string to the end of source_collection_name to make destination_collection_name.
753
+
child_items_postfix -- this string is added to the end of the child items' names, when saving them in the destination (default '').
732
754
verbose -- prints extra information (default False)
0 commit comments