Update dependency durable-functions to v2 #119
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
This PR contains the following updates:
1.5.4
->2.1.4
Release Notes
Azure/azure-functions-durable-js (durable-functions)
v2.1.4
: Durable Functions for NodeJS 2.1.4Compare Source
Durable Functions for JavaScript
2.1.4
is a new patch version release.npm package
https://www.npmjs.com/package/durable-functions
Patch
v2.1.3
: Durable Functions for NodeJS 2.1.3Compare Source
Durable Functions for JavaScript
2.1.3
is a new patch version release.npm package
https://www.npmjs.com/package/durable-functions
Patch
v2.1.2
: Durable Functions for NodeJS 2.1.2Compare Source
Durable Functions for JavaScript
2.1.2
is a new minor version release.npm package
https://www.npmjs.com/package/durable-functions
Patch
v3.x
releasev2.1.1
: Durable Functions for NodeJS 2.1.1Compare Source
Durable Functions for JavaScript
2.1.1
is a new minor version release.npm package
https://www.npmjs.com/package/durable-functions
Patch
isPlayed
flag on someWhenAll
tasks (#405)v2.1.0
: Durable Functions for NodeJS 2.1.0Compare Source
Durable Functions for JavaScript
2.1.0
is a new minor version release.npm package
https://www.npmjs.com/package/durable-functions
New features
signalEntity
API to orchestrators (#383)Patch
isReplaying
and compound tasks (#395)v2.0.2
: Durable Functions for NodeJS 2.0.2Compare Source
Durable Functions for JavaScript
2.0.2
is a patch release that fixes a backwards compatibility problem with DF Extension versions lower than 2.7.0npm package
https://www.npmjs.com/package/durable-functions
Patch
v2.0.1
: Durable Functions for NodeJS 2.0.1Compare Source
UPDATE: Some backwards compatibility issues were detected on release. Please fast-forward your upgrade to v2.0.2
Durable Functions for JavaScript
2.0.1
is a patch release that brings a missing dependency to the package.npm package
https://www.npmjs.com/package/durable-functions
Patch
moment.js
back fromdevDependency
todependency
(https://github.com/Azure/azure-functions-durable-js/pull/367)v2.0.0
: Durable Functions for NodeJS 2.0.0Compare Source
UPDATE: Some backwards compatibility issues were detected on release. Please fast-forward your upgrade to v2.0.2
Durable Functions for JavaScript
2.0.0
is a major version release that brings dramatic performance improvements to the platform, makes a few breaking changes to streamline the programming model, and brings some new features. See below!npm package
https://www.npmjs.com/package/durable-functions
Performance Improvements
New Features
Bug Fixes
Breaking Changes
The following breaking changes were introduced in https://github.com/Azure/azure-functions-durable-js/pull/305
return context.CallActivity(...)
would be treated asreturn yield context.CallActivity(...)
. This is no longer the case. Make sure you’reyield
’ing all your Tasks instead of returning them.ContinueAsNew
could beyield
ed or simply called as a fire-and-forget operation. Our original intention was forContinueAsNew
to be fire-and-forget, so now we throw an exception if you try to yield it.Task
. Additionally, the user-facing Task` types have been simplified and, in TypeScript, they no longer expose various properties that were meant for framework-internal use only. We heard your feedback requesting a more streamlined experience with Task-types, so we hope this makes things easier.To the best of our knowledge, this is the full extent of breaking changes. That said, as with any major version release, it’s always a good idea to test that your application continues working after upgrading to the new version. If you find an undocumented breaking change, please report it to our repo’s issue board here; thank you!
Configuration
📅 Schedule: Branch creation - At any time (no schedule defined), Automerge - At any time (no schedule defined).
🚦 Automerge: Disabled by config. Please merge this manually once you are satisfied.
♻ Rebasing: Whenever PR becomes conflicted, or you tick the rebase/retry checkbox.
🔕 Ignore: Close this PR and you won't be reminded about this update again.
This PR was generated by Mend Renovate. View the repository job log.