From 48f6856d6bd5de27521a6790d446073681312442 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" Date: Fri, 6 Mar 2026 01:42:33 +0000 Subject: [PATCH] Release v0.3.0 --- CHANGELOG.md | 26 ++++++++++++++++--- .../durabletask-js-azuremanaged/package.json | 4 +-- packages/durabletask-js/package.json | 2 +- 3 files changed, 26 insertions(+), 6 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 68aa426..a725396 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,12 +2,32 @@ ### New -- Align tracing attributes with .NET SDK conventions: add `execution_id` on creation spans, `version` on activity execution spans, `name`/`instance_id` on timer spans, and `durabletask.task.status` on orchestration completion ([#126](https://github.com/microsoft/durabletask-js/pull/126)) -- Add retroactive span emission model: emit Client spans at activity/sub-orchestration completion with historical scheduling timestamps, and timer spans with creation-to-fired duration (matching .NET/Java SDK patterns) ([#126](https://github.com/microsoft/durabletask-js/pull/126)) - ### Fixes +## v0.3.0 (2026-03-06) + +### Changes + +- Fix falsy values (0, empty string, false, null) silently dropped during serialization ([#138](https://github.com/microsoft/durabletask-js/pull/138)) +- Fix PR verification agent: grant contents:write to push verification branches ([#141](https://github.com/microsoft/durabletask-js/pull/141)) +- Enforce Azure Managed e2e tests in daily-code-review agent ([#139](https://github.com/microsoft/durabletask-js/pull/139)) +- Add sample code branch push step to PR verification agent ([#137](https://github.com/microsoft/durabletask-js/pull/137)) +- Fix continueAsNew dropping fire-and-forget actions (sendEvent, signalEntity) ([#136](https://github.com/microsoft/durabletask-js/pull/136)) +- fix: clear orchestrationQueueSet in InMemoryOrchestrationBackend.reset() ([#133](https://github.com/microsoft/durabletask-js/pull/133)) +- PR Verification Agent + github action ([#132](https://github.com/microsoft/durabletask-js/pull/132)) +- fix: update daily code review agent to require tracking issues before PRs ([#130](https://github.com/microsoft/durabletask-js/pull/130)) +- Fix WhenAllTask crash when children complete after fail-fast ([#123](https://github.com/microsoft/durabletask-js/pull/123)) +- Optimize daily code review agent with focused detection playbook ([#128](https://github.com/microsoft/durabletask-js/pull/128)) +- feat: align tracing attributes with .NET SDK conventions ([#126](https://github.com/microsoft/durabletask-js/pull/126)) +- fix: set instanceId on ActivityResponse in failure path ([#122](https://github.com/microsoft/durabletask-js/pull/122)) +- Update code review agent instructions ([#119](https://github.com/microsoft/durabletask-js/pull/119)) +- [copilot-finds] Bug: Fix whenAll([]) hanging orchestration forever ([#118](https://github.com/microsoft/durabletask-js/pull/118)) +- Daily Code Review Agent ([#117](https://github.com/microsoft/durabletask-js/pull/117)) +- refactor: streamline orchestration event handling and improve state management ([#115](https://github.com/microsoft/durabletask-js/pull/115)) +- Bump tar in the npm_and_yarn group across 1 directory ([#113](https://github.com/microsoft/durabletask-js/pull/113)) +- Release v0.2.0 ([#112](https://github.com/microsoft/durabletask-js/pull/112)) + ## v0.2.0 (2026-02-18) ### Changes diff --git a/packages/durabletask-js-azuremanaged/package.json b/packages/durabletask-js-azuremanaged/package.json index a4dc599..0f81ee8 100644 --- a/packages/durabletask-js-azuremanaged/package.json +++ b/packages/durabletask-js-azuremanaged/package.json @@ -1,6 +1,6 @@ { "name": "@microsoft/durabletask-js-azuremanaged", - "version": "0.2.0", + "version": "0.3.0", "description": "Azure-managed Durable Task Scheduler support for the Durable Task JavaScript SDK", "main": "./dist/index.js", "types": "./dist/index.d.ts", @@ -52,7 +52,7 @@ }, "peerDependencies": { "@grpc/grpc-js": "^1.8.14", - "@microsoft/durabletask-js": ">=0.2.0" + "@microsoft/durabletask-js": ">=0.3.0" }, "devDependencies": { "@types/jest": "^29.5.1", diff --git a/packages/durabletask-js/package.json b/packages/durabletask-js/package.json index ed04129..93a7cda 100644 --- a/packages/durabletask-js/package.json +++ b/packages/durabletask-js/package.json @@ -1,6 +1,6 @@ { "name": "@microsoft/durabletask-js", - "version": "0.2.0", + "version": "0.3.0", "description": "A Durable Task Javascript SDK compatible with Dapr Workflow and its underlying Durable Task engine", "main": "./dist/index.js", "types": "./dist/index.d.ts",