We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent a928f66 commit 060ff73Copy full SHA for 060ff73
action_server/docs/CHANGELOG.md
@@ -2,6 +2,8 @@
2
3
## Unreleased
4
5
+## 2.15.0 - 2025-10-02
6
+
7
- The `api/runs/{runid}/log.html` endpoint will now generate a `log.html` with partial contents if the run still hasn't finished.
8
9
## 2.14.3 - 2025-09-09
action_server/pyproject.toml
@@ -1,6 +1,6 @@
1
[tool.poetry]
name = "sema4ai-action-server"
-version = "2.14.3"
+version = "2.15.0"
description = """Sema4AI Action Server"""
authors = ["Fabio Z. <fabio@robocorp.com>"]
readme = "README.md"
action_server/src/sema4ai/action_server/__init__.py
from typing import List
-__version__ = "2.14.3"
+__version__ = "2.15.0"
version_info = [int(x) for x in __version__.split(".")]
__all__: List[str] = []
0 commit comments