Skip to content

Commit

Permalink
0.1.6
Browse files Browse the repository at this point in the history
### Bug Fixes
- fixed a bug that the list_items functions with the parameter "with_properties = True" didn´t work correctly
  • Loading branch information
DaSenf1860 committed Aug 20, 2024
1 parent 664ea3a commit 31a3a11
Show file tree
Hide file tree
Showing 4 changed files with 8 additions and 3 deletions.
2 changes: 1 addition & 1 deletion msfabricpysdkcore/coreapi.py
Original file line number Diff line number Diff line change
Expand Up @@ -663,7 +663,7 @@ def list_items(self, workspace_id, with_properties = False, type = None):
error_message="Error listing items", return_format="value_json", paging=True)

if with_properties:
items = self.get_item_object_w_properties(items)
items = self.get_item_object_w_properties(workspace_id=workspace_id, item_list=items)
else:
items = [Item.from_dict(item, core_client=self) for item in items]

Expand Down
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ build-backend = "setuptools.build_meta"

[project]
name = "msfabricpysdkcore"
version = "0.1.5"
version = "0.1.6"
dynamic = ["dependencies"]
authors = [
{ name="Andreas Rederer"},
Expand Down
5 changes: 5 additions & 0 deletions releasenotes/release_notes.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,10 @@
# Release Notes

## 0.1.6

### Bug Fixes
- fixed a bug that the list_items functions with the parameter "with_properties = True" didn´t work correctly

## 0.1.5

- added MSALConfidentialClientApplicationAuthentication
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

setup(
name='msfabricpysdkcore',
version='1.5',
version='1.6',
packages=find_packages(),
install_requires=[
'requests>=2.30.0',
Expand Down

0 comments on commit 31a3a11

Please sign in to comment.