AlexSKuznetsov / procure

1 stars 0 forks source link

fix(deps): update temporalio-ts monorepo to v1.11.2 #105

Open renovate[bot] opened 7 months ago

renovate[bot] commented 7 months ago

This PR contains the following updates:

Package Change Age Adoption Passing Confidence
@temporalio/activity (source) 1.9.1 -> 1.11.2 age adoption passing confidence
@temporalio/client (source) 1.9.1 -> 1.11.2 age adoption passing confidence
@temporalio/common (source) 1.9.1 -> 1.11.2 age adoption passing confidence
@temporalio/worker (source) 1.9.1 -> 1.11.2 age adoption passing confidence
@temporalio/workflow (source) 1.9.1 -> 1.11.2 age adoption passing confidence

Release Notes

temporalio/sdk-typescript (@​temporalio/activity) ### [`v1.11.2`](https://redirect.github.com/temporalio/sdk-typescript/releases/tag/v1.11.2): 1.11.2 [Compare Source](https://redirect.github.com/temporalio/sdk-typescript/compare/v1.11.1...v1.11.2) ##### Important ⚠️ ⚠️ ⚠️ - This release fixes a bug in 1.11.0 and 1.11.1 that may result in Workflows failing to replay with the very same code. We urge users who are already using v1.11.0 or v1.11.1 to promptly upgrade to this release. ##### Bug Fixes - \[`workflow`] Workflow Activation Encoder was discarding SDK flags ([#​1530](https://redirect.github.com/temporalio/sdk-typescript/issues/1530)) - \[`core`] Respect gRPC timeouts on get wf execution history ([temporalio/sdk-core#812](https://redirect.github.com/temporalio/sdk-core/issues/812)) - \[`core`] Attempt to address unusal rpc cancellation error ([temporalio/sdk-core#811](https://redirect.github.com/temporalio/sdk-core/issues/811)) - \[`core`] Fix legacy query failure replying ([temporalio/sdk-core#809](https://redirect.github.com/temporalio/sdk-core/issues/809)) - \[`core`] Fix possible NDEs caused by LAs & immediate cancels resolving in different order upon replay ([temporalio/sdk-core#808](https://redirect.github.com/temporalio/sdk-core/issues/808)) - \[`workflow`] Fix potential incoherencies in Workflow Activation Jobs ordering ([#​1513](https://redirect.github.com/temporalio/sdk-typescript/issues/1513), [temporalio/sdk-core#789](https://redirect.github.com/temporalio/sdk-core/issues/789)) - \[`core`] Include Search Attribute updates made in-workflow when continuing as new ([temporalio/sdk-core#797](https://redirect.github.com/temporalio/sdk-core/issues/797)) - \[`core`] Add basic validation on Activity Tasks ([temporalio/sdk-core#795](https://redirect.github.com/temporalio/sdk-core/issues/795)) - \[`core`] Do not send queries after we would fail WFT ([temporalio/sdk-core#792](https://redirect.github.com/temporalio/sdk-core/issues/792)) ##### Dependencies - Upgrade multiple vulnerable deps ([#​1518](https://redirect.github.com/temporalio/sdk-typescript/issues/1518), [#​1521](https://redirect.github.com/temporalio/sdk-typescript/issues/1521)) ##### Thanks - Thanks to [Ilya Priven](@​ikonst) for multiple docs improvements ([#​1507](https://redirect.github.com/temporalio/sdk-typescript/issues/1507), [#​1525](https://redirect.github.com/temporalio/sdk-typescript/issues/1525), [#​1527](https://redirect.github.com/temporalio/sdk-typescript/issues/1527), [#​1524](https://redirect.github.com/temporalio/sdk-typescript/issues/1524)). ### [`v1.11.1`](https://redirect.github.com/temporalio/sdk-typescript/releases/tag/v1.11.1): 1.11.1 [Compare Source](https://redirect.github.com/temporalio/sdk-typescript/compare/v1.11.0...v1.11.1) v1.11.0..HEAD ##### \[1.11.1] - 2024-08-15 ##### Bug Fixes - \[`client`] Reexport WorkflowExecutionAlreadyStartedError from `@temporalio/client` ([#​1498](https://redirect.github.com/temporalio/sdk-typescript/issues/1498)) ### [`v1.11.0`](https://redirect.github.com/temporalio/sdk-typescript/releases/tag/v1.11.0): 1.11.0 [Compare Source](https://redirect.github.com/temporalio/sdk-typescript/compare/v1.10.3...v1.11.0) ##### \[1.11.0] - 2024-08-14 ##### Bug Fixes - Fix flakes in Worker Tuner and Workflow Update tests ([#​1463](https://redirect.github.com/temporalio/sdk-typescript/issues/1463)) - \[`workflow`] Don't propagate cancellation from non-cancellable scopes to children ([#​1429](https://redirect.github.com/temporalio/sdk-typescript/issues/1429)) - \[`worker`] Don't fail Worker on Activity Task decode failures (port from [#​1473](https://redirect.github.com/temporalio/sdk-typescript/issues/1473)) ([#​1477](https://redirect.github.com/temporalio/sdk-typescript/issues/1477)) - \[`ci`] Enable file-based persistence on dev server for stress tests ([#​1480](https://redirect.github.com/temporalio/sdk-typescript/issues/1480)) - \[`workflow`] Fix cancel-before-started abandon activity ([#​1487](https://redirect.github.com/temporalio/sdk-typescript/issues/1487)) - \[`doc`] Docs were no longer being built and deployed in CI ([#​1494](https://redirect.github.com/temporalio/sdk-typescript/issues/1494)) - \[`workflow`] Process all activation jobs as a single batch ([#​1488](https://redirect.github.com/temporalio/sdk-typescript/issues/1488)) ##### Documentation - Clarify some drawbacks of ephemeral servers, and other minor fixes ([#​1478](https://redirect.github.com/temporalio/sdk-typescript/issues/1478)) ##### Features ##### Resource-based Worker Auto-tuning (EXPERIMENTAL) Experimental support for worker tuning has been added along with an implementation for auto-tuning based on available resources. `WorkerOptions` now has a `tuner` field that can be set to a `WorkerTuner`. This is composed of `SlotSupplier`s, of which currently `FixedSize` and `ResourceBased` are available. `ResourceBased` tuners change the number of available slots dynamically based on resource usage. For some examples of initializing the worker tuner, see [here](https://redirect.github.com/temporalio/sdk-typescript/blob/f756351b8b8bd5b903957bf7f9b982934aed00e5/packages/test/src/test-worker-tuner.ts). At some point the `SlotSupplier` interface will be manually implementable, but only fixed-size and resource-based slot suppliers are currently supported. Custom slot suppliers will appear in the future. This SDK API is experimental and may change in incompatible ways in the future. - \[`workflow`] Unify GRPC::CANCELED and DEADLINE_EXCEEDED in an SDK Timeout exception for Update ([#​1452](https://redirect.github.com/temporalio/sdk-typescript/issues/1452)) - \[`workflow`] Expose updateId to update handlers ([#​1450](https://redirect.github.com/temporalio/sdk-typescript/issues/1450)) - \[`workflow`] Add upsert memo command ([#​1321](https://redirect.github.com/temporalio/sdk-typescript/issues/1321)) ##### Miscellaneous Tasks - Bump GHA runner for stress tests ([#​1492](https://redirect.github.com/temporalio/sdk-typescript/issues/1492)) ##### Client - Make gRPC INTERNAL status retryable ([#​1455](https://redirect.github.com/temporalio/sdk-typescript/issues/1455)) ### [`v1.10.3`](https://redirect.github.com/temporalio/sdk-typescript/releases/tag/v1.10.3): 1.10.3 [Compare Source](https://redirect.github.com/temporalio/sdk-typescript/compare/v1.10.2...v1.10.3) ##### Bug Fixes - \[`worker`] Don't fail Worker on Activity Task decode failures ([#​1473](https://redirect.github.com/temporalio/sdk-typescript/issues/1473)) ### [`v1.10.2`](https://redirect.github.com/temporalio/sdk-typescript/releases/tag/v1.10.2): 1.10.2 [Compare Source](https://redirect.github.com/temporalio/sdk-typescript/compare/v1.10.1...v1.10.2) ##### Bug Fixes - \[`worker`] Fix clients being created without prefixed metric meter ([#​1465](https://redirect.github.com/temporalio/sdk-typescript/issues/1465)) - \[`workflow`] Don't propagate cancellation from non-cancellable scopes to children ([#​1466](https://redirect.github.com/temporalio/sdk-typescript/issues/1466)) - Update dependencies ([#​1467](https://redirect.github.com/temporalio/sdk-typescript/issues/1467)) ### [`v1.10.1`](https://redirect.github.com/temporalio/sdk-typescript/releases/tag/v1.10.1) [Compare Source](https://redirect.github.com/temporalio/sdk-typescript/compare/v1.10.0...v1.10.1) ##### What changed - On Linux, restored compatibility with GLIBC 2.18+ on both x64 and arm64 architectures. ### [`v1.10.0`](https://redirect.github.com/temporalio/sdk-typescript/releases/tag/v1.10.0) [Compare Source](https://redirect.github.com/temporalio/sdk-typescript/compare/v1.9.3...v1.10.0) ##### Important updates - 💥 **Support for Node.js 14 and older GLIBC releases has been dropped.** As announced previously, TS SDK v1.9 was the last minor release to support Node.js 14. Going forward, the TypeScript SDK requires: - Node.js 16.15 or more recent; - GLIBC 2.35 or more recent *(update: we restored compatibility with GLIBC 2.18 in [v1.10.1](https://redirect.github.com/temporalio/sdk-typescript/releases/tag/v1.10.1))* - 💥 **Support for Node.js 16 will soon be dropped.** TS SDK v1.10 will be the last minor release to support Node.js 16. TS SDK v1.11 will require Node 18 or higher. Node.js 14 officially reached end-of-life on April 30th, 2023, and Node.js 16 reached end-of-life on September 11th, 2023 (see [Node.js release schedule](https://nodejs.org/en/about/previous-releases#release-schedule)). We strongly encourage everyone to take immediate action in updating their deployments to supported versions of Node.js to ensure continued compatibility and receive the latest features and security updates. ##### Features - \[`client`] Both `Connection` and `NativeConnection` now accept an `apiKey` option, making it easier to connect to Temporal Cloud and other Temporal servers that use bearer token authentication ([#​1385](https://redirect.github.com/temporalio/sdk-typescript/issues/1385)), as well as HTTP CONNECT Proxy ([#​1411](https://redirect.github.com/temporalio/sdk-typescript/issues/1411), thanks to [@​brendan-myers](https://redirect.github.com/brendan-myers) for his help on getting this started 🙏). - \[`client`] The `startdelay` Workflow option is no longer experimental ([#​1379](https://redirect.github.com/temporalio/sdk-typescript/issues/1379)). Thanks [@​tlafano](https://redirect.github.com/tlafano) 🙏. - \[`core`] Core can now be configured to emit duration metrics as either seconds or milliseconds, as well as to include unit suffixes in metric names ([#​1383](https://redirect.github.com/temporalio/sdk-typescript/issues/1383)). - \[`worker`] Add `taskQueue` and `logSource` metadata attributes on all log messages emitted inside the context of a worker. These attributes are there make is easier to diagnose some low level issues, as well as allow implementing fine-grained filtering of messages (eg. show DEBUG level messages for user-code, but only WARN for messages from the worker) ([#​1391](https://redirect.github.com/temporalio/sdk-typescript/issues/1391)). ##### Bug Fixes - \[`client`] Bring gRPC retry options in line with other SDKs ([#​1368](https://redirect.github.com/temporalio/sdk-typescript/issues/1368)). Thanks to [@​chronos-tachyon](https://redirect.github.com/chronos-tachyon) 🙏. - \[`worker`] Unreference timer created in `parseWorkflowCode` ([#​1370](https://redirect.github.com/temporalio/sdk-typescript/issues/1370)). Thanks [@​jhecking](https://redirect.github.com/jhecking) 🙏. - On POSIX systems, `stdout` and `stderr` are now properly inherited by ephemeral servers (e.g. `TestWorkflowEnvironment.createLocal()` and `TestWorkflowEnvironment.createTimeSkipping()`), making it easier to diagnose issues while creating a test environment ([#​1394](https://redirect.github.com/temporalio/sdk-typescript/issues/1394)). - `@grpc/grpc-js` has been updated to 1.10.x ([#​1388](https://redirect.github.com/temporalio/sdk-typescript/issues/1388)). It had previously been pinned to 1.7.3 to avoid multiple bugs and incompatibilities introduced in `grpc-js` 1.8.0. We have since reviewed these changes and confirmed that there is no longer any reason to refrain form updating that dependency. - `bundler`: Webpack output is now recorded as a single log entry, and color are disabled if output is not being sent to the console ([#​1414](https://redirect.github.com/temporalio/sdk-typescript/issues/1414)). Thanks [@​ikonst](https://redirect.github.com/ikonst) 🙏. - `MockActivityEnvironment` no longer causes initialization of the `Runtime` ([#​1401](https://redirect.github.com/temporalio/sdk-typescript/issues/1401)). - \[`common`] Improve error messages for `failureConverters` ([#​1373](https://redirect.github.com/temporalio/sdk-typescript/issues/1373)). - \[`doc`] Fix comment on default `maxConcurrentActivityTaskPolls` value ([#​1374](https://redirect.github.com/temporalio/sdk-typescript/issues/1374)) Thanks [@​taonic](https://redirect.github.com/taonic) 🙏. ### [`v1.9.3`](https://redirect.github.com/temporalio/sdk-typescript/releases/tag/v1.9.3) [Compare Source](https://redirect.github.com/temporalio/sdk-typescript/compare/v1.9.2...v1.9.3) ##### \[1.9.3] - 2024-02-23 ##### Bug fixes - Fix deprecated patch removal when no subsequent command ([https://github.com/temporalio/sdk-core/pull/671](https://redirect.github.com/temporalio/sdk-core/pull/671)). - Fix incorrect ordering of a query execution that could happen if new workflow tasks came in while there were buffered queries ([https://github.com/temporalio/sdk-core/pull/673](https://redirect.github.com/temporalio/sdk-core/pull/673)). - Fix a possibility of sending local activity marker after the Workflow Task Complete command ([https://github.com/temporalio/sdk-core/pull/678](https://redirect.github.com/temporalio/sdk-core/pull/678)). - Wait for activity completes to reach server before shutdown ([https://github.com/temporalio/sdk-core/pull/681](https://redirect.github.com/temporalio/sdk-core/pull/681)). - Update protobuf definitions to work with the new `EVENT_TYPE_WORKFLOW_EXECUTION_UPDATE_REQUESTED` event ([https://github.com/temporalio/sdk-core/pull/677](https://redirect.github.com/temporalio/sdk-core/pull/677)). - Fix a regression regarding gRPC incoming message limit due to a behavior change in tonic 0.9.0. ##### Documentation - Avoid doctype reexports canonicalization issue ([#​1354](https://redirect.github.com/temporalio/sdk-typescript/issues/1354)) ##### Miscellaneous Tasks - Add test for module property mutation isolation ([#​1356](https://redirect.github.com/temporalio/sdk-typescript/issues/1356)) ### [`v1.9.2`](https://redirect.github.com/temporalio/sdk-typescript/compare/v1.9.1...v1.9.2) [Compare Source](https://redirect.github.com/temporalio/sdk-typescript/compare/v1.9.1...v1.9.2)

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 these updates again.



This PR was generated by Mend Renovate. View the repository job log.