uipath 2.0.55__py3-none-any.whl → 2.0.56__py3-none-any.whl
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 uipath might be problematic. Click here for more details.
- uipath/_cli/_runtime/_logging.py +1 -1
- uipath/_utils/_url.py +18 -1
- {uipath-2.0.55.dist-info → uipath-2.0.56.dist-info}/METADATA +1 -1
- {uipath-2.0.55.dist-info → uipath-2.0.56.dist-info}/RECORD +7 -7
- {uipath-2.0.55.dist-info → uipath-2.0.56.dist-info}/WHEEL +0 -0
- {uipath-2.0.55.dist-info → uipath-2.0.56.dist-info}/entry_points.txt +0 -0
- {uipath-2.0.55.dist-info → uipath-2.0.56.dist-info}/licenses/LICENSE +0 -0
uipath/_cli/_runtime/_logging.py
CHANGED
|
@@ -68,7 +68,7 @@ class LogsInterceptor:
|
|
|
68
68
|
else:
|
|
69
69
|
# Use stdout handler when not running as a job
|
|
70
70
|
self.log_handler = logging.StreamHandler(sys.stdout)
|
|
71
|
-
formatter = logging.Formatter("
|
|
71
|
+
formatter = logging.Formatter("%(message)s")
|
|
72
72
|
self.log_handler.setFormatter(formatter)
|
|
73
73
|
|
|
74
74
|
self.log_handler.setLevel(self.numeric_min_level)
|
uipath/_utils/_url.py
CHANGED
|
@@ -80,6 +80,23 @@ class UiPathUrl:
|
|
|
80
80
|
return org_name, tenant_name
|
|
81
81
|
|
|
82
82
|
def _is_relative_url(self, url: str) -> bool:
|
|
83
|
+
# Empty URLs are considered relative
|
|
84
|
+
if not url:
|
|
85
|
+
return True
|
|
86
|
+
|
|
83
87
|
parsed = urlparse(url)
|
|
84
88
|
|
|
85
|
-
|
|
89
|
+
# Protocol-relative URLs (starting with //) are not relative
|
|
90
|
+
if url.startswith("//"):
|
|
91
|
+
return False
|
|
92
|
+
|
|
93
|
+
# URLs with schemes are not relative (http:, https:, mailto:, etc.)
|
|
94
|
+
if parsed.scheme:
|
|
95
|
+
return False
|
|
96
|
+
|
|
97
|
+
# URLs with network locations are not relative
|
|
98
|
+
if parsed.netloc:
|
|
99
|
+
return False
|
|
100
|
+
|
|
101
|
+
# If we've passed all the checks, it's a relative URL
|
|
102
|
+
return True
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: uipath
|
|
3
|
-
Version: 2.0.
|
|
3
|
+
Version: 2.0.56
|
|
4
4
|
Summary: Python SDK and CLI for UiPath Platform, enabling programmatic interaction with automation services, process management, and deployment tools.
|
|
5
5
|
Project-URL: Homepage, https://uipath.com
|
|
6
6
|
Project-URL: Repository, https://github.com/UiPath/uipath-python
|
|
@@ -26,7 +26,7 @@ uipath/_cli/_auth/index.html,sha256=ML_xDOcKs0ETYucufJskiYfWSvdrD_E26C0Qd3qpGj8,
|
|
|
26
26
|
uipath/_cli/_auth/localhost.crt,sha256=oGl9oLLOiouHubAt39B4zEfylFvKEtbtr_43SIliXJc,1226
|
|
27
27
|
uipath/_cli/_auth/localhost.key,sha256=X31VYXD8scZtmGA837dGX5l6G-LXHLo5ItWJhZXaz3c,1679
|
|
28
28
|
uipath/_cli/_runtime/_contracts.py,sha256=Rxs-uEOA490fLPNimB8LqZW7KI-72O0BLY4Jm7Fa1ms,14316
|
|
29
|
-
uipath/_cli/_runtime/_logging.py,sha256=
|
|
29
|
+
uipath/_cli/_runtime/_logging.py,sha256=lA2LsakOrcSLnJWgo80-BYzIQBUWfqzzJGI1M61Gu0s,7874
|
|
30
30
|
uipath/_cli/_runtime/_runtime.py,sha256=K8lQjeUE-qXNshmt0UE2SNdbH-MA9goOSqsReJ-_NF4,9681
|
|
31
31
|
uipath/_cli/_templates/.psmdcp.template,sha256=C7pBJPt98ovEljcBvGtEUGoWjjQhu9jls1bpYjeLOKA,611
|
|
32
32
|
uipath/_cli/_templates/.rels.template,sha256=-fTcw7OA1AcymHr0LzBqbMAAtzZTRXLTNa_ljq087Jk,406
|
|
@@ -60,7 +60,7 @@ uipath/_utils/_logs.py,sha256=adfX_0UAn3YBeKJ8DQDeZs94rJyHGQO00uDfkaTpNWQ,510
|
|
|
60
60
|
uipath/_utils/_read_overwrites.py,sha256=dODvjNnDjcYOxVKnt0KqqqXmysULLBObKaEF8gJteg4,5149
|
|
61
61
|
uipath/_utils/_request_override.py,sha256=fIVHzgHVXITUlWcp8osNBwIafM1qm4_ejx0ng5UzfJ4,573
|
|
62
62
|
uipath/_utils/_request_spec.py,sha256=iCtBLqtbWUpFG5g1wtIZBzSupKsfaRLiQFoFc_4B70Q,747
|
|
63
|
-
uipath/_utils/_url.py,sha256
|
|
63
|
+
uipath/_utils/_url.py,sha256=-4eluSrIZCUlnQ3qU17WPJkgaC2KwF9W5NeqGnTNGGo,2512
|
|
64
64
|
uipath/_utils/_user_agent.py,sha256=pVJkFYacGwaQBomfwWVAvBQgdBUo62e4n3-fLIajWUU,563
|
|
65
65
|
uipath/_utils/constants.py,sha256=CKv-kTC8Fzu6E_KY9jD_fSt0Gbycn9sZg4O_3pzq2fo,873
|
|
66
66
|
uipath/models/__init__.py,sha256=Kwqv1LzWNfSxJLMQrInVen3KDJ1z0eCcr6szQa0G0VE,1251
|
|
@@ -86,8 +86,8 @@ uipath/tracing/__init__.py,sha256=GimSzv6qkCOlHOG1WtjYKJsZqcXpA28IgoXfR33JhiA,13
|
|
|
86
86
|
uipath/tracing/_otel_exporters.py,sha256=x0PDPmDKJcxashsuehVsSsqBCzRr6WsNFaq_3_HS5F0,3014
|
|
87
87
|
uipath/tracing/_traced.py,sha256=GFxOp73jk0vGTN_H7YZOOsEl9rVLaEhXGztMiYKIA-8,16634
|
|
88
88
|
uipath/tracing/_utils.py,sha256=5SwsTGpHkIouXBndw-u8eCLnN4p7LM8DsTCCuf2jJgs,10165
|
|
89
|
-
uipath-2.0.
|
|
90
|
-
uipath-2.0.
|
|
91
|
-
uipath-2.0.
|
|
92
|
-
uipath-2.0.
|
|
93
|
-
uipath-2.0.
|
|
89
|
+
uipath-2.0.56.dist-info/METADATA,sha256=-6oLullDWbwXLA9RDKohTdX3H6qupXwdkyl8hK6940o,6304
|
|
90
|
+
uipath-2.0.56.dist-info/WHEEL,sha256=qtCwoSJWgHk21S1Kb4ihdzI2rlJ1ZKaIurTj_ngOhyQ,87
|
|
91
|
+
uipath-2.0.56.dist-info/entry_points.txt,sha256=9C2_29U6Oq1ExFu7usihR-dnfIVNSKc-0EFbh0rskB4,43
|
|
92
|
+
uipath-2.0.56.dist-info/licenses/LICENSE,sha256=-KBavWXepyDjimmzH5fVAsi-6jNVpIKFc2kZs0Ri4ng,1058
|
|
93
|
+
uipath-2.0.56.dist-info/RECORD,,
|
|
File without changes
|
|
File without changes
|
|
File without changes
|