From bdb7163313314f8cc29c81649165b50379c6a4ec Mon Sep 17 00:00:00 2001 From: Eric Gustin <34000337+EricGustin@users.noreply.github.com> Date: Fri, 5 Dec 2025 14:57:10 -0800 Subject: [PATCH] Update ALL libs and their deps to most recent version of other libs (#716) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit > [!NOTE] > Bumps versions across core libs and MCP packages, updates dependency constraints accordingly, and refreshes CLI template defaults to the new minimums. > > - **Versions**: > - `arcade-core` → `3.4.0` > - `arcade-serve` → `3.1.5` > - `arcade-tdk` → `3.2.2` > - `arcade-mcp-server` → `1.11.1` > - Root `arcade-mcp` → `1.5.8` > - **Dependency constraints**: > - Raise minimums to `arcade-core>=3.4.0`, `arcade-serve>=3.1.5`, `arcade-tdk>=3.2.2`, `arcade-mcp-server>=1.11.1` across affected `pyproject.toml` files. > - **CLI** (`libs/arcade-cli/arcade_cli/new.py`): > - Update template minimums for `arcade-mcp` (`1.5.8`), `arcade-tdk` (`3.2.2`), `arcade-serve` (`3.1.5`), and `arcade-mcp-server` (`1.11.1`). > > Written by [Cursor Bugbot](https://cursor.com/dashboard?tab=bugbot) for commit b1b43e4d04810b0b49d4de6c943c23e69c99aad4. This will update automatically on new commits. Configure [here](https://cursor.com/dashboard?tab=bugbot). --- libs/arcade-cli/arcade_cli/new.py | 8 ++++---- libs/arcade-core/pyproject.toml | 2 +- libs/arcade-mcp-server/pyproject.toml | 8 ++++---- libs/arcade-serve/pyproject.toml | 4 ++-- libs/arcade-tdk/pyproject.toml | 4 ++-- pyproject.toml | 12 ++++++------ 6 files changed, 19 insertions(+), 19 deletions(-) diff --git a/libs/arcade-cli/arcade_cli/new.py b/libs/arcade-cli/arcade_cli/new.py index dd5c7951..fba90f87 100644 --- a/libs/arcade-cli/arcade_cli/new.py +++ b/libs/arcade-cli/arcade_cli/new.py @@ -19,14 +19,14 @@ try: ARCADE_MCP_MAX_VERSION = str(int(ARCADE_MCP_MIN_VERSION.split(".")[0]) + 1) + ".0.0" except Exception as e: console.print(f"[red]Failed to get arcade-mcp version: {e}[/red]") - ARCADE_MCP_MIN_VERSION = "1.5.1" # Default version if unable to fetch + ARCADE_MCP_MIN_VERSION = "1.5.8" # Default version if unable to fetch ARCADE_MCP_MAX_VERSION = "2.0.0" -ARCADE_TDK_MIN_VERSION = "3.0.0" +ARCADE_TDK_MIN_VERSION = "3.2.2" ARCADE_TDK_MAX_VERSION = "4.0.0" -ARCADE_SERVE_MIN_VERSION = "3.0.0" +ARCADE_SERVE_MIN_VERSION = "3.1.5" ARCADE_SERVE_MAX_VERSION = "4.0.0" -ARCADE_MCP_SERVER_MIN_VERSION = "1.7.2" +ARCADE_MCP_SERVER_MIN_VERSION = "1.11.1" ARCADE_MCP_SERVER_MAX_VERSION = "2.0.0" diff --git a/libs/arcade-core/pyproject.toml b/libs/arcade-core/pyproject.toml index 229d69aa..7f5b8293 100644 --- a/libs/arcade-core/pyproject.toml +++ b/libs/arcade-core/pyproject.toml @@ -1,6 +1,6 @@ [project] name = "arcade-core" -version = "3.3.5" +version = "3.4.0" description = "Arcade Core - Core library for Arcade platform" readme = "README.md" license = {text = "MIT"} diff --git a/libs/arcade-mcp-server/pyproject.toml b/libs/arcade-mcp-server/pyproject.toml index 9917b4a4..a9267ed4 100644 --- a/libs/arcade-mcp-server/pyproject.toml +++ b/libs/arcade-mcp-server/pyproject.toml @@ -4,7 +4,7 @@ build-backend = "hatchling.build" [project] name = "arcade-mcp-server" -version = "1.11.0" +version = "1.11.1" description = "Model Context Protocol (MCP) server framework for Arcade.dev" readme = "README.md" authors = [{ name = "Arcade.dev" }] @@ -21,9 +21,9 @@ classifiers = [ ] requires-python = ">=3.10" dependencies = [ - "arcade-core>=3.3.5,<4.0.0", - "arcade-serve>=3.0.0,<4.0.0", - "arcade-tdk>=3.2.0,<4.0.0", + "arcade-core>=3.4.0,<4.0.0", + "arcade-serve>=3.1.5,<4.0.0", + "arcade-tdk>=3.2.2,<4.0.0", "arcadepy>=1.5.0", "pydantic>=2.0.0", "fastapi>=0.100.0", diff --git a/libs/arcade-serve/pyproject.toml b/libs/arcade-serve/pyproject.toml index 9fed39bb..41fffb88 100644 --- a/libs/arcade-serve/pyproject.toml +++ b/libs/arcade-serve/pyproject.toml @@ -1,6 +1,6 @@ [project] name = "arcade-serve" -version = "3.1.4" +version = "3.1.5" description = "Arcade Serve - Serving infrastructure for Arcade tools and workers" readme = "README.md" license = {text = "MIT"} @@ -19,7 +19,7 @@ classifiers = [ ] requires-python = ">=3.10" dependencies = [ - "arcade-core>=3.0.0,<4.0.0", + "arcade-core>=3.4.0,<4.0.0", "fastapi>=0.115.3", "uvicorn>=0.30.0", "watchfiles>=1.0.5", diff --git a/libs/arcade-tdk/pyproject.toml b/libs/arcade-tdk/pyproject.toml index 9ba2791d..f85730b3 100644 --- a/libs/arcade-tdk/pyproject.toml +++ b/libs/arcade-tdk/pyproject.toml @@ -1,6 +1,6 @@ [project] name = "arcade-tdk" -version = "3.2.1" +version = "3.2.2" description = "Arcade TDK - Toolkit Development Kit for building Arcade tools" readme = "README.md" license = {text = "MIT"} @@ -19,7 +19,7 @@ classifiers = [ ] requires-python = ">=3.10" dependencies = [ - "arcade-core>=3.3.5,<4.0.0", + "arcade-core>=3.4.0,<4.0.0", "pydantic>=2.7.0", ] diff --git a/pyproject.toml b/pyproject.toml index 21bc857c..cfa1c4ab 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [project] name = "arcade-mcp" -version = "1.5.7" +version = "1.5.8" description = "Arcade.dev - Tool Calling platform for Agents" readme = "README.md" license = {file = "LICENSE"} @@ -21,8 +21,8 @@ requires-python = ">=3.10" dependencies = [ # CLI dependencies - "arcade-mcp-server>=1.7.2,<2.0.0", - "arcade-core>=3.3.5,<4.0.0", + "arcade-mcp-server>=1.11.1,<2.0.0", + "arcade-core>=3.4.0,<4.0.0", "typer==0.10.0", "rich==13.9.4", "Jinja2==3.1.6", @@ -42,11 +42,11 @@ all = [ "pytz>=2024.1", "python-dateutil>=2.8.2", # mcp - "arcade-mcp-server>=1.7.2,<2.0.0", + "arcade-mcp-server>=1.11.1,<2.0.0", # serve - "arcade-serve>=3.0.0,<4.0.0", + "arcade-serve>=3.1.5,<4.0.0", # tdk - "arcade-tdk>=3.2.0,<4.0.0", + "arcade-tdk>=3.2.2,<4.0.0", ] # Evals also depends on arcade-core and openai, but they are already required deps evals = [