Skip to content

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

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

chore(deps-dev): bump the development-dependencies group across 1 directory with 3 updates#151
dependabot[bot] wants to merge 1 commit into
mainfrom
dependabot/npm_and_yarn/development-dependencies-04f31e863b

Conversation

@dependabot

@dependabot dependabot Bot commented on behalf of github Aug 31, 2026

Copy link
Copy Markdown
Contributor

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

Updates prettier from 3.9.4 to 3.9.6

Release notes

Sourced from prettier's releases.

3.9.6

What's Changed

🔗 Changelog

3.9.5

🔗 Changelog

Changelog

Sourced from prettier's changelog.

3.9.6

diff

TypeScript: Preserve quotes for methods named new (#19621 by @​kovsu)

// Input
interface Container {
  "new"(id: string): number;
}
// Prettier 3.9.5
interface Container {
new(id: string): number;
}
// Prettier 3.9.6
interface Container {
"new"(id: string): number;
}

TypeScript: Support import defer (#19624, #19675 by @​fisker)

// Input
import defer * as foo from "foo";
// Prettier 3.9.5
import * as foo from "foo";
// Prettier 3.9.6
import defer * as foo from "foo";

JavaScript: Added a new official plugin @prettier/plugin-yuku (#19628, #19629 by @​fisker)

@prettier/plugin-yuku is powered by Yuku (A high-performance JavaScript/TypeScript compiler toolchain written in Zig).

This plugin includes two new parsers: yuku (JavaScript syntax) and yuku-ts (TypeScript syntax).

To use this plugin:

  1. Install the plugin:

    yarn add --dev prettier @prettier/plugin-yuku

... (truncated)

Commits

Updates typescript from 5.9.3 to 7.0.2

Release notes

Sourced from typescript's releases.

TypeScript 7.0.2

https://devblogs.microsoft.com/typescript/announcing-typescript-7-0/

This tag was originally released at: https://github.com/microsoft/typescript-go/releases/tag/typescript%2Fv7.0.2

TypeScript 6.0.3

For release notes, check out the release announcement blog post.

Downloads are available on:

TypeScript 6.0

For release notes, check out the release announcement blog post.

Downloads are available on:

TypeScript 6.0.1 RC

For release notes, check out the release announcement blog post.

Downloads are available on:

TypeScript 6.0 Beta

For release notes, check out the release announcement.

Downloads are available on:

Commits
  • 1e4744d Merge branch 'main' into ts7-release
  • a5a219cmicrosoft/typescript-go#4558
  • ecfe30d Update status localization
  • 5de25b5 Hide executable name in TypeScript status
  • d7ce74a Show bundled TypeScript version for packaged servers
  • 29be66a Correct TS 7 release version to 7.0.2
  • ed2bd1b Merge branch 'main' into ts7-release
  • 8873075 Bump the github-actions group across 1 directory with 3 updates (microsoft/ty...
  • 9427131 Set up stable / nightly extension split, other prep (microsoft/typescript-go#...
  • d4eaca5microsoft/typescript-go#4549
  • Additional commits viewable in compare view
Maintainer changes

This version was pushed to npm by microsoft1es, a new releaser for typescript since your current version.


Updates @temporalio/client from 1.22.0 to 1.23.0

Release notes

Sourced from @​temporalio/client's releases.

v1.23.0

Breaking Changes

  • Major upgrade of protobufjs to v8 and protobufjs-cli to v2.

    Temporal's protobuf messages types generated by protobufjs are exposed as part of our public API surface (mostly through @temporalio/proto and Client's raw gRPC interfaces). This upgrade introduces some minor changes in the protobuf types that are generated for them. The large majority of applications either don't reference those types directly or do not use those types in way that would be affected by these changes.

    You may however want to consider the following user-facing and potentially breaking changes:

    • Applications that use the Protobuf Payload Converters with their own .proto files will need to upgrade their own protobufjs dependency to v8. A root built with v7 still works for binary payloads, but JSON-encoded payloads will fail at runtime with TypeError: type must be a Type.

    • The constructor on generated message types is no longer publicly accessible, which means that new SomeMessage() no longer compiles. Use SomeMessage.create({ ... }) instead. Use of the constructor was never officially supported, and would have previously resulted in a runtime error.

    • The getTypeUrl method on generated message types is no longer declared.

    • A field holding its default value is no longer materialized as an own property on decoded messages. This applies both to JSON-encoded payloads, which are now spec-compliant and omit such fields rather than writing them out, and to binary ones, since protobufjs v8 no longer sets them when decoding. Reading the field still yields its default (msg.someEnum is still 0), but it no longer shows up in Object.keys, object spreads, or a deep equality comparison against a message built with create({ someEnum: 0 }). Unknown fields are still ignored when parsing JSON.

    • protobufjs renamed the generated "properties" interfaces from IFoo to Foo.$Properties, and added a companion Foo.$Shape that narrows oneof fields. We still expose IFoo as an alias of Foo.$Properties preserving backward compatibility with type definitions that rely on the legacy spelling. Note that we may choose to deprecate the legacy spelling at some point in the future to encourage adoption of protobufjs' roadmap.

Added

  • createPayloadValidationError in @temporalio/common creates a non-retryable ApplicationFailure with structured Payload validation details when provided. Passing null or undefined produces a failure without details.
  • Experimental: Nexus operation definitions can provide TypeInfo for Workflow callers and operation handlers. Workflow-backed asynchronous handlers must configure matching TypeInfo on the backing Workflow.
  • Experimental: Standalone Nexus Clients can use operation TypeInfo, including output conversion on detached operation handles.
  • Experimental: Workflow and standalone Activities can use TypeInfo to convert inputs and results, including Local Activities, retained and detached Client handles, and asynchronous completion.
  • Core logs written directly to the console can now use compact, pretty, or newline-delimited JSON output via telemetryOptions.logging.console.format.

... (truncated)

Changelog

Sourced from @​temporalio/client's changelog.

Changelog

[Unreleased]

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.

  • Major upgrade of protobufjs to v8 and protobufjs-cli to v2.

    Temporal's protobuf messages types generated by protobufjs are exposed as part of our public API surface (mostly through @temporalio/proto and Client's raw gRPC interfaces). This upgrade introduces some minor changes in the protobuf types that are generated for them. The large majority of applications either don't reference those types directly or do not use those types in way that would be affected by these changes.

    You may however want to consider the following user-facing and potentially breaking changes:

    • Applications that use the Protobuf Payload Converters with their own .proto files will need to upgrade their own protobufjs dependency to v8. A root built with v7 still works for binary payloads, but JSON-encoded payloads will fail at runtime with TypeError: type must be a Type.

    • The constructor on generated message types is no longer publicly accessible, which means that new SomeMessage() no longer compiles. Use SomeMessage.create({ ... }) instead. Use of the constructor was never officially supported, and would have previously resulted in a runtime error.

    • The getTypeUrl method on generated message types is no longer declared.

    • A field holding its default value is no longer materialized as an own property on decoded messages. This applies both to JSON-encoded payloads, which are now spec-compliant and omit

... (truncated)

Commits
  • 2453adf release v1.23.0 (#2358)
  • be77f14 feat(activity): add TypeInfo support for activities (#2343)
  • 4d5dfc5 feat(nexus): apply TypeInfo in the standalone Client (#2335)
  • 8ae7569 chore(deps): update nexus-rpc to 0.0.3 (#2351)
  • da1c29a feat(workflow): add TypeInfo to Updates (#2333)
  • 3fd5f8f feat(workflow): add TypeInfo to Queries (#2332)
  • 6df7e47 feat(workflow): support TypeInfo for string Signals (#2323)
  • bbeb2b2 chore(proto)!: bump protobufjs to v8 and protobufjs-cli to v2 (#2303)
  • 194e08f feat(workflow): support TypeInfo on Signal definitions (#2318)
  • bbc3196 feat(workflow): support TypeInfo for client-started workflows (#2252)
  • Additional commits viewable in compare view

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

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


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

Updates `typescript` from 5.9.3 to 7.0.2
- [Release notes](https://github.com/microsoft/TypeScript/releases)
- [Commits](microsoft/TypeScript@v5.9.3...v7.0.2)

Updates `@temporalio/client` from 1.22.0 to 1.23.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.23.0/packages/client)

---
updated-dependencies:
- dependency-name: "@temporalio/client"
  dependency-version: 1.23.0
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: development-dependencies
- dependency-name: prettier
  dependency-version: 3.9.6
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: development-dependencies
- dependency-name: typescript
  dependency-version: 7.0.2
  dependency-type: direct:development
  update-type: version-update:semver-major
  dependency-group: development-dependencies
...

Signed-off-by: dependabot[bot] <[email protected]>
@dependabot
dependabot Bot force-pushed the dependabot/npm_and_yarn/development-dependencies-04f31e863b branch from 8963173 to 7994709 Compare September 1, 2026 21:24
@dependabot dependabot Bot changed the title chore(deps-dev): bump the development-dependencies group with 3 updates chore(deps-dev): bump the development-dependencies group across 1 directory with 3 updates Sep 1, 2026
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