mcp-sharepoint-us 2.0.10__tar.gz → 2.0.11__tar.gz

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.

Potentially problematic release.


This version of mcp-sharepoint-us might be problematic. Click here for more details.

@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: mcp-sharepoint-us
3
- Version: 2.0.10
3
+ Version: 2.0.11
4
4
  Summary: SharePoint MCP Server with Modern Azure AD Authentication
5
5
  License: MIT
6
6
  Project-URL: Homepage, https://github.com/mdev26/mcp-sharepoint-us
@@ -4,7 +4,7 @@ build-backend = "setuptools.build_meta"
4
4
 
5
5
  [project]
6
6
  name = "mcp-sharepoint-us"
7
- version = "2.0.10"
7
+ version = "2.0.11"
8
8
  description = "SharePoint MCP Server with Modern Azure AD Authentication"
9
9
  readme = "README.md"
10
10
  requires-python = ">=3.10"
@@ -30,8 +30,9 @@ def _patch_datetime_bug():
30
30
  # Store the original __init__
31
31
  original_init = authentication_context.AuthenticationContext.__init__
32
32
 
33
- def patched_init(self, url):
34
- original_init(self, url)
33
+ def patched_init(self, *args, **kwargs):
34
+ # Call original init with all arguments
35
+ original_init(self, *args, **kwargs)
35
36
  # Make token_expires timezone-aware to prevent comparison errors
36
37
  if hasattr(self, '_token_expires') and self._token_expires is not None:
37
38
  if self._token_expires.tzinfo is None:
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: mcp-sharepoint-us
3
- Version: 2.0.10
3
+ Version: 2.0.11
4
4
  Summary: SharePoint MCP Server with Modern Azure AD Authentication
5
5
  License: MIT
6
6
  Project-URL: Homepage, https://github.com/mdev26/mcp-sharepoint-us