Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

build(deps): bump the dependencies group across 1 directory with 13 updates #2959

Closed

Conversation

dependabot[bot]
Copy link
Contributor

@dependabot dependabot bot commented on behalf of github Dec 30, 2024

Bumps the dependencies group with 13 updates in the / directory:

Package From To
eslint-plugin-jest 28.9.0 28.10.0
globals 15.13.0 15.14.0
typescript-eslint 8.18.0 8.18.2
zx 8.2.4 8.3.0
@aws-sdk/client-route-53 3.712.0 3.716.0
webpack-cli 5.1.4 6.0.1
commander 12.1.0 13.0.0
ts-essentials 10.0.3 10.0.4
bufferutil 4.0.8 4.0.9
@inquirer/prompts 7.2.0 7.2.1
@inquirer/testing 2.1.38 2.1.39
readable-stream 4.5.2 4.6.0
pino 9.5.0 9.6.0

Updates eslint-plugin-jest from 28.9.0 to 28.10.0

Release notes

Sourced from eslint-plugin-jest's releases.

v28.10.0

28.10.0 (2024-12-19)

Features

  • unbound-method: ignore functions passed to jest.mocked (#1681) (d868636)
Changelog

Sourced from eslint-plugin-jest's changelog.

28.10.0 (2024-12-19)

Features

  • unbound-method: ignore functions passed to jest.mocked (#1681) (d868636)
Commits

Updates globals from 15.13.0 to 15.14.0

Release notes

Sourced from globals's releases.

v15.14.0

  • Add vitest globals (#274) 06a5723

sindresorhus/globals@v15.13.0...v15.14.0

Commits

Updates typescript-eslint from 8.18.0 to 8.18.2

Release notes

Sourced from typescript-eslint's releases.

v8.18.2

8.18.2 (2024-12-23)

🩹 Fixes

  • eslint-plugin: [no-deprecated] not reporting usages of deprecated declared constants as object value (#10498)
  • eslint-plugin: [prefer-reduce-type-parameter] don't report cases in which the fix results in a type error (#10494)
  • eslint-plugin: [no-unnecessary-condition] don't flag values of an unconstrained or valid type parameter (#10473)
  • eslint-plugin: [consistent-indexed-object-style] use a suggestion over an auto-fix if can't reliably determine that produced index signature is valid (#10490)
  • eslint-plugin: [no-unsafe-type-assertion] fix for unsafe assertion to a constrained type parameter (#10461)
  • eslint-plugin: [no-unnecessary-type-arguments] handle type/value context (#10503)
  • eslint-plugin: [consistent-type-assertions] allow default assertionStyle option (#10512)
  • eslint-plugin: [no-unnecessary-condition] handle noUncheckedIndexedAccess true (#10514)
  • typescript-eslint: export types so that declarations can be named for dts files (#10513)

❤️ Thank You

You can read about our versioning strategy and releases on our website.

v8.18.1

8.18.1 (2024-12-16)

🩹 Fixes

  • eslint-plugin: [no-unnecessary-template-expression] don't report when an expression includes comment (#10444)
  • eslint-plugin: handle string like index type (#10460)
  • eslint-plugin: [no-unnecessary-boolean-literal-compare] flag values of a type parameter with boolean type constraints (#10474)
  • eslint-plugin: use consistent naming for asserting types and casting values (#10472)
  • eslint-plugin: [no-unnecessary-condition] better message when comparing between literal types (#10454)
  • scope-manager: visit params decorator before nest scope (#10475)

❤️ Thank You

You can read about our versioning strategy and releases on our website.

Changelog

Sourced from typescript-eslint's changelog.

8.18.2 (2024-12-23)

🩹 Fixes

  • typescript-eslint: export types so that declarations can be named for dts files (#10513)

❤️ Thank You

You can read about our versioning strategy and releases on our website.

8.18.1 (2024-12-16)

This was a version bump only for typescript-eslint to align it with other projects, there were no code changes.

You can read about our versioning strategy and releases on our website.

Commits
  • 157b781 chore(release): publish 8.18.2
  • d24a828 fix(typescript-eslint): export types so that declarations can be named for dt...
  • b2ce158 chore(release): publish 8.18.1
  • See full diff in compare view

Updates zx from 8.2.4 to 8.3.0

Release notes

Sourced from zx's releases.

8.3.0 – Pipes of Steel

A few weeks ago zx took a part in OSS Library Night 🎉
Many thanks to the organizers and contributors who have boosted the project with their pull requests!

Today we are releasing the zx with a huge bunch of new features and improvements.

Features

API

  • Implemented [Symbol.asyncIterator] API for ProcessPromise #984 #998 #1000 Now you can iterate over the process output using for await loop from any point of the process execution.
const process = $`sleep 0.1; echo Chunk1; sleep 0.1; echo Chunk2; sleep 0.2; echo Chunk3; sleep 0.1; echo Chunk4;`
const chunks = []
await new Promise((resolve) => setTimeout(resolve, 250))
for await (const chunk of process) {
chunks.push(chunk)
}
chunks.length //  4
chunks[0]     // 'Chunk1'
chunks[3]     // 'Chunk4'

  • zx version is available via JS API #986
import { version } from 'zx'
const [major] = (version || '').split('.').map(Number)
if (major < 6)
  throw new Error('zx >= 6 is required')

Pipes

  • Enabled stream picking for pipe() #1023
const p = $`echo foo >&2; echo bar`
const o1 = (await p.pipe.stderr`cat`).toString()
const o2 = (await p.pipe.stdout`cat`).toString()
assert.equal(o1, 'foo\n')  // <- piped from stderr
assert.equal(o2, 'bar\n')  // <- stdout

  • Added signal handling on piping #992
const ac = new AbortController()
</tr></table> 

... (truncated)

Commits

Updates @aws-sdk/client-route-53 from 3.712.0 to 3.716.0

Release notes

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

v3.716.0

3.716.0(2024-12-19)

Chores
  • codegen: update for operationContextParams fix (#6751) (8af7a02f)
New Features
  • clients: update client endpoints as of 2024-12-19 (989582c8)
  • client-ssm-sap: AWS Systems Manager for SAP added support for registration and discovery of distributed ABAP applications (f8fee42a)
  • client-mediaconvert: This release adds support for inserting timecode tracks into MP4 container outputs. (1f67291c)
  • client-medialive: MediaLive is releasing ListVersions api (c6e1d2f3)
  • client-appstream: Added support for Rocky Linux 8 on Amazon AppStream 2.0 (41e19ac1)
  • client-workspaces: Added AWS Global Accelerator (AGA) support for WorkSpaces Personal. (19c98c2c)
  • client-qconnect: Amazon Q in Connect enables agents to ask Q for assistance in multiple languages and Q will provide answers and recommended step-by-step guides in those languages. Qs default language is English (United States) and you can switch this by setting the locale configuration on the AI Agent. (81aee610)

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

v3.715.0

3.715.0(2024-12-18)

Documentation Changes
  • client-mwaa: Added support for Apache Airflow version 2.10.3 to MWAA. (a4722467)
  • credential-providers: fix link casing (#6746) (7fee20d7)
New Features
  • clients: update client endpoints as of 2024-12-18 (e919afa9)
  • client-iot: Release connectivity status query API which is a dedicated high throughput(TPS) API to query a specific device's most recent connectivity state and metadata. (87094038)
  • client-amplify: Added WAF Configuration to Amplify Apps (be98eba2)
  • client-connect: This release adds support for the UpdateParticipantAuthentication API used for customer authentication within Amazon Connect chats. (4e1a96b2)
  • client-quicksight: Add support for PerformanceConfiguration attribute to Dataset entity. Allow PerformanceConfiguration specification in CreateDataset and UpdateDataset APIs. (2c03dc78)
  • client-transfer: Added AS2 agreement configurations to control filename preservation and message signing enforcement. Added AS2 connector configuration to preserve content type from S3 objects. (c7611a42)
  • client-connectparticipant: This release adds support for the GetAuthenticationUrl and CancelParticipantAuthentication APIs used for customer authentication within Amazon Connect chats. There are also minor updates to the GetAttachment API. (16bb7dba)
  • client-budgets: Releasing minor partition endpoint updates (1f0b1f32)
  • client-datasync: AWS DataSync introduces the ability to update attributes for in-cloud locations. (1c7cb389)
  • client-resiliencehub: AWS Resilience Hub now automatically detects already configured CloudWatch alarms and FIS experiments as part of the assessment process and returns the discovered resources in the corresponding list API responses. It also allows you to include or exclude test recommendations for an AppComponent. (20148895)
Bug Fixes
  • middleware-flexible-checksums: skip checksum computation if provided (#6745) (e1678f80)

... (truncated)

Changelog

Sourced from @​aws-sdk/client-route-53's changelog.

3.716.0 (2024-12-19)

Note: Version bump only for package @​aws-sdk/client-route-53

3.714.0 (2024-12-17)

Features

3.713.0 (2024-12-16)

Note: Version bump only for package @​aws-sdk/client-route-53

Commits

Updates webpack-cli from 5.1.4 to 6.0.1

Release notes

Sourced from webpack-cli's releases.

v6.0.1

6.0.1 (2024-12-20)

Bug Fixes

v6.0.0

6.0.0 (2024-12-19)

BREAKING CHANGES

  • the minimum required Node.js version is 18.12.0
  • removed init, loader and plugin commands in favor create-webpack-app
  • dropped support for webpack-dev-server@v4
  • minimum supported webpack version is 5.82.0

Bug Fixes

Features

  • output pnpm version with info/version command (#3906) (38f3c6f)
Changelog

Sourced from webpack-cli's changelog.

6.0.1 (2024-12-20)

Bug Fixes

6.0.0 (2024-12-19)

BREAKING CHANGES

  • the minimum required Node.js version is 18.12.0
  • removed init, loader and plugin commands in favor create-webpack-app
  • dropped support for webpack-dev-server@v4
  • minimum supported webpack version is 5.82.0

Bug Fixes

Features

  • output pnpm version with info/version command (#3906) (38f3c6f)
Commits

Updates commander from 12.1.0 to 13.0.0

Release notes

Sourced from commander's releases.

v13.0.0

Added

  • support multiple calls to .parse() with default settings (#2299)
  • add .saveStateBeforeParse() and .restoreStateBeforeParse() for use by subclasses (#2299)
  • style routines like styleTitle() to add color to help using .configureHelp() or Help subclass (#2251)
  • color related support in .configureOutput() for getOutHasColors(), getErrHasColors(), and stripColor() (#2251)
  • Help property for minWidthToWrap (#2251)
  • Help methods for displayWidth(), boxWrap(), preformatted() et al (#2251)

Changed

  • Breaking: excess command-arguments cause an error by default, see migration tips (#2223)
  • Breaking: throw during Option construction for unsupported option flags, like multiple characters after single - (#2270)
  • Breaking: throw on multiple calls to .parse() if storeOptionsAsProperties: true (#2299)
  • TypeScript: include implicit this in parameters for action handler callback (#2197)

Deleted

  • Breaking: Help.wrap() refactored into formatItem() and boxWrap() (#2251)

Migration Tips

Excess command-arguments

It is now an error for the user to specify more command-arguments than are expected. (allowExcessArguments is now false by default.)

Old code:

program.option('-p, --port <number>', 'port number');
program.action((options) => {
  console.log(program.args);
});

Now shows an error:

$ node example.js a b c
error: too many arguments. Expected 0 arguments but got 3.

You can declare the expected arguments. The help will then be more accurate too. Note that declaring new arguments will change what is passed to the action handler.

program.option('-p, --port <number>', 'port number');
program.argument('[args...]', 'remote command and arguments'); // expecting zero or more arguments
program.action((args, options) => {
</tr></table> 

... (truncated)

Changelog

Sourced from commander's changelog.

[13.0.0] (2024-12-30)

Added

  • support multiple calls to .parse() with default settings (#2299)
  • add .saveStateBeforeParse() and .restoreStateBeforeParse() for use by subclasses (#2299)
  • style routines like styleTitle() to add color to help using .configureHelp() or Help subclass (#2251)
  • color related support in .configureOutput() for getOutHasColors(), getErrHasColors(), and stripColor() (#2251)
  • Help property for minWidthToWrap (#2251)
  • Help methods for displayWidth(), boxWrap(), preformatted() et al (#2251)

Changed

  • Breaking: excess command-arguments cause an error by default, see migration tips (#2223)
  • Breaking: throw during Option construction for unsupported option flags, like multiple characters after single - (#2270)
  • Breaking: throw on multiple calls to .parse() if storeOptionsAsProperties: true (#2299)
  • TypeScript: include implicit this in parameters for action handler callback (#2197)

Deleted

  • Breaking: Help.wrap() refactored into formatItem() and boxWrap() (#2251)

Migration Tips

Excess command-arguments

It is now an error for the user to specify more command-arguments than are expected. (allowExcessArguments is now false by default.)

Old code:

program.option('-p, --port <number>', 'port number');
program.action((options) => {
  console.log(program.args);
});

Now shows an error:

$ node example.js a b c
error: too many arguments. Expected 0 arguments but got 3.

You can declare the expected arguments. The help will then be more accurate too. Note that declaring new arguments will change what is passed to the action handler.

program.option('-p, --port <number>', 'port number');
program.argument('[args...]', 'remote command and arguments'); // expecting zero or more arguments
</tr></table> 

... (truncated)

Commits

Updates ts-essentials from 10.0.3 to 10.0.4

Release notes

Sourced from ts-essentials's releases.

v10.0.4

Patch Changes

  • ecb490b: Head<Type> no longer includes an extraneous | undefined when instantiated with a union of empty and non-empty tuple, like [] | [1, 2]
  • 859d85c: MarkOptional<Type, Keys> is now assignable to Partial<Type>
  • dda4def: Tail<Type> now works with readonly arrays and also correctly returns the tail for tuples with all optional members. Additionally, it now acts as an identity for non-tuple arrays, i.e., it returns Type when Type is a non-tuple array, such as string[], number[], etc.
  • d02bf22: Fix MarkRequired<Type, Keys> & MarkWritable<Type, Keys> types when Keys is any
  • d3b56d7: Prettify the output of Mark-* and Merge types
Changelog

Sourced from ts-essentials's changelog.

10.0.4

Patch Changes

  • ecb490b: Head<Type> no longer includes an extraneous | undefined when instantiated with a union of empty and non-empty tuple, like [] | [1, 2]
  • 859d85c: MarkOptional<Type, Keys> is now assignable to Partial<Type>
  • dda4def: Tail<Type> now works with readonly arrays and also correctly returns the tail for tuples with all optional members. Additionally, it now acts as an identity for non-tuple arrays, i.e., it returns Type when Type is a non-tuple array, such as string[], number[], etc.
  • d02bf22: Fix MarkRequired<Type, Keys> & MarkWritable<Type, Keys> types when Keys is any
  • d3b56d7: Prettify the output of Mark-* and Merge types
Commits
  • 4233566 Version Packages (#419)
  • d02bf22 Fix: MarkRequired and MarkWritable types when Keys is any (#421)
  • d3b56d7 Feat: Prettify output of Mark-* & Merge types (#422)
  • ecb490b Fix: Head type with union of empty and non-empty tuple (#425)
  • dda4def Fix: Tail with optional, readonly and non-tuple arrays (#424)
  • 859d85c Fix: Make MarkOptional\<Type, Keys extends keyof Type> assignable to `Partia...
  • dcf6179 docs: move som-sm to active contributors
  • 2547305 Fix: Failing test:fix script (#417)
  • bc00a4f test: tsconfig.test.json exclude
  • b34cb49 build: fix 2 versions of prettier in yarn.lock
  • Additional commits viewable in compare view

Updates bufferutil from 4.0.8 to 4.0.9

Commits
  • 35e2eb6 [dist] 4.0.9
  • c13d588 [pkg] Update mocha to version 11.0.1
  • f086bf2 [pkg] Update node-gyp to version 11.0.0
  • c9428e6 [build] Fix invalid escape sequence
  • 362f677 [ci] Update softprops/action-gh-release action to v2
  • 1bc6647 [doc] Add a note about parameter validation
  • 9023b6b [ci] Do not test on node 16
  • ca5cc0d [ci] Test on node 22
  • 853a377 [pkg] Update prebuildify to version 6.0.0
  • 331e278 [ci] Use unique artifact name
  • Additional commits viewable in compare view

Updates @inquirer/prompts from 7.2.0 to 7.2.1

Commits
  • 7613d74 Publish
  • 5480174 Chore(*): Bump dev dependencies (#1633)
  • 5001eaa inquirer(feat): re-add checkbox prompt support for default prop
  • e228166 Chore(deps-dev): Bump eslint from 9.16.0 to 9.17.0
  • eb2c4e4 Chore(deps-dev): Bump @​types/node from 22.10.1 to 22.10.2
  • 126bc1e Chore(deps-dev): Bump @​arethetypeswrong/cli from 0.17.0 to 0.17.1
  • ce6ab1d Chore(deps-dev): Bump @​eslint/js from 9.16.0 to 9.17.0
  • 5d40bc0 Chore(deps-dev): Bump typescript-eslint from 8.17.0 to 8.18.0
  • 4a826a7 Chore(deps): Bump nanoid from 3.3.7 to 3.3.8 in the npm_and_yarn group
  • aa09ad4 Chore(deps-dev): Bump typescript-eslint from 8.16.0 to 8.17.0
  • Additional commits viewable in compare view

Updates @inquirer/testing from 2.1.38 to 2.1.39

Commits
  • 7613d74 Publish
  • 5480174 Chore(*): Bump dev dependencies (#1633)
  • 5001eaa inquirer(feat): re-add checkbox prompt support for default prop
  • e228166 Chore(deps-dev): Bump eslint from 9.16.0 to 9.17.0
  • eb2c4e4 Chore(deps-dev): Bump @​types/node from 22.10.1 to 22.10.2
  • 126bc1e Chore(deps-dev): Bump @​arethetypeswrong/cli from 0.17.0 to 0.17.1
  • ce6ab1d Chore(deps-dev): Bump @​eslint/js from 9.16.0 to 9.17.0
  • 5d40bc0 Chore(deps-dev): Bump typescript-eslint from 8.17.0 to 8.18.0
  • 4a826a7 Chore(deps): Bump nanoid from 3.3.7 to 3.3.8 in the npm_and_yarn group
  • aa09ad4 Chore(deps-dev): Bump typescript-eslint from 8.16.0 to 8.17.0
  • Additional commits viewable in compare view

Updates readable-stream from 4.5.2 to 4.6.0

Release notes

Sourced from readable-stream's releases.

v4.6.0

What's Changed

New Contributors

Full Changelog: nodejs/readable-stream@v4.5.2...v4.6.0

Commits

Updates pino from 9.5.0 to 9.6.0

Release notes

Sourced from pino's releases.

v9.6.0

What's Changed

New Contributors

Full Changelog: pinojs/pino@v9.5.0...v9.6.0

Commits

Dependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually by commenting @dependabot rebase.

[//]: # (dependab...

Description has been truncated

…pdates

Bumps the dependencies group with 13 updates in the / directory:

| Package | From | To |
| --- | --- | --- |
| [eslint-plugin-jest](https://github.com/jest-community/eslint-plugin-jest) | `28.9.0` | `28.10.0` |
| [globals](https://github.com/sindresorhus/globals) | `15.13.0` | `15.14.0` |
| [typescript-eslint](https://github.com/typescript-eslint/typescript-eslint/tree/HEAD/packages/typescript-eslint) | `8.18.0` | `8.18.2` |
| [zx](https://github.com/google/zx) | `8.2.4` | `8.3.0` |
| [@aws-sdk/client-route-53](https://github.com/aws/aws-sdk-js-v3/tree/HEAD/clients/client-route-53) | `3.712.0` | `3.716.0` |
| [webpack-cli](https://github.com/webpack/webpack-cli) | `5.1.4` | `6.0.1` |
| [commander](https://github.com/tj/commander.js) | `12.1.0` | `13.0.0` |
| [ts-essentials](https://github.com/ts-essentials/ts-essentials) | `10.0.3` | `10.0.4` |
| [bufferutil](https://github.com/websockets/bufferutil) | `4.0.8` | `4.0.9` |
| [@inquirer/prompts](https://github.com/SBoudrias/Inquirer.js) | `7.2.0` | `7.2.1` |
| [@inquirer/testing](https://github.com/SBoudrias/Inquirer.js) | `2.1.38` | `2.1.39` |
| [readable-stream](https://github.com/nodejs/readable-stream) | `4.5.2` | `4.6.0` |
| [pino](https://github.com/pinojs/pino) | `9.5.0` | `9.6.0` |



Updates `eslint-plugin-jest` from 28.9.0 to 28.10.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@v28.9.0...v28.10.0)

Updates `globals` from 15.13.0 to 15.14.0
- [Release notes](https://github.com/sindresorhus/globals/releases)
- [Commits](sindresorhus/globals@v15.13.0...v15.14.0)

Updates `typescript-eslint` from 8.18.0 to 8.18.2
- [Release notes](https://github.com/typescript-eslint/typescript-eslint/releases)
- [Changelog](https://github.com/typescript-eslint/typescript-eslint/blob/main/packages/typescript-eslint/CHANGELOG.md)
- [Commits](https://github.com/typescript-eslint/typescript-eslint/commits/v8.18.2/packages/typescript-eslint)

Updates `zx` from 8.2.4 to 8.3.0
- [Release notes](https://github.com/google/zx/releases)
- [Commits](google/zx@8.2.4...8.3.0)

Updates `@aws-sdk/client-route-53` from 3.712.0 to 3.716.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-route-53/CHANGELOG.md)
- [Commits](https://github.com/aws/aws-sdk-js-v3/commits/v3.716.0/clients/client-route-53)

Updates `webpack-cli` from 5.1.4 to 6.0.1
- [Release notes](https://github.com/webpack/webpack-cli/releases)
- [Changelog](https://github.com/webpack/webpack-cli/blob/master/CHANGELOG.md)
- [Commits](https://github.com/webpack/webpack-cli/compare/[email protected]@6.0.1)

Updates `commander` from 12.1.0 to 13.0.0
- [Release notes](https://github.com/tj/commander.js/releases)
- [Changelog](https://github.com/tj/commander.js/blob/master/CHANGELOG.md)
- [Commits](tj/commander.js@v12.1.0...v13.0.0)

Updates `ts-essentials` from 10.0.3 to 10.0.4
- [Release notes](https://github.com/ts-essentials/ts-essentials/releases)
- [Changelog](https://github.com/ts-essentials/ts-essentials/blob/master/CHANGELOG.md)
- [Commits](ts-essentials/ts-essentials@v10.0.3...v10.0.4)

Updates `bufferutil` from 4.0.8 to 4.0.9
- [Release notes](https://github.com/websockets/bufferutil/releases)
- [Commits](websockets/bufferutil@v4.0.8...v4.0.9)

Updates `@inquirer/prompts` from 7.2.0 to 7.2.1
- [Release notes](https://github.com/SBoudrias/Inquirer.js/releases)
- [Commits](https://github.com/SBoudrias/Inquirer.js/compare/@inquirer/[email protected]...@inquirer/[email protected])

Updates `@inquirer/testing` from 2.1.38 to 2.1.39
- [Release notes](https://github.com/SBoudrias/Inquirer.js/releases)
- [Commits](https://github.com/SBoudrias/Inquirer.js/compare/@inquirer/[email protected]...@inquirer/[email protected])

Updates `readable-stream` from 4.5.2 to 4.6.0
- [Release notes](https://github.com/nodejs/readable-stream/releases)
- [Commits](nodejs/readable-stream@v4.5.2...v4.6.0)

Updates `pino` from 9.5.0 to 9.6.0
- [Release notes](https://github.com/pinojs/pino/releases)
- [Commits](pinojs/pino@v9.5.0...v9.6.0)

---
updated-dependencies:
- dependency-name: eslint-plugin-jest
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: dependencies
- dependency-name: globals
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: dependencies
- dependency-name: typescript-eslint
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: dependencies
- dependency-name: zx
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: dependencies
- dependency-name: "@aws-sdk/client-route-53"
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: dependencies
- dependency-name: webpack-cli
  dependency-type: direct:development
  update-type: version-update:semver-major
  dependency-group: dependencies
- dependency-name: commander
  dependency-type: direct:production
  update-type: version-update:semver-major
  dependency-group: dependencies
- dependency-name: ts-essentials
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: dependencies
- dependency-name: bufferutil
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: dependencies
- dependency-name: "@inquirer/prompts"
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: dependencies
- dependency-name: "@inquirer/testing"
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: dependencies
- dependency-name: readable-stream
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: dependencies
- dependency-name: pino
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: dependencies
...

Signed-off-by: dependabot[bot] <[email protected]>
@dependabot dependabot bot added dependencies Pull requests that update a dependency file javascript Pull requests that update Javascript code labels Dec 30, 2024
@dependabot dependabot bot requested a review from harbu December 30, 2024 12:27
@github-actions github-actions bot added network Related to Network Package cli-tools Related to CLI Tools Package dht Related to DHT package utils proto-rpc sdk node labels Dec 30, 2024
Copy link
Contributor Author

dependabot bot commented on behalf of github Jan 6, 2025

Looks like these dependencies are updatable in another way, so this is no longer needed.

@dependabot dependabot bot closed this Jan 6, 2025
@dependabot dependabot bot deleted the dependabot/npm_and_yarn/dependencies-c2e98f2a2a branch January 6, 2025 13:19
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
cli-tools Related to CLI Tools Package dependencies Pull requests that update a dependency file dht Related to DHT package javascript Pull requests that update Javascript code network Related to Network Package node proto-rpc sdk utils
Projects
None yet
Development

Successfully merging this pull request may close these issues.

0 participants