Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 7 additions & 0 deletions docs/changelog.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,12 @@
## Unreleased

## New in 2.18.0 (2025-12-16)

- Added support for document-intelligence `v2.1` for agent spec
- Update `Agent CLI` to `2.2.3`
Copy link

Copilot AI Dec 16, 2025

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

The changelog entry uses backticks around "Agent CLI" inconsistently with other entries. Consider removing the backticks for consistency, as "Agent CLI" is a proper noun/product name rather than code that requires backtick formatting.

Copilot uses AI. Check for mistakes.

## New in 2.17.0 (2025-12-05)
Comment on lines +3 to +8
Copy link

Copilot AI Dec 16, 2025

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

The release date shows "2025-12-16" but this appears to be a typo. Based on the previous release being dated "2025-12-05", both years should likely be "2024" instead of "2025". Please verify and correct the year in both release dates.

Suggested change
## New in 2.18.0 (2025-12-16)
- Added support for document-intelligence `v2.1` for agent spec
- Update `Agent CLI` to `2.2.3`
## New in 2.17.0 (2025-12-05)
## New in 2.18.0 (2024-12-16)
- Added support for document-intelligence `v2.1` for agent spec
- Update `Agent CLI` to `2.2.3`
## New in 2.17.0 (2024-12-05)

Copilot uses AI. Check for mistakes.
Copy link

Copilot AI Dec 16, 2025

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

The release date shows "2025-12-05" but this appears to be a typo. The year should likely be "2024" instead of "2025" to be consistent with typical release dating patterns.

Copilot uses AI. Check for mistakes.

- Action Server 2.17.0

## New in 2.16.0 (2025-11-12)
Expand Down
2 changes: 1 addition & 1 deletion sema4ai/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@
"url": "https://github.com/Sema4AI/vscode-extension/.git"
},
"license": "SEE LICENSE",
"version": "2.17.0",
"version": "2.18.0",
"icon": "images/icon.png",
"engines": {
"vscode": "^1.65.0"
Expand Down
2 changes: 1 addition & 1 deletion sema4ai/pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[tool.poetry]
name = "sema4ai-vscode-extension"
version = "2.17.0"
version = "2.18.0"
description = "Sema4.ai: Visual Studio Code Extension for AI Actions and Robot Tasks development"
authors = ["Fabio Zadrozny <fabio@robocorp.com>"]
readme = "README.md"
Expand Down
2 changes: 1 addition & 1 deletion sema4ai/src/sema4ai_code/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
import sys
from typing import List

__version__ = "2.17.0"
__version__ = "2.18.0"
version_info: list[int] = [int(x) for x in __version__.split(".")]

__file__ = os.path.abspath(__file__)
Expand Down