-
Notifications
You must be signed in to change notification settings - Fork 10
Release v0.1.0-beta.1 #107
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Changes from all commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -1,6 +1,6 @@ | ||
| { | ||
| "name": "@microsoft/durabletask-js-azuremanaged", | ||
| "version": "0.1.0-alpha.1", | ||
| "version": "0.1.0-beta.1", | ||
|
||
| "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.1.0-alpha.2" | ||
| "@microsoft/durabletask-js": ">=0.1.0-beta.1" | ||
| }, | ||
| "devDependencies": { | ||
| "@types/jest": "^29.5.1", | ||
|
|
@@ -61,4 +61,4 @@ | |
| "ts-jest": "^29.1.0", | ||
| "typescript": "^5.0.4" | ||
| } | ||
| } | ||
| } | ||
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -1,62 +1,62 @@ | ||
| { | ||
| "name": "@microsoft/durabletask-js", | ||
| "version": "0.1.0-alpha.2", | ||
| "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", | ||
| "files": [ | ||
| "dist", | ||
| "LICENSE", | ||
| "README.md" | ||
| ], | ||
| "scripts": { | ||
| "clean": "node -e \"require('fs').rmSync('dist', {recursive:true, force:true})\"", | ||
| "copy-proto": "node -e \"require('fs').cpSync('src/proto', 'dist/proto', {recursive:true})\"", | ||
| "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", | ||
| "build": "npm run prebuild && npm run clean && tsc -p tsconfig.build.json && npm run copy-proto", | ||
| "test": "jest --runInBand --detectOpenHandles", | ||
| "test:unit": "jest test --runInBand --detectOpenHandles" | ||
| }, | ||
| "engines": { | ||
| "node": ">=22.0.0" | ||
| }, | ||
| "repository": { | ||
| "type": "git", | ||
| "url": "git+https://github.com/microsoft/durabletask-js.git", | ||
| "directory": "packages/durabletask-js" | ||
| }, | ||
| "keywords": [ | ||
| "durabletask", | ||
| "orchestration", | ||
| "workflow", | ||
| "durable" | ||
| ], | ||
| "author": "Microsoft", | ||
| "license": "MIT", | ||
| "bugs": { | ||
| "url": "https://github.com/microsoft/durabletask-js/issues" | ||
| }, | ||
| "homepage": "https://github.com/microsoft/durabletask-js#readme", | ||
| "dependencies": { | ||
| "@grpc/grpc-js": "^1.14.3", | ||
| "google-protobuf": "^3.21.2" | ||
| }, | ||
| "devDependencies": { | ||
| "@opentelemetry/api": "^1.9.0", | ||
| "@opentelemetry/sdk-trace-base": "^1.25.0", | ||
| "@types/google-protobuf": "^3.15.6", | ||
| "@types/jest": "^29.5.1", | ||
| "@types/node": "^18.16.1", | ||
| "jest": "^29.5.0", | ||
| "ts-jest": "^29.1.0", | ||
| "typescript": "^5.0.4" | ||
| }, | ||
| "peerDependencies": { | ||
| "@opentelemetry/api": "^1.4.0" | ||
| }, | ||
| "peerDependenciesMeta": { | ||
| "@opentelemetry/api": { | ||
| "optional": true | ||
| } | ||
| } | ||
| } | ||
| { | ||
| "name": "@microsoft/durabletask-js", | ||
| "version": "0.1.0-beta.1", | ||
|
||
| "description": "A Durable Task Javascript SDK compatible with Dapr Workflow and its underlying Durable Task engine", | ||
YunchuWang marked this conversation as resolved.
Show resolved
Hide resolved
|
||
| "main": "./dist/index.js", | ||
| "types": "./dist/index.d.ts", | ||
| "files": [ | ||
| "dist", | ||
| "LICENSE", | ||
| "README.md" | ||
| ], | ||
| "scripts": { | ||
| "clean": "node -e \"require('fs').rmSync('dist', {recursive:true, force:true})\"", | ||
| "copy-proto": "node -e \"require('fs').cpSync('src/proto', 'dist/proto', {recursive:true})\"", | ||
| "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", | ||
| "build": "npm run prebuild && npm run clean && tsc -p tsconfig.build.json && npm run copy-proto", | ||
| "test": "jest --runInBand --detectOpenHandles", | ||
| "test:unit": "jest test --runInBand --detectOpenHandles" | ||
| }, | ||
| "engines": { | ||
| "node": ">=22.0.0" | ||
| }, | ||
| "repository": { | ||
| "type": "git", | ||
| "url": "git+https://github.com/microsoft/durabletask-js.git", | ||
| "directory": "packages/durabletask-js" | ||
| }, | ||
| "keywords": [ | ||
| "durabletask", | ||
| "orchestration", | ||
| "workflow", | ||
| "durable" | ||
| ], | ||
| "author": "Microsoft", | ||
| "license": "MIT", | ||
| "bugs": { | ||
| "url": "https://github.com/microsoft/durabletask-js/issues" | ||
| }, | ||
| "homepage": "https://github.com/microsoft/durabletask-js#readme", | ||
| "dependencies": { | ||
| "@grpc/grpc-js": "^1.14.3", | ||
| "google-protobuf": "^3.21.2" | ||
| }, | ||
| "devDependencies": { | ||
| "@opentelemetry/api": "^1.9.0", | ||
| "@opentelemetry/sdk-trace-base": "^1.25.0", | ||
| "@types/google-protobuf": "^3.15.6", | ||
| "@types/jest": "^29.5.1", | ||
| "@types/node": "^18.16.1", | ||
| "jest": "^29.5.0", | ||
| "ts-jest": "^29.1.0", | ||
| "typescript": "^5.0.4" | ||
| }, | ||
| "peerDependencies": { | ||
| "@opentelemetry/api": "^1.4.0" | ||
| }, | ||
| "peerDependenciesMeta": { | ||
| "@opentelemetry/api": { | ||
| "optional": true | ||
| } | ||
| } | ||
| } | ||
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
The release section uses a "### Changes" heading, but the repo's documented changelog format (doc/release_process.md) and prior entries in this file use "### New" / "### Fixes" (and optionally "### Breaking Changes"). To avoid inconsistency and potential confusion for release note consumers/tools, please either follow the existing section headings here (split items accordingly) or update the documented process in the same PR.