From 72ce2980e836a51cebbf1b943a7302c9669ec923 Mon Sep 17 00:00:00 2001 From: Pouyanpi <13303554+Pouyanpi@users.noreply.github.com> Date: Mon, 1 Dec 2025 15:54:26 +0100 Subject: [PATCH 1/2] docs: add release notes for v0.19.0 --- docs/release-notes.md | 20 ++++++++++++++++++++ 1 file changed, 20 insertions(+) diff --git a/docs/release-notes.md b/docs/release-notes.md index 78b7b9243..b1c3e4f72 100644 --- a/docs/release-notes.md +++ b/docs/release-notes.md @@ -14,6 +14,26 @@ For a complete record of changes in a release, refer to the --- +(v0-19-0)= + +## 0.19.0 + +(v0-19-0-features)= + +### Key Features + +- Added support for LangChain 1.x. + NeMo Guardrails now supports LangChain version 1.x, including the new content blocks API for reasoning traces and tool calls. + +(v0-19-0-fixed-issues)= + +### Fixed Issues + +- Fixed TypeError in Colang 2.x chat due to incorrect State/dict conversion. +- Fixed async streaming support for ChatNVIDIA provider patch. + +--- + (v0-18-0)= ## 0.18.0 From b065dd92e2873a841725261432c5af24994413a8 Mon Sep 17 00:00:00 2001 From: Miyoung Choi Date: Tue, 2 Dec 2025 00:39:44 -0800 Subject: [PATCH 2/2] edit release notes & prep (#1527) --- docs/project.json | 2 +- docs/release-notes.md | 7 +++---- docs/versions1.json | 4 ++++ 3 files changed, 8 insertions(+), 5 deletions(-) diff --git a/docs/project.json b/docs/project.json index cd787d826..d6be7233e 100644 --- a/docs/project.json +++ b/docs/project.json @@ -1 +1 @@ -{ "name": "nemo-guardrails-toolkit", "version": "0.18.0" } +{ "name": "nemo-guardrails-toolkit", "version": "0.19.0" } diff --git a/docs/release-notes.md b/docs/release-notes.md index b1c3e4f72..d9f84eb08 100644 --- a/docs/release-notes.md +++ b/docs/release-notes.md @@ -22,15 +22,14 @@ For a complete record of changes in a release, refer to the ### Key Features -- Added support for LangChain 1.x. - NeMo Guardrails now supports LangChain version 1.x, including the new content blocks API for reasoning traces and tool calls. +- Added support for LangChain 1.x, including the content blocks API for reasoning traces and tool calls. (v0-19-0-fixed-issues)= ### Fixed Issues -- Fixed TypeError in Colang 2.x chat due to incorrect State/dict conversion. -- Fixed async streaming support for ChatNVIDIA provider patch. +- Fixed TypeError in Colang 2.x chat caused by incorrect type conversion between `State` and `dict`. +- Fixed async streaming support for the ChatNVIDIA provider patch by adding a new `async_stream_decorator`. --- diff --git a/docs/versions1.json b/docs/versions1.json index dcf9d7585..28f6f0dfe 100644 --- a/docs/versions1.json +++ b/docs/versions1.json @@ -1,6 +1,10 @@ [ { "preferred": true, + "version": "0.19.0", + "url": "../0.19.0/" + }, + { "version": "0.18.0", "url": "../0.18.0/" },