Skip to content

Commit fa651bd

Browse files
authored
Merge branch 'main' into feat/claude-agent-skill
2 parents 67af92e + 7c4a7b8 commit fa651bd

85 files changed

Lines changed: 9450 additions & 663 deletions

File tree

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

.github/workflows/integration_tests.yml

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -62,6 +62,11 @@ jobs:
6262
BASE_URL: ${{ matrix.environment == 'alpha' && secrets.ALPHA_BASE_URL || matrix.environment == 'staging' && secrets.STAGING_BASE_URL || matrix.environment == 'cloud' && secrets.CLOUD_BASE_URL }}
6363

6464
USE_AZURE_CHAT: ${{ matrix.use_azure_chat }}
65+
66+
# App Insights for telemetry testing
67+
APPLICATIONINSIGHTS_CONNECTION_STRING: ${{ secrets.APPLICATIONINSIGHTS_CONNECTION_STRING }}
68+
APP_INSIGHTS_APP_ID: ${{ secrets.APP_INSIGHTS_APP_ID }}
69+
APP_INSIGHTS_API_KEY: ${{ secrets.APP_INSIGHTS_API_KEY }}
6570
working-directory: testcases/${{ matrix.testcase }}
6671
run: |
6772
# If any errors occur execution will stop with exit code

docs/assets/llms.txt

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -21,6 +21,7 @@ A Python SDK for programmatic interaction with UiPath Cloud Platform services, f
2121
- https://uipath.github.io/uipath-python/core/buckets - Cloud storage buckets
2222
- https://uipath.github.io/uipath-python/core/attachments - File attachments
2323
- https://uipath.github.io/uipath-python/core/actions - Action Center integration
24+
- https://uipath.github.io/uipath-python/core/entities - Data Service integration
2425
- https://uipath.github.io/uipath-python/core/connections - External connections
2526
- https://uipath.github.io/uipath-python/core/documents - Document handling
2627
- https://uipath.github.io/uipath-python/core/documents_models - Document data models

docs/core/entities_service.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
::: uipath.platform.entities._entities_service

mkdocs.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -67,6 +67,7 @@ nav:
6767
- Buckets: core/buckets.md
6868
- Connections: core/connections.md
6969
- Context Grounding: core/context_grounding.md
70+
- Data Service: core/entities_service.md
7071
- Documents: core/documents.md
7172
- Jobs: core/jobs.md
7273
- Guardrails: core/guardrails.md

pyproject.toml

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,12 @@
11
[project]
22
name = "uipath"
3-
version = "2.3.0"
3+
version = "2.4.10"
44
description = "Python SDK and CLI for UiPath Platform, enabling programmatic interaction with automation services, process management, and deployment tools."
55
readme = { file = "README.md", content-type = "text/markdown" }
66
requires-python = ">=3.11"
77
dependencies = [
88
"uipath-core>=0.1.4, <0.2.0",
9-
"uipath-runtime>=0.3.1, <0.4.0",
9+
"uipath-runtime>=0.4.0, <0.5.0",
1010
"click>=8.3.1",
1111
"httpx>=0.28.1",
1212
"pyjwt>=2.10.1",
@@ -21,6 +21,7 @@ dependencies = [
2121
"python-socketio>=5.15.0, <6.0.0",
2222
"coverage>=7.8.2",
2323
"mermaid-builder==0.0.3",
24+
"applicationinsights>=0.11.10",
2425
]
2526
classifiers = [
2627
"Intended Audience :: Developers",

samples/asset-modifier-agent/pyproject.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,11 +4,11 @@ version = "0.0.1"
44
description = "UiPath agent to validate asset values via External Application integration with Orchestrator."
55
authors = [{ name = "John Doe", email = "john.doe@myemail.com" }]
66
dependencies = [
7-
"uipath>=2.3.0, <2.4.0",
7+
"uipath>=2.4.0, <2.5.0",
88
]
99
requires-python = ">=3.11"
1010

1111
[dependency-groups]
1212
dev = [
13-
"uipath-dev>=0.0.14",
13+
"uipath-dev>=0.0.15",
1414
]

samples/asset-modifier-agent/uv.lock

Lines changed: 14 additions & 14 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

samples/calculator/pyproject.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,11 +4,11 @@ version = "0.0.1"
44
description = "calculator-agent"
55
authors = [{ name = "John Doe", email = "john.doe@myemail.com" }]
66
dependencies = [
7-
"uipath>=2.3.0, <2.4.0",
7+
"uipath>=2.4.0, <2.5.0",
88
]
99
requires-python = ">=3.11"
1010

1111
[dependency-groups]
1212
dev = [
13-
"uipath-dev>=0.0.14",
13+
"uipath-dev>=0.0.15",
1414
]

samples/calculator/uv.lock

Lines changed: 14 additions & 14 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

samples/csv-processor/pyproject.toml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -4,12 +4,12 @@ version = "0.0.1"
44
description = "csv-processor"
55
authors = [{ name = "John Doe", email = "john.doe@myemail.com" }]
66
dependencies = [
7-
"uipath>=2.3.0,<2.4.0",
8-
"pandas>=2.3.3",
7+
"uipath>=2.4.0, <2.5.0",
8+
"pandas>=2.3.3",
99
]
1010
requires-python = ">=3.11"
1111

1212
[dependency-groups]
1313
dev = [
14-
"uipath-dev>=0.0.14",
14+
"uipath-dev>=0.0.15",
1515
]

0 commit comments

Comments
 (0)