Skip to content

Commit 353750e

Browse files
Release v0.1.0-beta.1
1 parent 2fb8348 commit 353750e

3 files changed

Lines changed: 100 additions & 66 deletions

File tree

CHANGELOG.md

Lines changed: 35 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,41 @@
22

33
### New
44

5-
- Add automatic proto file download and commit hash tracking during build ([#XX](https://github.com/microsoft/durabletask-js/pull/XX))
5+
### Fixes
6+
7+
8+
## v0.1.0-beta.1 (2026-02-10)
9+
10+
### Changes
11+
12+
- Refactor get latest release tag step to exclude current version and improve changelog generation ([#105](https://github.com/microsoft/durabletask-js/pull/105))
13+
- Update release workflow documentation and remove automated PR creation step ([#104](https://github.com/microsoft/durabletask-js/pull/104))
14+
- Add release pipeline/doc + fix build pipeline ([#103](https://github.com/microsoft/durabletask-js/pull/103))
15+
- Refactor release preparation workflow and add automated changelog update script ([#102](https://github.com/microsoft/durabletask-js/pull/102))
16+
- Release Process Update ([#101](https://github.com/microsoft/durabletask-js/pull/101))
17+
- Add samples and sample validation ci ([#100](https://github.com/microsoft/durabletask-js/pull/100))
18+
- Fix misleading tracer cache invalidation comment and simplify logic ([#97](https://github.com/microsoft/durabletask-js/pull/97))
19+
- Durable Entities Support ([#75](https://github.com/microsoft/durabletask-js/pull/75))
20+
- Retry Handler Support when call activity or suborchestration ([#96](https://github.com/microsoft/durabletask-js/pull/96))
21+
- Add OpenTelemetry distributed tracing example for Azure Managed DTS ([#95](https://github.com/microsoft/durabletask-js/pull/95))
22+
- Versioning, recursive terminating/purging, Replay safe logger ([#93](https://github.com/microsoft/durabletask-js/pull/93))
23+
- Implement in-memory orchestration backend for testing ([#94](https://github.com/microsoft/durabletask-js/pull/94))
24+
- Parent Orchestration Access For SubOrchestration ([#92](https://github.com/microsoft/durabletask-js/pull/92))
25+
- Add tags support for activities, sub-orchestrations, and client APIs ([#89](https://github.com/microsoft/durabletask-js/pull/89))
26+
- Get Orchestration History ([#88](https://github.com/microsoft/durabletask-js/pull/88))
27+
- Add Logger interface, AzureLoggerAdapter, and fix gRPC client stop ([#85](https://github.com/microsoft/durabletask-js/pull/85))
28+
- NewGuid, SetCustomStatus, sendevent between orchestrations api support ([#86](https://github.com/microsoft/durabletask-js/pull/86))
29+
- Rewind client api ([#84](https://github.com/microsoft/durabletask-js/pull/84))
30+
- Update dependencies, ESLint configuration, and add pull request template ([#81](https://github.com/microsoft/durabletask-js/pull/81))
31+
- Support retry handling when calling activity/suborchestrations ([#77](https://github.com/microsoft/durabletask-js/pull/77))
32+
- Restart Instance ([#80](https://github.com/microsoft/durabletask-js/pull/80))
33+
- Client api support - Getinstances/listinstanceids ([#78](https://github.com/microsoft/durabletask-js/pull/78))
34+
- Add pre-commit hook to run lint on staged files ([#79](https://github.com/microsoft/durabletask-js/pull/79))
35+
- Set up E2E testing infrastructure aligned with durabletask-python ([#74](https://github.com/microsoft/durabletask-js/pull/74))
36+
- Add Azure-managed Durable Task support as separate npm package ([#73](https://github.com/microsoft/durabletask-js/pull/73))
37+
- Remove submodule, add proto file download script ([#72](https://github.com/microsoft/durabletask-js/pull/72))
38+
- Set low priority for scheduled runs ([#70](https://github.com/microsoft/durabletask-js/pull/70))
39+
- retry workflows grpc stream ([#66](https://github.com/microsoft/durabletask-js/pull/66))
640

741
## v0.1.0-alpha.2
842

packages/durabletask-js-azuremanaged/package.json

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@microsoft/durabletask-js-azuremanaged",
3-
"version": "0.1.0-alpha.1",
3+
"version": "0.1.0-beta.1",
44
"description": "Azure-managed Durable Task Scheduler support for the Durable Task JavaScript SDK",
55
"main": "./dist/index.js",
66
"types": "./dist/index.d.ts",
@@ -52,7 +52,7 @@
5252
},
5353
"peerDependencies": {
5454
"@grpc/grpc-js": "^1.8.14",
55-
"@microsoft/durabletask-js": ">=0.1.0-alpha.2"
55+
"@microsoft/durabletask-js": ">=0.1.0-beta.1"
5656
},
5757
"devDependencies": {
5858
"@types/jest": "^29.5.1",
@@ -61,4 +61,4 @@
6161
"ts-jest": "^29.1.0",
6262
"typescript": "^5.0.4"
6363
}
64-
}
64+
}
Lines changed: 62 additions & 62 deletions
Original file line numberDiff line numberDiff line change
@@ -1,62 +1,62 @@
1-
{
2-
"name": "@microsoft/durabletask-js",
3-
"version": "0.1.0-alpha.2",
4-
"description": "A Durable Task Javascript SDK compatible with Dapr Workflow and its underlying Durable Task engine",
5-
"main": "./dist/index.js",
6-
"types": "./dist/index.d.ts",
7-
"files": [
8-
"dist",
9-
"LICENSE",
10-
"README.md"
11-
],
12-
"scripts": {
13-
"clean": "node -e \"require('fs').rmSync('dist', {recursive:true, force:true})\"",
14-
"copy-proto": "node -e \"require('fs').cpSync('src/proto', 'dist/proto', {recursive:true})\"",
15-
"prebuild": "node -p \"'// Auto-generated by prebuild\\nexport const SDK_VERSION = ' + JSON.stringify(require('./package.json').version) + ';\\nexport const SDK_PACKAGE_NAME = ' + JSON.stringify(require('./package.json').name) + ';'\" > src/version.ts",
16-
"build": "npm run prebuild && npm run clean && tsc -p tsconfig.build.json && npm run copy-proto",
17-
"test": "jest --runInBand --detectOpenHandles",
18-
"test:unit": "jest test --runInBand --detectOpenHandles"
19-
},
20-
"engines": {
21-
"node": ">=22.0.0"
22-
},
23-
"repository": {
24-
"type": "git",
25-
"url": "git+https://github.com/microsoft/durabletask-js.git",
26-
"directory": "packages/durabletask-js"
27-
},
28-
"keywords": [
29-
"durabletask",
30-
"orchestration",
31-
"workflow",
32-
"durable"
33-
],
34-
"author": "Microsoft",
35-
"license": "MIT",
36-
"bugs": {
37-
"url": "https://github.com/microsoft/durabletask-js/issues"
38-
},
39-
"homepage": "https://github.com/microsoft/durabletask-js#readme",
40-
"dependencies": {
41-
"@grpc/grpc-js": "^1.14.3",
42-
"google-protobuf": "^3.21.2"
43-
},
44-
"devDependencies": {
45-
"@opentelemetry/api": "^1.9.0",
46-
"@opentelemetry/sdk-trace-base": "^1.25.0",
47-
"@types/google-protobuf": "^3.15.6",
48-
"@types/jest": "^29.5.1",
49-
"@types/node": "^18.16.1",
50-
"jest": "^29.5.0",
51-
"ts-jest": "^29.1.0",
52-
"typescript": "^5.0.4"
53-
},
54-
"peerDependencies": {
55-
"@opentelemetry/api": "^1.4.0"
56-
},
57-
"peerDependenciesMeta": {
58-
"@opentelemetry/api": {
59-
"optional": true
60-
}
61-
}
62-
}
1+
{
2+
"name": "@microsoft/durabletask-js",
3+
"version": "0.1.0-beta.1",
4+
"description": "A Durable Task Javascript SDK compatible with Dapr Workflow and its underlying Durable Task engine",
5+
"main": "./dist/index.js",
6+
"types": "./dist/index.d.ts",
7+
"files": [
8+
"dist",
9+
"LICENSE",
10+
"README.md"
11+
],
12+
"scripts": {
13+
"clean": "node -e \"require('fs').rmSync('dist', {recursive:true, force:true})\"",
14+
"copy-proto": "node -e \"require('fs').cpSync('src/proto', 'dist/proto', {recursive:true})\"",
15+
"prebuild": "node -p \"'// Auto-generated by prebuild\\nexport const SDK_VERSION = ' + JSON.stringify(require('./package.json').version) + ';\\nexport const SDK_PACKAGE_NAME = ' + JSON.stringify(require('./package.json').name) + ';'\" > src/version.ts",
16+
"build": "npm run prebuild && npm run clean && tsc -p tsconfig.build.json && npm run copy-proto",
17+
"test": "jest --runInBand --detectOpenHandles",
18+
"test:unit": "jest test --runInBand --detectOpenHandles"
19+
},
20+
"engines": {
21+
"node": ">=22.0.0"
22+
},
23+
"repository": {
24+
"type": "git",
25+
"url": "git+https://github.com/microsoft/durabletask-js.git",
26+
"directory": "packages/durabletask-js"
27+
},
28+
"keywords": [
29+
"durabletask",
30+
"orchestration",
31+
"workflow",
32+
"durable"
33+
],
34+
"author": "Microsoft",
35+
"license": "MIT",
36+
"bugs": {
37+
"url": "https://github.com/microsoft/durabletask-js/issues"
38+
},
39+
"homepage": "https://github.com/microsoft/durabletask-js#readme",
40+
"dependencies": {
41+
"@grpc/grpc-js": "^1.14.3",
42+
"google-protobuf": "^3.21.2"
43+
},
44+
"devDependencies": {
45+
"@opentelemetry/api": "^1.9.0",
46+
"@opentelemetry/sdk-trace-base": "^1.25.0",
47+
"@types/google-protobuf": "^3.15.6",
48+
"@types/jest": "^29.5.1",
49+
"@types/node": "^18.16.1",
50+
"jest": "^29.5.0",
51+
"ts-jest": "^29.1.0",
52+
"typescript": "^5.0.4"
53+
},
54+
"peerDependencies": {
55+
"@opentelemetry/api": "^1.4.0"
56+
},
57+
"peerDependenciesMeta": {
58+
"@opentelemetry/api": {
59+
"optional": true
60+
}
61+
}
62+
}

0 commit comments

Comments
 (0)