Skip to content

Commit 51c0af7

Browse files
chore: Release v0.6.11 (#1148)
1 parent 216c98d commit 51c0af7

File tree

21 files changed

+98
-18
lines changed

21 files changed

+98
-18
lines changed

python/composio/__version__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
__version__ = "0.6.10"
1+
__version__ = "0.6.11"

python/composio/client/enums/action.pyi

Lines changed: 69 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5238,6 +5238,75 @@ class Action(Enum[ActionData], metaclass=EnumGenerator):
52385238
MULTIONAI_SCREENSHOT: "Action"
52395239
MULTIONAI_STEP_SESSION: "Action"
52405240
MULTIONAI_WEB_BROWSE: "Action"
5241+
NEON_ACCESS_PROJECT_DETAILS_BY_ID: "Action"
5242+
NEON_ADD_NEW_JWKS_TO_PROJECT_ENDPOINT: "Action"
5243+
NEON_ADD_PROJECT_EMAIL_PERMISSION: "Action"
5244+
NEON_ADD_ROLE_TO_BRANCH: "Action"
5245+
NEON_CREATE_API_KEY_FOR_ORGANIZATION: "Action"
5246+
NEON_CREATE_BRANCH_DATABASE: "Action"
5247+
NEON_CREATE_COMPUTE_ENDPOINT: "Action"
5248+
NEON_CREATE_NEW_API_KEY: "Action"
5249+
NEON_CREATE_NEW_PROJECT_BRANCH: "Action"
5250+
NEON_CREATE_PROJECT_WITH_QUOTA_AND_SETTINGS: "Action"
5251+
NEON_CREATE_VPC_ENDPOINT_LABEL: "Action"
5252+
NEON_CREATE_VPC_ENDPOINT_WITH_LABEL: "Action"
5253+
NEON_DELETE_API_KEY_BY_ID: "Action"
5254+
NEON_DELETE_DATABASE_FROM_BRANCH: "Action"
5255+
NEON_DELETE_ORGANIZATION_API_KEY: "Action"
5256+
NEON_DELETE_ORGANIZATION_MEMBER: "Action"
5257+
NEON_DELETE_PROJECT_BRANCH_BY_ID: "Action"
5258+
NEON_DELETE_PROJECT_BRANCH_ROLE: "Action"
5259+
NEON_DELETE_PROJECT_BY_ID: "Action"
5260+
NEON_DELETE_PROJECT_ENDPOINT: "Action"
5261+
NEON_DELETE_PROJECT_JWKS_BY_ID: "Action"
5262+
NEON_DELETE_PROJECT_PERMISSION: "Action"
5263+
NEON_DELETE_VPC_ENDPOINT_BY_IDS: "Action"
5264+
NEON_DELETE_VPC_ENDPOINT_BY_PROJECT_ID: "Action"
5265+
NEON_FETCH_DATABASE_FOR_BRANCH: "Action"
5266+
NEON_FETCH_ORGANIZATION_MEMBERS_BY_ID: "Action"
5267+
NEON_FETCH_VPCENDPOINT_DETAILS_BY_ID: "Action"
5268+
NEON_GET_BRANCHES_FOR_PROJECT: "Action"
5269+
NEON_GET_BRANCH_ROLES_FOR_PROJECT: "Action"
5270+
NEON_GET_CONSUMPTION_HISTORY_PROJECTS: "Action"
5271+
NEON_GET_CURRENT_USER_INFORMATION: "Action"
5272+
NEON_GET_ORGANIZATION_API_KEYS: "Action"
5273+
NEON_GET_PROJECT_BRANCHES: "Action"
5274+
NEON_GET_PROJECT_BRANCH_ROLE: "Action"
5275+
NEON_GET_PROJECT_CONNECTION_URI: "Action"
5276+
NEON_GET_PROJECT_ENDPOINT_INFORMATION: "Action"
5277+
NEON_GET_PROJECT_OPERATION_BY_ID: "Action"
5278+
NEON_GET_SCHEMA_FOR_PROJECT_BRANCH: "Action"
5279+
NEON_GET_USER_ORGANIZATIONS: "Action"
5280+
NEON_GET_VPC_REGION_ENDPOINTS: "Action"
5281+
NEON_LIST_API_KEYS: "Action"
5282+
NEON_LIST_SHARED_PROJECTS: "Action"
5283+
NEON_MODIFY_BRANCH_DETAILS_IN_PROJECT: "Action"
5284+
NEON_PATCH_BRANCH_DATABASE_INFORMATION: "Action"
5285+
NEON_RESET_ROLE_PASSWORD_FOR_BRANCH: "Action"
5286+
NEON_RESTART_PROJECT_ENDPOINT: "Action"
5287+
NEON_RESTORE_PROJECT_BRANCH: "Action"
5288+
NEON_RETRIEVE_ACCOUNT_CONSUMPTION_HISTORY: "Action"
5289+
NEON_RETRIEVE_ALL_REGIONS: "Action"
5290+
NEON_RETRIEVE_BRANCH_DATABASE_DETAILS: "Action"
5291+
NEON_RETRIEVE_BRANCH_ENDPOINTS: "Action"
5292+
NEON_RETRIEVE_JWKS_FOR_PROJECT: "Action"
5293+
NEON_RETRIEVE_ORGANIZATION_BY_ID: "Action"
5294+
NEON_RETRIEVE_ORGANIZATION_INVITATIONS: "Action"
5295+
NEON_RETRIEVE_ORGANIZATION_MEMBER_INFO: "Action"
5296+
NEON_RETRIEVE_PROJECTS_LIST: "Action"
5297+
NEON_RETRIEVE_PROJECT_ENDPOINT_DETAILS: "Action"
5298+
NEON_RETRIEVE_PROJECT_OPERATIONS: "Action"
5299+
NEON_RETRIEVE_PROJECT_PERMISSIONS: "Action"
5300+
NEON_RETRIEVE_VPC_ENDPOINTS_FOR_PROJECT: "Action"
5301+
NEON_REVEAL_ROLE_PASSWORD_IN_BRANCH: "Action"
5302+
NEON_SEND_ORGANIZATION_INVITATIONS: "Action"
5303+
NEON_SET_BRANCH_AS_DEFAULT: "Action"
5304+
NEON_START_ENDPOINT_FOR_PROJECT: "Action"
5305+
NEON_SUSPEND_PROJECT_ENDPOINT_BY_ID: "Action"
5306+
NEON_TRANSFER_USER_PROJECTS_TO_ORGANIZATION: "Action"
5307+
NEON_UPDATE_ORGANIZATION_MEMBER_ROLE: "Action"
5308+
NEON_UPDATE_PROJECT_COMPUTE_ENDPOINT_SETTINGS: "Action"
5309+
NEON_UPDATE_PROJECT_SETTINGS_BY_ID: "Action"
52415310
NOTION_ADD_PAGE_CONTENT: "Action"
52425311
NOTION_ARCHIVE_NOTION_PAGE: "Action"
52435312
NOTION_CREATE_COMMENT: "Action"

python/composio/client/enums/app.pyi

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -190,6 +190,7 @@ class App(Enum[AppData], metaclass=EnumGenerator):
190190
MULTIONAI: "App"
191191
MURAL: "App"
192192
NCSCALE: "App"
193+
NEON: "App"
193194
NETSUITE: "App"
194195
NGROK: "App"
195196
NOTION: "App"

python/composio/client/enums/tag.pyi

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -695,6 +695,16 @@ class Tag(Enum[TagData], metaclass=EnumGenerator):
695695
MEM0_RUNS: "Tag"
696696
MEM0_STATS: "Tag"
697697
MEM0_USERS: "Tag"
698+
NEON_API_KEY: "Tag"
699+
NEON_BRANCH: "Tag"
700+
NEON_CONSUMPTION: "Tag"
701+
NEON_ENDPOINT: "Tag"
702+
NEON_IMPORTANT: "Tag"
703+
NEON_OPERATION: "Tag"
704+
NEON_ORGANIZATIONS: "Tag"
705+
NEON_PROJECT: "Tag"
706+
NEON_REGION: "Tag"
707+
NEON_USERS: "Tag"
698708
NOTION_IMPORTANT: "Tag"
699709
OUTLOOK_EMAIL: "Tag"
700710
OUTLOOK_IMPORTANT: "Tag"

python/dockerfiles/Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ RUN /bin/python3 -m venv .composio/venv
1919
RUN export PATH=$PATH:$(pwd)/.composio/venv/bin
2020

2121
# Install composio
22-
RUN python -m pip install composio-core[all]==0.6.10 fastapi playwright uvicorn
22+
RUN python -m pip install composio-core[all]==0.6.11 fastapi playwright uvicorn
2323

2424
# Install playwright deps
2525
RUN playwright install-deps

python/plugins/autogen/setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99

1010
setup(
1111
name="composio_autogen",
12-
version="0.6.10",
12+
version="0.6.11",
1313
author="Sawradip",
1414
author_email="sawradip@composio.dev",
1515
description="Use Composio to get an array of tools with your Autogen agent.",

python/plugins/camel/setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99

1010
setup(
1111
name="composio_camel",
12-
version="0.6.10",
12+
version="0.6.11",
1313
author="Sawradip",
1414
author_email="sawradip@composio.dev",
1515
description="Use Composio to get an array of tools with your Claude LLMs.",

python/plugins/claude/setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99

1010
setup(
1111
name="composio_claude",
12-
version="0.6.10",
12+
version="0.6.11",
1313
author="Sawradip",
1414
author_email="sawradip@composio.dev",
1515
description="Use Composio to get an array of tools with your Claude LLMs.",

python/plugins/crew_ai/setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99

1010
setup(
1111
name="composio_crewai",
12-
version="0.6.10",
12+
version="0.6.11",
1313
author="Himanshu",
1414
author_email="himanshu@composio.dev",
1515
description="Use Composio to get an array of tools with your CrewAI agent.",

python/plugins/google/setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99

1010
setup(
1111
name="composio_google",
12-
version="0.6.10",
12+
version="0.6.11",
1313
author="Assistant",
1414
author_email="karan@composio.dev",
1515
description="Use Composio to get an array of tools with your Google AI Python Gemini model.",

python/plugins/griptape/setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99

1010
setup(
1111
name="composio_griptape",
12-
version="0.6.10",
12+
version="0.6.11",
1313
author="Sawradip",
1414
author_email="sawradip@composio.dev",
1515
description="Use Composio to get an array of tools with your Griptape workflow.",

python/plugins/julep/setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99

1010
setup(
1111
name="composio_julep",
12-
version="0.6.10",
12+
version="0.6.11",
1313
author="Sawradip",
1414
author_email="sawradip@composio.dev",
1515
description="Use Composio to get an array of tools with your Julep workflow.",

python/plugins/langchain/setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99

1010
setup(
1111
name="composio_langchain",
12-
version="0.6.10",
12+
version="0.6.11",
1313
author="Karan",
1414
author_email="karan@composio.dev",
1515
description="Use Composio to get an array of tools with your LangChain agent.",

python/plugins/langgraph/setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99

1010
setup(
1111
name="composio_langgraph",
12-
version="0.6.10",
12+
version="0.6.11",
1313
author="Sawradip",
1414
author_email="sawradip@composio.dev",
1515
description="Use Composio to get array of tools with LangGraph Agent Workflows",

python/plugins/llamaindex/setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99

1010
setup(
1111
name="composio_llamaindex",
12-
version="0.6.10",
12+
version="0.6.11",
1313
author="Sawradip",
1414
author_email="sawradip@composio.dev",
1515
description="Use Composio to get an array of tools with your LlamaIndex agent.",

python/plugins/lyzr/setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99

1010
setup(
1111
name="composio_lyzr",
12-
version="0.6.10",
12+
version="0.6.11",
1313
author="Sawradip",
1414
author_email="sawradip@composio.dev",
1515
description="Use Composio to get an array of tools with your Lyzr workflow.",

python/plugins/openai/setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99

1010
setup(
1111
name="composio_openai",
12-
version="0.6.10",
12+
version="0.6.11",
1313
author="Sawradip",
1414
author_email="sawradip@composio.dev",
1515
description="Use Composio to get an array of tools with your OpenAI Function Call.",

python/plugins/phidata/setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99

1010
setup(
1111
name="composio_phidata",
12-
version="0.6.10",
12+
version="0.6.11",
1313
author="Sawradip",
1414
author_email="sawradip@composio.dev",
1515
description="Use Composio to get an array of tools with your Phidata Plugin.",

python/plugins/praisonai/setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99

1010
setup(
1111
name="composio_praisonai",
12-
version="0.6.10",
12+
version="0.6.11",
1313
author="Sawradip",
1414
author_email="sawradip@composio.dev",
1515
description="Use Composio Tools to enhance your PraisonAI agents capabilities.",

python/setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -88,7 +88,7 @@ def scan_for_package_data(
8888

8989
setup(
9090
name="composio_core",
91-
version="0.6.10",
91+
version="0.6.11",
9292
author="Utkarsh",
9393
author_email="utkarsh@composio.dev",
9494
description="Core package to act as a bridge between composio platform and other services.",

python/swe/setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ def scan_for_package_data(
3535

3636
setup(
3737
name="swekit",
38-
version="0.3.11",
38+
version="0.3.12",
3939
author="Shubhra",
4040
author_email="shubhra@composio.dev",
4141
description="Tools for running a SWE agent using Composio platform",

0 commit comments

Comments
 (0)