File tree Expand file tree Collapse file tree 6 files changed +21
-14
lines changed Expand file tree Collapse file tree 6 files changed +21
-14
lines changed Original file line number Diff line number Diff line change 11# Semantic Link Labs
22
33[ ![ PyPI version] ( https://badge.fury.io/py/semantic-link-labs.svg )] ( https://badge.fury.io/py/semantic-link-labs )
4- [ ![ Read The Docs] ( https://readthedocs.org/projects/semantic-link-labs/badge/?version=0.12.4 &style=flat )] ( https://readthedocs.org/projects/semantic-link-labs/ )
4+ [ ![ Read The Docs] ( https://readthedocs.org/projects/semantic-link-labs/badge/?version=0.12.5 &style=flat )] ( https://readthedocs.org/projects/semantic-link-labs/ )
55[ ![ Code style: black] ( https://img.shields.io/badge/code%20style-black-000000.svg )] ( https://github.com/psf/black )
66[ ![ Downloads] ( https://static.pepy.tech/badge/semantic-link-labs )] ( https://pepy.tech/project/semantic-link-labs )
77
@@ -129,6 +129,7 @@ An even better way to ensure the semantic-link-labs library is available in your
1291292 . Select your newly created environment within the 'Environment' drop down in the navigation bar at the top of the notebook
130130
131131## Version History
132+ * [ 0.12.5] ( https://github.com/microsoft/semantic-link-labs/releases/tag/0.12.5 ) (October 30, 2025)
132133* [ 0.12.4] ( https://github.com/microsoft/semantic-link-labs/releases/tag/0.12.4 ) (October 16, 2025)
133134* [ 0.12.3] ( https://github.com/microsoft/semantic-link-labs/releases/tag/0.12.3 ) (September 17, 2025)
134135* [ 0.12.2] ( https://github.com/microsoft/semantic-link-labs/releases/tag/0.12.2 ) (September 12, 2025)
Original file line number Diff line number Diff line change 1313project = 'semantic-link-labs'
1414copyright = '2024, Microsoft and community'
1515author = 'Microsoft and community'
16- release = '0.12.4 '
16+ release = '0.12.5 '
1717
1818# -- General configuration ---------------------------------------------------
1919# https://www.sphinx-doc.org/en/master/usage/configuration.html#general-configuration
Original file line number Diff line number Diff line change @@ -7,7 +7,7 @@ name="semantic-link-labs"
77authors = [
88 { name = " Microsoft Corporation" },
99]
10- version =" 0.12.4 "
10+ version =" 0.12.5 "
1111description =" Semantic Link Labs for Microsoft Fabric"
1212readme =" README.md"
1313requires-python =" >=3.10,<3.12"
Original file line number Diff line number Diff line change 11lib_name = "semanticlinklabs"
2- lib_version = "0.12.4 "
2+ lib_version = "0.12.5 "
Original file line number Diff line number Diff line change @@ -338,15 +338,19 @@ def list_workspace_access_details(
338338
339339 rows = []
340340 for v in response .json ().get ("accessDetails" , []):
341- rows .append ({
342- "User Id" : v .get ("principal" , {}).get ("id" ),
343- "User Name" : v .get ("principal" , {}).get ("displayName" ),
344- "User Type" : v .get ("principal" , {}).get ("type" ),
345- "Workspace Name" : workspace_name ,
346- "Workspace Id" : workspace_id ,
347- "Workspace Role" : v .get ("workspaceAccessDetails" , {}).get ("workspaceRole" ),
348- })
349-
341+ rows .append (
342+ {
343+ "User Id" : v .get ("principal" , {}).get ("id" ),
344+ "User Name" : v .get ("principal" , {}).get ("displayName" ),
345+ "User Type" : v .get ("principal" , {}).get ("type" ),
346+ "Workspace Name" : workspace_name ,
347+ "Workspace Id" : workspace_id ,
348+ "Workspace Role" : v .get ("workspaceAccessDetails" , {}).get (
349+ "workspaceRole"
350+ ),
351+ }
352+ )
353+
350354 if rows :
351355 df = pd .DataFrame (rows , columns = list (columns .keys ()))
352356
Original file line number Diff line number Diff line change @@ -259,7 +259,9 @@ def list_group_transitive_members(group: str | UUID) -> pd.DataFrame:
259259 group_id = resolve_group_id (group )
260260
261261 result = _base_api (
262- request = f"groups/{ group_id } /transitiveMembers" , client = "graph" , uses_pagination = True
262+ request = f"groups/{ group_id } /transitiveMembers" ,
263+ client = "graph" ,
264+ uses_pagination = True ,
263265 )
264266
265267 columns = {
You can’t perform that action at this time.
0 commit comments