From 3d289955cb4a67705b0d612e0ee2918d90e99757 Mon Sep 17 00:00:00 2001 From: Jeff Haynie Date: Thu, 25 Sep 2025 14:02:22 -0500 Subject: [PATCH] Changes for waitUntil and low-level streams support --- .changeset/deep-seas-flow.md | 5 ----- .changeset/shaggy-lights-leave.md | 5 ----- .changeset/silly-shoes-nail.md | 7 ------- .changeset/ten-ghosts-wash.md | 5 ----- CHANGELOG.md | 11 +++++++++++ package-lock.json | 4 ++-- package.json | 2 +- 7 files changed, 14 insertions(+), 25 deletions(-) delete mode 100644 .changeset/deep-seas-flow.md delete mode 100644 .changeset/shaggy-lights-leave.md delete mode 100644 .changeset/silly-shoes-nail.md delete mode 100644 .changeset/ten-ghosts-wash.md diff --git a/.changeset/deep-seas-flow.md b/.changeset/deep-seas-flow.md deleted file mode 100644 index 84c37de7..00000000 --- a/.changeset/deep-seas-flow.md +++ /dev/null @@ -1,5 +0,0 @@ ---- -"@agentuity/sdk": patch ---- - -Fixed issue where fetch would error in certain environments with around error around keepalive not being defined diff --git a/.changeset/shaggy-lights-leave.md b/.changeset/shaggy-lights-leave.md deleted file mode 100644 index 7bb31c8f..00000000 --- a/.changeset/shaggy-lights-leave.md +++ /dev/null @@ -1,5 +0,0 @@ ---- -"@agentuity/sdk": patch ---- - -Added ability to create a low-level stream as a first class API diff --git a/.changeset/silly-shoes-nail.md b/.changeset/silly-shoes-nail.md deleted file mode 100644 index ac4df4e1..00000000 --- a/.changeset/silly-shoes-nail.md +++ /dev/null @@ -1,7 +0,0 @@ ---- -"@agentuity/sdk": patch ---- - -Adds the ability to getReader() to return a reader for the Stream -Immediately schedules tasks sent to context.waitUntil instead of waiting until the response is returned -Adds the ability to return a Stream directly from a Agent handler and have it return a 302 with the stream location automatically diff --git a/.changeset/ten-ghosts-wash.md b/.changeset/ten-ghosts-wash.md deleted file mode 100644 index 94c65bb0..00000000 --- a/.changeset/ten-ghosts-wash.md +++ /dev/null @@ -1,5 +0,0 @@ ---- -"@agentuity/sdk": patch ---- - -Add support for context.waitUntil to be able to run background processing without blocking the response diff --git a/CHANGELOG.md b/CHANGELOG.md index 26402eb9..1eab4f0c 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,16 @@ # @agentuity/sdk Changelog +## 0.0.146 + +### Patch Changes + +- a2257f2: Fixed issue where fetch would error in certain environments with around error around keepalive not being defined +- f4e9154: Added ability to create a low-level stream as a first class API +- 60cf45a: Adds the ability to getReader() to return a reader for the Stream + Immediately schedules tasks sent to context.waitUntil instead of waiting until the response is returned + Adds the ability to return a Stream directly from a Agent handler and have it return a 302 with the stream location automatically +- 4611143: Add support for context.waitUntil to be able to run background processing without blocking the response + ## 0.0.145 ### Patch Changes diff --git a/package-lock.json b/package-lock.json index 29765517..bdbd2c60 100644 --- a/package-lock.json +++ b/package-lock.json @@ -1,12 +1,12 @@ { "name": "@agentuity/sdk", - "version": "0.0.145", + "version": "0.0.146", "lockfileVersion": 3, "requires": true, "packages": { "": { "name": "@agentuity/sdk", - "version": "0.0.145", + "version": "0.0.146", "license": "Apache-2.0", "dependencies": { "@opentelemetry/api": "^1.9.0", diff --git a/package.json b/package.json index 4f25baba..5679cbb3 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "@agentuity/sdk", - "version": "0.0.145", + "version": "0.0.146", "description": "The Agentuity SDK for NodeJS and Bun", "license": "Apache-2.0", "public": true,