Skip to content

Bump the all group with 14 updates - #394

Open
dependabot[bot] wants to merge 1 commit into
mainfrom
dependabot/npm_and_yarn/all-8572106286
Open

Bump the all group with 14 updates#394
dependabot[bot] wants to merge 1 commit into
mainfrom
dependabot/npm_and_yarn/all-8572106286

Conversation

@dependabot

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

Copy link
Copy Markdown
Contributor

Bumps the all group with 14 updates:

Package From To
eslint-plugin-jest 29.15.4 29.16.0
globals 17.7.0 17.8.0
lint-staged 17.0.8 17.2.0
prettier 3.9.4 3.9.6
typescript 5.9.3 7.0.2
@asteasolutions/zod-to-openapi 8.5.0 9.1.0
@types/supertest 7.2.0 7.2.1
ts-jest 29.4.11 29.4.12
tsx 4.22.4 4.23.1
@aws-sdk/client-secrets-manager 3.1078.0 3.1097.0
elastic-apm-node 4.17.0 4.18.0
parse-duration 2.1.6 2.1.8
yargs 17.7.3 18.1.0
@aws-sdk/client-eventbridge 3.1078.0 3.1097.0

Updates eslint-plugin-jest from 29.15.4 to 29.16.0

Release notes

Sourced from eslint-plugin-jest's releases.

v29.16.0

29.16.0 (2026-07-24)

Features

  • valid-expect-with-promise: add checkThenables option for custom promises (#1996) (692c748)

v29.15.5

29.15.5 (2026-07-20)

Bug Fixes

  • allow TypeScript v7 as a peer dependency (#1992) (155ba2e)
Changelog

Sourced from eslint-plugin-jest's changelog.

29.16.0 (2026-07-24)

Features

  • valid-expect-with-promise: add checkThenables option for custom promises (#1996) (692c748)

29.15.5 (2026-07-20)

Bug Fixes

  • allow TypeScript v7 as a peer dependency (#1992) (155ba2e)
Commits
  • 98206fb chore(release): 29.16.0 [skip ci]
  • 692c748 feat(valid-expect-with-promise): add checkThenables option for custom promi...
  • 4d690c3 chore(deps): update yarn to v4.17.1 (#1990)
  • 224b92c chore(deps): update actions/setup-node action to v7 (#1993)
  • 2c5cae0 chore(release): 29.15.5 [skip ci]
  • 155ba2e fix: allow TypeScript v7 as a peer dependency (#1992)
  • 3a1a593 refactor: update prettier (#1989)
  • 82ed0d0 docs(no-restricted-matchers): fix typo (#1987)
  • See full diff in compare view

Updates globals from 17.7.0 to 17.8.0

Release notes

Sourced from globals's releases.

v17.8.0

  • Update globals (2026-07-01) (#347) 7394811

sindresorhus/globals@v17.7.0...v17.8.0

Commits

Updates lint-staged from 17.0.8 to 17.2.0

Release notes

Sourced from lint-staged's releases.

v17.2.0

Minor Changes

  • #1823 ee156cc - The chunking of tasks based on maximum command line argument length has been re-implemented to be more precise. Now the chunking happens based on the final generated command string, instead of just the list of staged files like previously. This benefits mainly Windows platforms and function commands like:

    /** @type {import('lint-staged').Configuration} */
    export default {
      "*.ts": () => "tsc", // Run "tsc" when any TS file is changed (for entire project)
    };

    Where the spawned command is literally "tsc" without any extra arguments. Previously, this was still chunked when a lot of files were staged. Now, it probably won't be chunked because the length of the command is just three letters.

    Also, native JavaScript/Node.js function tasks won't be chunked at all, when previously they were run multiple times when chunked:

    /** @type {import('lint-staged').Configuration} */
    export default {
      "*.js": {
        title: "Log staged JS files to console",
        task: async (files) => {
          console.log("Staged JS files:", files);
        },
      },
    };

v17.1.1

Patch Changes

  • #1820 a626a9f - It's now possible to set --max-arg-length=Infinity to effectively disable chunking of tasks based on the number of staged files. The parsing and validation of the numeric CLI options --max-arg-length and --concurrency has been improved.

v17.1.0

Minor Changes

  • #1816 7568d4f - The console output of lint-staged has been simplified so that there's less interactive spinners and more explicit messages like "Started…" -> "Done!". The primary purpose of this was to remove Listr2, a very large dependency.

    Before:

    Size of node_modules/ after installing: 1561.7 kB with 29 packages.

    Fancy interactive spinners, but output dynamically changes:

    ✔ Backed up original state in git stash (0b191303)
    ✔ Running tasks for staged files...
    ✔ Staging changes from tasks...
    ✔ Cleaning up temporary files...

... (truncated)

Changelog

Sourced from lint-staged's changelog.

17.2.0

Minor Changes

  • #1823 ee156cc - The chunking of tasks based on maximum command line argument length has been re-implemented to be more precise. Now the chunking happens based on the final generated command string, instead of just the list of staged files like previously. This benefits mainly Windows platforms and function commands like:

    /** @type {import('lint-staged').Configuration} */
    export default {
      "*.ts": () => "tsc", // Run "tsc" when any TS file is changed (for entire project)
    };

    Where the spawned command is literally "tsc" without any extra arguments. Previously, this was still chunked when a lot of files were staged. Now, it probably won't be chunked because the length of the command is just three letters.

    Also, native JavaScript/Node.js function tasks won't be chunked at all, when previously they were run multiple times when chunked:

    /** @type {import('lint-staged').Configuration} */
    export default {
      "*.js": {
        title: "Log staged JS files to console",
        task: async (files) => {
          console.log("Staged JS files:", files);
        },
      },
    };

17.1.1

Patch Changes

  • #1820 a626a9f - It's now possible to set --max-arg-length=Infinity to effectively disable chunking of tasks based on the number of staged files. The parsing and validation of the numeric CLI options --max-arg-length and --concurrency has been improved.

17.1.0

Minor Changes

  • #1816 7568d4f - The console output of lint-staged has been simplified so that there's less interactive spinners and more explicit messages like "Started…" -> "Done!". The primary purpose of this was to remove Listr2, a very large dependency.

    Before:

    Size of node_modules/ after installing: 1561.7 kB with 29 packages.

    Fancy interactive spinners, but output dynamically changes:

    ✔ Backed up original state in git stash (0b191303)
    ✔ Running tasks for staged files...

... (truncated)

Commits
  • fb540fb Merge pull request #1824 from lint-staged/changeset-release/main
  • dc0a738 chore(changeset): release
  • 60cbb88 Merge pull request #1823 from lint-staged/reimplement-chunk-files
  • 2354dc4 build(deps): update dependencies
  • 0516e7f docs: adjust debug logs
  • e22f6ed style: run oxfmt on README.md
  • 37e8e1a fix: restore chunking of git add command after running tasks
  • 2c75f1d chore: remove unused file
  • ee156cc feat: add improved lazy-chunking of command strings
  • baa7c98 feat: remove current chunkFiles implementation
  • Additional commits viewable in compare view

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 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 Beta

For release notes, check out the release announcement.

Downloads are available on:

Commits
Maintainer changes

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


Updates @asteasolutions/zod-to-openapi from 8.5.0 to 9.1.0

Release notes

Sourced from @​asteasolutions/zod-to-openapi's releases.

v9.1.0

What's Changed

  • Fix: correct regex for bigint OpenAPI (fixes #381)
  • Fix: correct discriminator mapping for nested discriminated unions (#239)
  • Feat: Added z.guid(), z.cidrv4(), z.cidrv6(), z.base64url(), z.iso.time() and z.iso.duration() string format support

Full Changelog: asteasolutions/zod-to-openapi@v9.0.0...v9.1.0

v9.0.0

What's Changed - Added support for OpenAPI 3.2 (#385)

  • feat: add OpenApiGeneratorV32 for OpenAPI 3.2.0 documents
  • feat: support 3.2 media-type fields — itemSchema, itemEncoding, and prefixEncoding (for streams like text/event-stream, application/jsonl, application/json-seq)
  • feat: support the query HTTP method on routes
  • feat: support optional summary on responses
  • feat: support mediaTypes as a reusable component type via registerComponent
  • feat: allow $ref entries directly in ZodContentObject
  • chore: bump openapi3-ts to ^4.6.0

OpenApiGeneratorV32 reuses the same JSON Schema dialect as 3.1 (2020-12), so schema output is unchanged from OpenApiGeneratorV31. Use it when you need 3.2 document-structure fields.

Breaking changes (TypeScript only)

These are interface-only changes; runtime behavior for existing OpenApiGeneratorV3 / OpenApiGeneratorV31 usage is unchanged.

  • ResponseConfig.description is now optional (required by OpenAPI 3.0/3.1, optional in 3.2). Code that assumes description is always present may need a guard or non-null assertion.
  • ZodMediaTypeObject.schema is now optional, to support itemSchema-only media types.

No other exported API removals or signature changes.

New Contributors

Full Changelog: asteasolutions/zod-to-openapi@v8.5.0...v9.0.0

Commits
  • 9af9229 Release 9.1.0
  • 2493f67 run prettier
  • d9f4bea add more string formats
  • bdc62d0 fix types and add more discriminated union tests
  • f8e3cf3 Merge pull request #369 from dirkluijk/fix/nested-discriminated-unions
  • e73d199 Merge pull request #299 from habibrehmansg/fix/bigint-pattern
  • 4653b6e Release 9.0.0
  • d2ac6bd Merge pull request #388 from bookernath/feat/oas-3.2
  • 2434848 fix: narrow OpenAPI component casts
  • 62dd8fa fix: address OpenAPI 3.2 review feedback
  • Additional commits viewable in compare view

Updates @types/supertest from 7.2.0 to 7.2.1

Commits

Updates ts-jest from 29.4.11 to 29.4.12

Release notes

Sourced from ts-jest's releases.

v29.4.12

Please refer to CHANGELOG.md for details.

Changelog

Sourced from ts-jest's changelog.

29.4.12 (2026-07-22)

Features

  • compiler: support TypeScript 7 projects through compatibility aliases (#5386)
Commits
  • 3f05625 chore(release): 29.4.12
  • df28b27 docs: clarify TypeScript version prerequisites
  • c8a614a docs: mention TypeScript 7 setup in README
  • 06c79d4 fix: address TypeScript 7 review feedback
  • f107460 docs: explain TypeScript 7 compatibility setup
  • 3388227 test(e2e): add TypeScript compatibility matrix
  • 891dc73 fix(compiler): support TypeScript 7 compatibility aliases
  • eb135eb build(deps-dev): bump shell-quote from 1.8.4 to 1.10.0 in /examples
  • d5d80a3 ci: pin google osv scan action at v2.3.5
  • 6bf293f build(deps): bump shell-quote from 1.8.4 to 1.10.0 in /website
  • Additional commits viewable in compare view

Updates tsx from 4.22.4 to 4.23.1

Release notes

Sourced from tsx's releases.

v4.23.1

4.23.1 (2026-07-13)

Bug Fixes

  • support tsImport after global preload (8d4ffc2)
  • watch: avoid clearing piped output (95d0672)
  • watch: treat script and dependency paths literally (79fddde)

Performance Improvements

  • index transform cache lazily (e818ad6)
  • load esbuild lazily in CLI (d067938)
  • map Node TypeScript formats directly (cdcc623)
  • use sync module hooks on Node v22.22.3+ (f8992f1)

This release is also available on:

v4.23.0

4.23.0 (2026-07-03)

Bug Fixes

Features


This release is also available on:

v4.22.5

4.22.5 (2026-07-02)

Bug Fixes

  • isolate hook state per async module.register() registration (a305f36)

This release is also available on:

Commits
  • 79fddde fix(watch): treat script and dependency paths literally
  • e818ad6 perf: index transform cache lazily
  • cdcc623 perf: map Node TypeScript formats directly
  • d067938 perf: load esbuild lazily in CLI
  • 95d0672 fix(watch): avoid clearing piped output
  • 6fd4607 docs: add per-page metadata
  • f4176d8 docs: generate sitemap
  • 8d4ffc2 fix: support tsImport after global preload
  • f0e89b2 docs: document Node's public type-stripping API vs internal loader path
  • f8992f1 perf: use sync module hooks on Node v22.22.3+
  • Additional commits viewable in compare view

Updates @aws-sdk/client-secrets-manager from 3.1078.0 to 3.1097.0

Release notes

Sourced from @​aws-sdk/client-secrets-manager's releases.

v3.1097.0

3.1097.0(2026-07-28)

Chores
Documentation Changes
  • client-connect: Documentation updates for SearchRules, AssociateRoutingProfileQueues, CreateRoutingProfile, AssociateContactWithUser CreateTaskTemplate, and UpdateTaskTemplate (c87ac126)
  • client-datasync: Adds Enhanced mode support for EFS and FSx Lustre locations without an agent, and for HDFS (TDE), Azure Blob, and object storage locations with an agent. HDFS Enhanced mode supports multiple NameNodes for High Availability. Enhanced mode agents can now be deployed on Microsoft Hyper-V. (5ef349f0)
New Features
  • client-trustedadvisor: Adds ListRecommendationsForResource API and four CheckSummary fields (resourceArnQueryable, awsResourceTypes, checkGranularity, recommendationId) to retrieve recommendations for a given resource ARN. (16e67f16)
  • client-rolesanywhere: Increases certificate string length for trust anchor source data to support new adjustable trust anchor limits. (20c913fd)
  • client-bedrock-agentcore-control: AgentCore Identity now supports Private Key JWT client authentication for OAuth 2.0 credential providers. Agents can authenticate to identity provider token endpoints with a JWT client assertion signed by a customer-managed AWS KMS asymmetric key, eliminating the need for client secrets. (fa2b1a0a)

For list of updated packages, view updated-packages.md in assets-3.1097.0.zip

v3.1096.0

3.1096.0(2026-07-27)

New Features
  • clients: update client endpoints as of 2026-07-27 (24e536ee)
  • client-bcm-data-exports: With this release, customers can configure their data exports to deliver CSV reports in ZIP compressed format. (bf6df63c)
  • client-glue: Adds BatchGetDataQualityRulesetEvaluationRun API to retrieve multiple runs in one call, ObservationScope and ObservationMode parameters for anomaly detection, writing evaluation results to Data Catalog tables, and custom log group paths for recommendation runs. (70d8b71e)
  • client-sagemaker: This release adds LoRA adapters, training plans, and new instance types to SageMaker inference optimization. CreateAIRecommendationJob accepts optional AdapterSource and CreateOptimizationJob accepts optional TrainingPlanArns and the ml.g7e and ml.p6-b200 families. (587c6437)
  • client-account: This release adds support for the GetPrimaryEmailUpdateStatus API operation, which allows customers to retrieve the current status of a primary email address update request for an AWS account. The operation returns status information including whether the update is pending, completed, or failed. (d633065c)
  • client-quicksight: Added new Governance fields to Custom Permissions API to support Deny By Default functionality. (730d4716)
  • client-cleanrooms: This release adds support for the CR.8X worker type for SQL (32 vCPU) (4c532188)
  • client-emr-containers: With this launch, you can now set concurrent job limits on a virtual cluster, giving you fine-grained control over how many job runs execute at once and how many can wait in queue. (b6c745a4)
  • client-securityagent: AWS Security Agent adds a new task hours field that reflects the active work done for a task. (6419f793)
  • client-partnercentral-account: Adds optional headquarters location to StartProfileUpdateTask, letting partners record their headquarters as an ISO 3166 country and subdivision code on their profile. When headquarters is provided, both the country and subdivision codes are required. (db69aaa7)
  • client-cleanroomsml: This release adds support for the CR.8X worker type for SQL (32 vCPU) (bcabd86a)
Bug Fixes
  • core/protocols: handle JSON exponent notation in jsonReviver (#8226) (c3b27fd3)

For list of updated packages, view updated-packages.md in assets-3.1096.0.zip

v3.1095.0

... (truncated)

Changelog

Sourced from @​aws-sdk/client-secrets-manager's changelog.

3.1097.0 (2026-07-28)

Note: Version bump only for package @​aws-sdk/client-secrets-manager

3.1096.0 (2026-07-27)

Note: Version bump only for package @​aws-sdk/client-secrets-manager

3.1095.0 (2026-07-24)

Note: Version bump only for package @​aws-sdk/client-secrets-manager

3.1094.0 (2026-07-23)

Note: Version bump only for package @​aws-sdk/client-secrets-manager

3.1093.0 (2026-07-22)

Note: Version bump only for package @​aws-sdk/client-secrets-manager

3.1092.0 (2026-07-21)

Note: Version bump only for package @​aws-sdk/client-secrets-manager

3.1091.0 (2026-07-20)

... (truncated)

Commits

Updates elastic-apm-node from 4.17.0 to 4.18.0

Release notes

Sourced from elastic-apm-node's releases.

v4.18.0

For more information, please see the changelog.

Elastic APM Node.js agent layer ARNs

Region ARN
af-south-1 arn:aws:lambda:af-south-1:267093732750:layer:elastic-apm-node-ver-4-18-0:1
ap-east-1 arn:aws:lambda:ap-east-1:267093732750:layer:elastic-apm-node-ver-4-18-0:1
ap-northeast-1 arn:aws:lambda:ap-northeast-1:267093732750:layer:elastic-apm-node-ver-4-18-0:1
ap-northeast-2 arn:aws:lambda:ap-northeast-2:267093732750:layer:elastic-apm-node-ver-4-18-0:1
ap-northeast-3 arn:aws:lambda:ap-northeast-3:267093732750:layer:elastic-apm-node-ver-4-18-0:1
ap-south-1 arn:aws:lambda:ap-south-1:267093732750:layer:elastic-apm-node-ver-4-18-0:1
ap-southeast-1 arn:aws:lambda:ap-southeast-1:267093732750:layer:elastic-apm-node-ver-4-18-0:1
ap-southeast-2 arn:aws:lambda:ap-southeast-2:267093732750:layer:elastic-apm-node-ver-4-18-0:1
ap-southeast-3 arn:aws:lambda:ap-southeast-3:267093732750:layer:elastic-apm-node-ver-4-18-0:1
ca-central-1 arn:aws:lambda:ca-central-1:267093732750:layer:elastic-apm-node-ver-4-18-0:1
eu-central-1 arn:aws:lambda:eu-central-1:267093732750:layer:elastic-apm-node-ver-4-18-0:1
eu-north-1 arn:aws:lambda:eu-north-1:267093732750:layer:elastic-apm-node-ver-4-18-0:1
eu-south-1 arn:aws:lambda:eu-south-1:267093732750:layer:elastic-apm-node-ver-4-18-0:1
eu-west-1 arn:aws:lambda:eu-west-1:267093732750:layer:elastic-apm-node-ver-4-18-0:1
eu-west-2 arn:aws:lambda:eu-west-2:267093732750:layer:elastic-apm-node-ver-4-18-0:1
eu-west-3 arn:aws:lambda:eu-west-3:267093732750:layer:elastic-apm-node-ver-4-18-0:1
il-central-1 arn:aws:lambda:il-central-1:267093732750:layer:elastic-apm-node-ver-4-18-0:1
sa-east-1 arn:aws:lambda:sa-east-1:267093732750:layer:elastic-apm-node-ver-4-18-0:1
us-east-1 arn:aws:lambda:us-east-1:267093732750:layer:elastic-apm-node-ver-4-18-0:1
us-east-2 arn:aws:lambda:us-east-2:267093732750:layer:elastic-apm-node-ver-4-18-0:1
us-west-1 arn:aws:lambda:us-west-1:267093732750:layer:elastic-apm-node-ver-4-18-0:1
us-west-2 arn:aws:lambda:us-west-2:267093732750:layer:elastic-apm-node-ver-4-18-0:1
Commits
  • 23bafc4 release 4.18.0 (#5137)
  • 43bf894 chore(deps): update OTel bridge API dep to @​opentelemetry/api@​v1.9.1 (#5138)
  • 42bfea2 chore(deps-dev): bump finalhandler from 2.1.0 to 2.1.1 (#4905)
  • 4cc44a9 chore(deps): bump wolfi/chainguard-base from 36a56e3 to 2af89d6 (#4829)
  • 014d545 chore(deps): bump qs, express and body-parser (#5084)
  • 45c2bcd fix(opentelemetry-bridge): update to OTel SDK 2.x, fix `opentelemetryBridgeEn...
  • 884e8a4 chore: update mysql2 (#5136)
  • f2c8285 chore(deps): bump @​protobufjs/utf8 from 1.1.0 to 1.1.1 (#5071)
  • d2c3488 chore(deps): bump the github-actions group with 2 updates (#5135)
  • 42885cd ci: remove obsolete addToProject.yml workflow (#5134)
  • See full diff in compare view

Updates parse-duration from 2.1.6 to 2.1.8

Commits
  • 47af1e9 v2.1.8
  • 522c276 fix: don't leak 'undefined' into the separator class for bare custom locales
  • e18708a perf: cache separator regex, iterate matches with exec — 2× faster parse
  • f0c97db v2.1.7
  • ba6e6ec package-lock: sync 2.1.6
  • 1a6a94e Merge pull request #70 from spokodev/fix/config-keys-return-nan
  • 5425d06 Merge pull request #71 from spokodev/fix/whitespace-between-value-and-unit
  • 15d5570 Return null instead of NaN for unit config key names
  • 7c277fd Allow multiple whitespace characters between a value and its unit
  • 4285dda Merge pull request #69 from naveentehrpariya/fix-leading-whitespace-negative-...
  • Additional commits viewable in compare view

Updates yargs from 17.7.3 to 18.1.0

Changelog

Sourced from yargs's changelog.

18.1.0 (2026-07-26)

Features

  • ignore bun when getting bin name (b77831c)

Bug Fixes

  • lang: 'count' for de locale (#2476) (971e351)
  • local prototype pollution vulnerability in apply-extends (437f3a4)
  • locale: add Georgian translation (#2474) (086aeaa)
Commits

Updates @aws-sdk/client-eventbridge from 3.1078.0 to 3.1097.0

Release notes

Sourced from @​aws-sdk/client-eventbridge's releases.

v3.1097.0

3.1097.0(2026-07-28)

Chores
Documentation Changes
  • client-connect: Documentation updates for SearchRules, AssociateRoutingProfileQueues, CreateRoutingProfile, AssociateContactWithUser CreateTaskTemplate, and UpdateTaskTemplate (c87ac126)
  • client-datasync: Adds Enhanced mode support for EFS and FSx Lustre locations without an agent, and for HDFS (TDE), Azure Blob, and object storage locations with an agent. HDFS Enhanced mode supports multiple NameNodes for High Availability. Enhanced mode agents can now be deployed on Microsoft Hyper-V. (5ef349f0)
New Features
  • client-trustedadvisor: Adds ListRecommendationsForResource API and four CheckSummary fields (resourceArnQueryable, awsResourceTypes, checkGranularity, recommendationId) to retrieve recommendations for a given resource ARN. (16e67f16)
  • client-rolesanywhere: Increases certificate string length for trust anchor source data to support new adjustable trust anchor limits. (20c913fd)
  • client-bedrock-agentcore-control: AgentCore Identity now supports Private Key JWT client authentication for OAuth 2.0 credential providers. Agents can authenticate to identity provider token endpoints with a JWT client assertion signed by a customer-managed AWS KMS asymmetric key, eliminating the need for client secrets. (fa2b1a0a)

For list of updated packages, view updated-packages.md in assets-3.1097.0.zip

v3.1096.0

3.1096.0(2026-07-27)

New Features
  • clients: update client endpoints as of 2026-07-27 (24e536ee)
  • client-bcm-data-exports: With this release, customers can configure their data exports to deliver CSV reports in ZIP compressed format. (bf6df63c)
  • client-glue: Adds BatchGetDataQualityRulesetEvaluationRun API to retrieve multiple runs in one call, ObservationScope and ObservationMode parameters for anomaly detection, writing evaluation results to Data Catalog tables, and custom log group paths for recommendation runs. (70d8b71e)
  • client-sagemaker: This release adds LoRA adapters, training plans, and new instance types to SageMaker inference optimization. CreateAIRecommendationJob accepts optional AdapterSource and CreateOptimizationJob accepts optional TrainingPlanArns and the ml.g7e and ml.p6-b200 families. (587c6437)
  • client-account: This release adds support for the GetPrimaryEmailUpdateStatus API operation, which allows customers to retrieve the current status of a primary email address update request for an AWS account. The operation returns status information including whether the update is pending, comp...

    Description has been truncated

Bumps the all group with 14 updates:

| Package | From | To |
| --- | --- | --- |
| [eslint-plugin-jest](https://github.com/jest-community/eslint-plugin-jest) | `29.15.4` | `29.16.0` |
| [globals](https://github.com/sindresorhus/globals) | `17.7.0` | `17.8.0` |
| [lint-staged](https://github.com/lint-staged/lint-staged) | `17.0.8` | `17.2.0` |
| [prettier](https://github.com/prettier/prettier) | `3.9.4` | `3.9.6` |
| [typescript](https://github.com/microsoft/TypeScript) | `5.9.3` | `7.0.2` |
| [@asteasolutions/zod-to-openapi](https://github.com/asteasolutions/zod-to-openapi) | `8.5.0` | `9.1.0` |
| [@types/supertest](https://github.com/DefinitelyTyped/DefinitelyTyped/tree/HEAD/types/supertest) | `7.2.0` | `7.2.1` |
| [ts-jest](https://github.com/kulshekhar/ts-jest) | `29.4.11` | `29.4.12` |
| [tsx](https://github.com/privatenumber/tsx) | `4.22.4` | `4.23.1` |
| [@aws-sdk/client-secrets-manager](https://github.com/aws/aws-sdk-js-v3/tree/HEAD/clients/client-secrets-manager) | `3.1078.0` | `3.1097.0` |
| [elastic-apm-node](https://github.com/elastic/apm-agent-nodejs) | `4.17.0` | `4.18.0` |
| [parse-duration](https://github.com/jkroso/parse-duration) | `2.1.6` | `2.1.8` |
| [yargs](https://github.com/yargs/yargs) | `17.7.3` | `18.1.0` |
| [@aws-sdk/client-eventbridge](https://github.com/aws/aws-sdk-js-v3/tree/HEAD/clients/client-eventbridge) | `3.1078.0` | `3.1097.0` |


Updates `eslint-plugin-jest` from 29.15.4 to 29.16.0
- [Release notes](https://github.com/jest-community/eslint-plugin-jest/releases)
- [Changelog](https://github.com/jest-community/eslint-plugin-jest/blob/main/CHANGELOG.md)
- [Commits](jest-community/eslint-plugin-jest@v29.15.4...v29.16.0)

Updates `globals` from 17.7.0 to 17.8.0
- [Release notes](https://github.com/sindresorhus/globals/releases)
- [Commits](sindresorhus/globals@v17.7.0...v17.8.0)

Updates `lint-staged` from 17.0.8 to 17.2.0
- [Release notes](https://github.com/lint-staged/lint-staged/releases)
- [Changelog](https://github.com/lint-staged/lint-staged/blob/main/CHANGELOG.md)
- [Commits](lint-staged/lint-staged@v17.0.8...v17.2.0)

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](https://github.com/microsoft/TypeScript/commits)

Updates `@asteasolutions/zod-to-openapi` from 8.5.0 to 9.1.0
- [Release notes](https://github.com/asteasolutions/zod-to-openapi/releases)
- [Commits](asteasolutions/zod-to-openapi@v8.5.0...v9.1.0)

Updates `@types/supertest` from 7.2.0 to 7.2.1
- [Release notes](https://github.com/DefinitelyTyped/DefinitelyTyped/releases)
- [Commits](https://github.com/DefinitelyTyped/DefinitelyTyped/commits/HEAD/types/supertest)

Updates `ts-jest` from 29.4.11 to 29.4.12
- [Release notes](https://github.com/kulshekhar/ts-jest/releases)
- [Changelog](https://github.com/kulshekhar/ts-jest/blob/main/CHANGELOG.md)
- [Commits](kulshekhar/ts-jest@v29.4.11...v29.4.12)

Updates `tsx` from 4.22.4 to 4.23.1
- [Release notes](https://github.com/privatenumber/tsx/releases)
- [Changelog](https://github.com/privatenumber/tsx/blob/master/release.config.cjs)
- [Commits](privatenumber/tsx@v4.22.4...v4.23.1)

Updates `@aws-sdk/client-secrets-manager` from 3.1078.0 to 3.1097.0
- [Release notes](https://github.com/aws/aws-sdk-js-v3/releases)
- [Changelog](https://github.com/aws/aws-sdk-js-v3/blob/main/clients/client-secrets-manager/CHANGELOG.md)
- [Commits](https://github.com/aws/aws-sdk-js-v3/commits/v3.1097.0/clients/client-secrets-manager)

Updates `elastic-apm-node` from 4.17.0 to 4.18.0
- [Release notes](https://github.com/elastic/apm-agent-nodejs/releases)
- [Changelog](https://github.com/elastic/apm-agent-nodejs/blob/main/CHANGELOG.md)
- [Commits](elastic/apm-agent-nodejs@v4.17.0...v4.18.0)

Updates `parse-duration` from 2.1.6 to 2.1.8
- [Release notes](https://github.com/jkroso/parse-duration/releases)
- [Commits](jkroso/parse-duration@v2.1.6...v2.1.8)

Updates `yargs` from 17.7.3 to 18.1.0
- [Release notes](https://github.com/yargs/yargs/releases)
- [Changelog](https://github.com/yargs/yargs/blob/main/CHANGELOG.md)
- [Commits](yargs/yargs@v17.7.3...v18.1.0)

Updates `@aws-sdk/client-eventbridge` from 3.1078.0 to 3.1097.0
- [Release notes](https://github.com/aws/aws-sdk-js-v3/releases)
- [Changelog](https://github.com/aws/aws-sdk-js-v3/blob/main/clients/client-eventbridge/CHANGELOG.md)
- [Commits](https://github.com/aws/aws-sdk-js-v3/commits/v3.1097.0/clients/client-eventbridge)

---
updated-dependencies:
- dependency-name: eslint-plugin-jest
  dependency-version: 29.16.0
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: all
- dependency-name: globals
  dependency-version: 17.8.0
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: all
- dependency-name: lint-staged
  dependency-version: 17.2.0
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: all
- dependency-name: prettier
  dependency-version: 3.9.6
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: all
- dependency-name: typescript
  dependency-version: 7.0.2
  dependency-type: direct:production
  update-type: version-update:semver-major
  dependency-group: all
- dependency-name: "@asteasolutions/zod-to-openapi"
  dependency-version: 9.1.0
  dependency-type: direct:development
  update-type: version-update:semver-major
  dependency-group: all
- dependency-name: "@types/supertest"
  dependency-version: 7.2.1
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: all
- dependency-name: ts-jest
  dependency-version: 29.4.12
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: all
- dependency-name: tsx
  dependency-version: 4.23.1
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: all
- dependency-name: "@aws-sdk/client-secrets-manager"
  dependency-version: 3.1097.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: all
- dependency-name: elastic-apm-node
  dependency-version: 4.18.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: all
- dependency-name: parse-duration
  dependency-version: 2.1.8
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: all
- dependency-name: yargs
  dependency-version: 18.1.0
  dependency-type: direct:development
  update-type: version-update:semver-major
  dependency-group: all
- dependency-name: "@aws-sdk/client-eventbridge"
  dependency-version: 3.1097.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: all
...

Signed-off-by: dependabot[bot] <support@github.com>
@dependabot dependabot Bot added dependencies Pull requests that update a dependency file javascript Pull requests that update javascript code labels Aug 1, 2026
@dependabot
dependabot Bot requested a review from a team as a code owner August 1, 2026 17:47
@dependabot dependabot Bot added dependencies Pull requests that update a dependency file javascript Pull requests that update javascript code labels Aug 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