Skip to content

chore(deps-dev): bump the development-dependencies group across 1 directory with 3 updates - #185

Open
dependabot[bot] wants to merge 1 commit into
mainfrom
dependabot/npm_and_yarn/development-dependencies-ea7ba94445
Open

dependabot[bot] wants to merge 1 commit into
mainfrom
dependabot/npm_and_yarn/development-dependencies-ea7ba94445

Conversation

@dependabot

@dependabot dependabot Bot commented on behalf of github Sep 20, 2026 •

Copy link
Copy Markdown
Contributor

Bumps the development-dependencies group with 3 updates in the / directory: @babel/parser, prettier and @temporalio/client.

Updates @babel/parser from 7.29.8 to 7.29.9

Release notes

Sourced from @​babel/parser's releases.

v7.29.9 (2026-09-18)

🐛 Bug Fix

🏠 Internal

Committers: 4

Commits

Updates prettier from 3.9.6 to 3.9.8

Release notes

Sourced from prettier's releases.

3.9.8

  • Markdown: Don't let Liquid objects interrupt paragraphs (#20087 by @​seiyab)

🔗 Changelog

3.9.7

  • Support Angular 22.2
  • Fix regressions in v3.9

🔗 Changelog

Changelog

Sourced from prettier's changelog.

3.9.8

diff

Markdown: Don't let Liquid objects interrupt paragraphs (#20087 by @​seiyab)

<!-- Input -->
If `module` is not a [`WebAssembly.Module`](https://github.com/prettier/prettier/blob/main/en-US/docs/WebAssembly/Reference/JavaScript_interface/Module) object instance, a
{{jsxref("TypeError")}} is thrown.
<!-- Prettier 3.9.7 -->
If module is not a WebAssembly.Module object instance, a
{{jsxref("TypeError")}} is thrown.
<!-- Prettier 3.9.8 -->
If module is not a WebAssembly.Module object instance, a
{{jsxref("TypeError")}} is thrown.

3.9.7

diff

Markdown: Prevent indentation drift in list-item code blocks (#19647, #19990 by @​Austin1serb, @​giaBaoJS)

<!-- Input -->
- [x] short first line.
  second paragraph at six spaces that wraps
  onto another line here.

<!-- Prettier 3.9.6 -->

 
short first line.
second paragraph at six spaces that wraps
    onto another line here.



<!-- Prettier 3.9.7 -->

 
short first line.
second paragraph at six spaces that wraps
onto another line here.


JavaScript: Fix embedded template literal idempotency (#19725 by @​fisker)

... (truncated)

Commits

Updates @temporalio/client from 1.23.0 to 1.24.0

Release notes

Sourced from @​temporalio/client's releases.

v1.24.0

Breaking Changes

  • @temporalio/openai-agents now requires @openai/agents-core and @openai/agents-openai ~0.14.3. A project pinned to 0.13.x or earlier hits a peer dependency conflict until it upgrades.
  • Experimental: External storage StorageDriverSelector now receives a StorageDriverSelectContext instead of a StorageDriverStoreContext. Update the parameter type; the new type carries the same abortSignal and target fields.

Added

  • Experimental: New methods for ActivityHandle: pause, unpause, updateOptions and restoreOriginalOptions.
  • ActivityHandle.describe now accepts options that can be used to include additional data associated with activity execution, such as input and result.
  • Experimental: @temporalio/openai-agents can run OpenAI Agents SandboxAgents as Temporal Workflows. SandboxAgent operations are Activities; hosted tool credentials and sandbox environment values that reference allowlisted Worker environment variables are resolved on Worker so their values are not recorded in Workflow history.
  • Experimental: Added rawValueTypeInfo, which allows RawValue inputs and results to be preserved across serialization boundaries when explicitly configured on TypeInfo-aware APIs.
  • Experimental: External Storage download and upload metrics are now reported to Core on Workflow Activation completions and included in its workflow-task duration log.

Changed

  • Standalone Activities APIs are stable.
  • ActivityClient now passes serialization context to data converter when interacting with standalone activities.
  • A workflow query issued from inside a Nexus operation handler now propagates the link the server returns for the workflow that processed it, so the caller's Nexus operation event points back at the queried workflow.
  • A common.v1.Link.Workflow now serializes to temporal:///namespaces/{ns}/workflows/{wid}/{rid} with the optional reason as a query param, matching the other SDKs; previously it reused the workflow event path and dropped reason. Inbound Workflow links are now parsed as well.

Fixed

  • Activity errors converted to ApplicationFailure now preserve native Error.cause chains in serialized failures.
  • Nexus handlers now report uncaught Workflow and standalone Activity already-started errors as non-retryable INTERNAL Handler Errors, preventing retries when ID reuse or conflict policies reject duplicate execution IDs.
  • Workflow activation failures now retain Workflow state until Core eviction, preventing premature execution-context disposal after converter or codec errors.
  • Fixed non-sticky Workflow Task poller starvation on Workers configured with a small Workflow cache (maxCachedWorkflows). Sticky pollers could consume every Workflow-cache permit and starve the non-sticky poller, so a Worker could stop accepting new Workflows until a poll timed out (up to ~60s). (Core fix: temporalio/sdk-rust#1534.)
  • Bumped the core-bridge HTTP/2 client stack (h2 0.4.13 → 0.4.19, hyper 1.8.1 → 1.11.0), picking up upstream fixes for stream-cancel flow-control leaks and missed wakeups on reset/trailers that can affect cancellation-heavy long-poll workloads.

... (truncated)

Changelog

Sourced from @​temporalio/client's changelog.

[1.24.0] - 2026-09-14

Breaking Changes

  • @temporalio/openai-agents now requires @openai/agents-core and @openai/agents-openai ~0.14.3. A project pinned to 0.13.x or earlier hits a peer dependency conflict until it upgrades.
  • Experimental: External storage StorageDriverSelector now receives a StorageDriverSelectContext instead of a StorageDriverStoreContext. Update the parameter type; the new type carries the same abortSignal and target fields.

Added

  • Experimental: New methods for ActivityHandle: pause, unpause, updateOptions and restoreOriginalOptions.
  • ActivityHandle.describe now accepts options that can be used to include additional data associated with activity execution, such as input and result.
  • Experimental: @temporalio/openai-agents can run OpenAI Agents SandboxAgents as Temporal Workflows. SandboxAgent operations are Activities; hosted tool credentials and sandbox environment values that reference allowlisted Worker environment variables are resolved on Worker so their values are not recorded in Workflow history.
  • Experimental: Added rawValueTypeInfo, which allows RawValue inputs and results to be preserved across serialization boundaries when explicitly configured on TypeInfo-aware APIs.
  • Experimental: External Storage download and upload metrics are now reported to Core on Workflow Activation completions and included in its workflow-task duration log.

Changed

  • Standalone Activities APIs are stable.
  • ActivityClient now passes serialization context to data converter when interacting with standalone activities.
  • A workflow query issued from inside a Nexus operation handler now propagates the link the server returns for the workflow that processed it, so the caller's Nexus operation event points back at the queried workflow.
  • A common.v1.Link.Workflow now serializes to temporal:///namespaces/{ns}/workflows/{wid}/{rid} with the optional reason as a query param, matching the other SDKs; previously it reused the workflow event path and dropped reason. Inbound Workflow links are now parsed as well.

Fixed

  • Activity errors converted to ApplicationFailure now preserve native Error.cause chains in serialized failures.
  • Nexus handlers now report uncaught Workflow and standalone Activity already-started errors as non-retryable INTERNAL Handler Errors, preventing retries when ID reuse or conflict policies reject duplicate execution IDs.
  • Workflow activation failures now retain Workflow state until Core eviction, preventing premature execution-context disposal after converter or codec errors.
  • Fixed non-sticky Workflow Task poller starvation on Workers configured with a small Workflow cache (maxCachedWorkflows). Sticky pollers could consume every Workflow-cache permit and starve the non-sticky poller, so a Worker could stop accepting new Workflows until a poll timed out (up to ~60s). (Core fix: temporalio/sdk-rust#1534.)
  • Bumped the core-bridge HTTP/2 client stack (h2 0.4.13 → 0.4.19, hyper 1.8.1 → 1.11.0), picking up upstream fixes for stream-cancel flow-control leaks and missed wakeups on reset/trailers that can affect cancellation-heavy long-poll workloads.
Commits

@dependabot dependabot Bot added dependencies Pull requests that update a dependency file javascript Pull requests that update javascript code labels Sep 20, 2026
@dependabot dependabot Bot added dependencies Pull requests that update a dependency file javascript Pull requests that update javascript code labels Sep 20, 2026
…ectory with 3 updates

Bumps the development-dependencies group with 3 updates in the / directory: [@babel/parser](https://github.com/babel/babel/tree/HEAD/packages/babel-parser), [prettier](https://github.com/prettier/prettier) and [@temporalio/client](https://github.com/temporalio/sdk-typescript/tree/HEAD/packages/client).


Updates `@babel/parser` from 7.29.8 to 7.29.9
- [Release notes](https://github.com/babel/babel/releases)
- [Changelog](https://github.com/babel/babel/blob/main/CHANGELOG.md)
- [Commits](https://github.com/babel/babel/commits/v7.29.9/packages/babel-parser)

Updates `prettier` from 3.9.6 to 3.9.8
- [Release notes](https://github.com/prettier/prettier/releases)
- [Changelog](https://github.com/prettier/prettier/blob/main/CHANGELOG.md)
- [Commits](prettier/prettier@3.9.6...3.9.8)

Updates `@temporalio/client` from 1.23.0 to 1.24.0
- [Release notes](https://github.com/temporalio/sdk-typescript/releases)
- [Changelog](https://github.com/temporalio/sdk-typescript/blob/main/CHANGELOG.md)
- [Commits](https://github.com/temporalio/sdk-typescript/commits/v1.24.0/packages/client)

---
updated-dependencies:
- dependency-name: "@babel/parser"
  dependency-version: 8.0.5
  dependency-type: direct:development
  update-type: version-update:semver-major
  dependency-group: development-dependencies
- dependency-name: "@temporalio/client"
  dependency-version: 1.24.0
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: development-dependencies
- dependency-name: prettier
  dependency-version: 3.9.7
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: development-dependencies
...

Signed-off-by: dependabot[bot] <support@github.com>
@dependabot
dependabot Bot force-pushed the dependabot/npm_and_yarn/development-dependencies-ea7ba94445 branch from e772feb to 8d9f8f8 Compare September 22, 2026 04:13

This branch has not been deployed

No deployments
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

dependencies Pull requests that update a dependency file javascript Pull requests that update javascript code

Projects

None yet

Development

Successfully merging this pull request may close these issues.

0 participants