- PR #56
- Added 'return_card' argument to the
copy_card
function.
- PR #54 (fixes a typo in the
clone_card
function)
- New versioning format (3.4 instead of 0.3.4)
- Added
format_rows
option toget_card_data
function
- Authentication using API key
- Refactored for API changes introduced in Metabase v48 (
ordered_cards
->dashcards
)
- Fixed a typo in create_card function (PR #47)
- Option for local unittest is added. Also GitHub Actions Workflow is modified to use local testing.
- Fixed the issue #37 (Make wrapper more maintenance-proof with non-breaking refactor)
- Fixed the issue #41 (KeyError: 'sizeX')
- Fixed the issue #33 (Missing step in the clone_card function)
- Fixed the issue #31 (Unable to use get_columns_name_id as a non-superuser)
- "Allow passing filter values to
get_card_data
function" (#25). - "Add
add_card_to_dashboard
custom function" (PR #26). get_item_info
function
- "Copy collection to root collection does not work" (#23).
- Expanded the
get_item_id
andget_item_name
functions to cover all item types (#28). clone_card
function now also works for simple/custom questions (#27).clone_card
function now replaces table name in the query text for native questions.
create_collection
function
- Fixed the issues #20 and #22.
- 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.
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. - Improved the function
make_json
.
clone_card
function
- Fixed the issues #12.
- Updated the
search
andget_db_id
functions to reflect the changes in v.40 of Metabase. - Updated the docstring of the
update_column
function to reflect the changes in v.39 of Metabase.
search
function (Endpoint:GET /api/search/
)get_card_data
function for getting data of the questions (Endpoint:POST /api/card/:card-id/query/:export-format
)
- Basic Auth (PR)