An open index of dependabot pull requests across open source projects.

Bump the npm-version-updates group across 8 directories with 8 updates

Closed
Number: #3062
Type: Pull Request
State: Closed
Author: dependabot[bot] dependabot[bot]
Association: Contributor
Comments: 3
Created: June 02, 2025 at 10:36 AM UTC
(6 months ago)
Updated: June 02, 2025 at 03:01 PM UTC
(6 months ago)
Closed: June 02, 2025 at 03:01 PM UTC
(6 months ago)
Time to Close: about 4 hours
Labels:
dependencies javascript
Description:

Bumps the npm-version-updates group with 5 updates in the / directory:

Package From To
@kubernetes/client-node 0.22.3 1.3.0
@types/node 22.10.2 22.15.29
prettier 3.4.2 3.5.3
ts-jest 29.2.5 29.3.4
typescript 5.7.2 5.8.3

Bumps the npm-version-updates group with 2 updates in the /auto-discovery/kubernetes/pull-secret-extractor/integration-test directory: @kubernetes/client-node and @types/node.
Bumps the npm-version-updates group with 1 update in the /bin directory: semver.
Bumps the npm-version-updates group with 1 update in the /hook-sdk/nodejs directory: @kubernetes/client-node.
Bumps the npm-version-updates group with 4 updates in the /hooks directory: @kubernetes/client-node, @types/node, ts-jest and typescript.
Bumps the npm-version-updates group with 2 updates in the /parser-sdk/nodejs directory: @kubernetes/client-node and axios.
Bumps the npm-version-updates group with 4 updates in the /scanners directory: @types/node, prettier, ts-jest and typescript.
Bumps the npm-version-updates group with 4 updates in the /tests/integration directory: @types/node, prettier, ts-jest and typescript.

Updates @kubernetes/client-node from 0.22.3 to 1.3.0

Release notes

Sourced from @​kubernetes/client-node's releases.

1.3.0

What's Changed

Full Changelog: https://github.com/kubernetes-client/javascript/compare/1.2.0...1.3.0

1.2.0

What's Changed

New Contributors

Full Changelog: https://github.com/kubernetes-client/javascript/compare/1.1.2...1.2.0

1.1.2

What's Changed between 1.0.0 and 1.1.2

... (truncated)

Commits
  • 940af26 Merge pull request #2457 from kubernetes-client/dependabot/npm_and_yarn/main/...
  • 5dad6d3 Merge pull request #2456 from kubernetes-client/dependabot/npm_and_yarn/main/...
  • 55e1a8a build(deps-dev): bump typescript-eslint from 8.32.1 to 8.33.0
  • adf25e2 build(deps): bump @​types/node from 22.15.21 to 22.15.23
  • 2ed3379 Merge pull request #2454 from cjihrig/bump
  • 4846def update package versions in preparation for release
  • f809c36 Merge pull request #2452 from kubernetes-client/dependabot/npm_and_yarn/main/...
  • 52c1acf build(deps-dev): bump typedoc from 0.28.4 to 0.28.5
  • 1fcb3a6 Merge pull request #2447 from kubernetes-client/dependabot/npm_and_yarn/main/...
  • affa86a build(deps): bump tar-fs from 3.0.8 to 3.0.9
  • Additional commits viewable in compare view

Updates @types/node from 22.10.2 to 22.15.29

Commits

Updates prettier from 3.4.2 to 3.5.3

Release notes

Sourced from prettier's releases.

3.5.3

🔗 Changelog

3.5.2

🔗 Changelog

3.5.1

🔗 Changelog

3.5.0

diff

🔗 Release note

Changelog

Sourced from prettier's changelog.

3.5.3

diff

Flow: Fix missing parentheses in ConditionalTypeAnnotation (#17196 by @​fisker)

// Input
type T<U> = 'a' | ('b' extends U ? 'c' : empty);
type T<U> = 'a' & ('b' extends U ? 'c' : empty);

// Prettier 3.5.2
type T<U> = "a" | "b" extends U ? "c" : empty;
type T<U> = "a" & "b" extends U ? "c" : empty;

// Prettier 3.5.3
type T<U> = "a" | ("b" extends U ? "c" : empty);
type T<U> = "a" & ("b" extends U ? "c" : empty);

3.5.2

diff

Remove module-sync condition (#17156 by @​fisker)

In Prettier 3.5.0, we added module-sync condition to package.json, so that require("prettier") can use ESM version, but turns out it doesn't work if CommonJS and ESM plugins both imports builtin plugins. To solve this problem, we decide simply remove the module-sync condition, so require("prettier") will still use the CommonJS version, we'll revisit until require(ESM) feature is more stable.

3.5.1

diff

Fix CLI crash when cache for old version exists (#17100 by @​sosukesuzuki)

Prettier 3.5 uses a different cache format than previous versions, Prettier 3.5.0 crashes when reading existing cache file, Prettier 3.5.1 fixed the problem.

Support dockercompose and github-actions-workflow in VSCode (#17101 by @​remcohaszing)

Prettier now supports the dockercompose and github-actions-workflow languages in Visual Studio Code.

3.5.0

diff

🔗 Release Notes

Commits

Updates ts-jest from 29.2.5 to 29.3.4

Release notes

Sourced from ts-jest's releases.

v29.3.4

Please refer to CHANGELOG.md for details.

v29.3.3

Please refer to CHANGELOG.md for details.

v29.3.2

Please refer to CHANGELOG.md for details.

v29.3.1

Please refer to CHANGELOG.md for details.

v29.3.0

Please refer to CHANGELOG.md for details.

v29.2.6

Please refer to CHANGELOG.md for details.

Changelog

Sourced from ts-jest's changelog.

29.3.4 (2025-05-16)

Bug Fixes

  • fix: fix TsJestTransformerOptions type (3b11e29), closes #4247
  • fix(cli): fix wrong path for preset creator fns (249eb2c)
  • fix(config): disable rewriteRelativeImportExtensions always (9b1f472), closes #4855

29.3.3 (2025-05-14)

Bug Fixes

  • fix(cli): init config with preset creator functions (cdd3039), closes #4840
  • fix(config): disable isolatedDeclarations (5d6b35f), closes #4847

29.3.2 (2025-04-12)

Bug Fixes

  • fix: transpile js files from node_modules whenever Jest asks (968370e), closes #4637

29.3.1 (2025-03-31)

Bug Fixes

  • fix: allow isolatedModules mode to have ts.Program under Node16/Next (25157eb)
  • fix: improve message for isolatedModules of ts-jest config (547eb6f)

29.3.0 (2025-03-21)

Features

  • feat: support hybrid module values for isolatedModules: true (f372121)

Bug Fixes

... (truncated)

Commits
  • ee81cc6 chore(release): 29.3.4
  • 9b1f472 fix(config): disable rewriteRelativeImportExtensions always
  • fce110f build: bump typescript to latest
  • 3b11e29 fix: fix TsJestTransformerOptions type
  • 5637805 build(deps): Update dependency memfs to ^4.17.2
  • 249eb2c fix(cli): fix wrong path for preset creator fns
  • 0dc22ca build(deps): Update dependency eslint-plugin-jsdoc to ^50.6.17
  • 6705713 build(deps): Update dependency ts-jest to ^29.3.3
  • 2709d7b build(deps): Update dependency eslint-plugin-jsdoc to ^50.6.16
  • 16cade9 chore(release): 29.3.3
  • Additional commits viewable in compare view

Updates typescript from 5.7.2 to 5.8.3

Release notes

Sourced from typescript's releases.

TypeScript 5.8.3

For release notes, check out the release announcement.

Downloads are available on:

TypeScript 5.8

For release notes, check out the release announcement.

Downloads are available on:

TypeScript 5.8 RC

For release notes, check out the release announcement.

Downloads are available on:

TypeScript 5.8 Beta

For release notes, check out the release announcement.

Downloads are available on:

TypeScript 5.7.3

For release notes, check out the release announcement.

Downloads are available on npm

Commits
  • 83dc0bb Convert release publishing inputs into parameters (#61523)
  • ba663f6 Exclude completions of binding pattern variable initializers (#52723)
  • 7205eda Bump github/codeql-action from 3.28.12 to 3.28.13 in the github-actions group...
  • 89c572c Fixed a symbol display crash on expando members write locations (#55478)
  • 7b26d2e Fix incorrect name in new release pipeline (#61514)
  • c7a559e Add new release publisher yaml (#61491)
  • 29e6d66 Fix lib.includes('dom') check in containerSeemsToBeEmptyDomElement (#61481)
  • 19b7772 Bump the github-actions group with 4 updates (#61474)
  • 4dc677b Fix errors on type assertions in erasableSyntaxOnly (#61452)
  • ee3dd72 fix(60908): Unexpected "'Type' is declared but its value is never read." erro...
  • Additional commits viewable in compare view

Updates ws from 8.18.0 to 8.18.2

Release notes

Sourced from ws's releases.

8.18.2

Bug fixes

Fixed an issue that, during message decompression when the maximum size was exceeded, led to the emission of an inaccurate error and closure of the connection with an improper close code (#2285).

8.18.1

Bug fixes

  • The length of the UNIX domain socket paths in the tests has been shortened to make them work when run via CITGM (021f7b8b).
Commits

Updates @kubernetes/client-node from 0.22.3 to 1.3.0

Release notes

Sourced from @​kubernetes/client-node's releases.

1.3.0

What's Changed

Full Changelog: https://github.com/kubernetes-client/javascript/compare/1.2.0...1.3.0

1.2.0

What's Changed

New Contributors

Full Changelog: https://github.com/kubernetes-client/javascript/compare/1.1.2...1.2.0

1.1.2

What's Changed between 1.0.0 and 1.1.2

... (truncated)

Commits
  • 940af26 Merge pull request #2457 from kubernetes-client/dependabot/npm_and_yarn/main/...
  • 5dad6d3 Merge pull request #2456 from kubernetes-client/dependabot/npm_and_yarn/main/...
  • 55e1a8a build(deps-dev): bump typescript-eslint from 8.32.1 to 8.33.0
  • adf25e2 build(deps): bump @​types/node from 22.15.21 to 22.15.23
  • 2ed3379 Merge pull request #2454 from cjihrig/bump
  • 4846def update package versions in preparation for release
  • f809c36 Merge pull request #2452 from kubernetes-client/dependabot/npm_and_yarn/main/...
  • 52c1acf build(deps-dev): bump typedoc from 0.28.4 to 0.28.5
  • 1fcb3a6 Merge pull request #2447 from kubernetes-client/dependabot/npm_and_yarn/main/...
  • affa86a build(deps): bump tar-fs from 3.0.8 to 3.0.9
  • Additional commits viewable in compare view

Updates @types/node from 22.10.1 to 22.15.29

Commits

Updates ws from 8.18.0 to 8.18.2

Release notes

Sourced from ws's releases.

8.18.2

Bug fixes

Fixed an issue that, during message decompression when the maximum size was exceeded, led to the emission of an inaccurate error and closure of the connection with an improper close code (#2285).

8.18.1

Bug fixes

  • The length of the UNIX domain socket paths in the tests has been shortened to make them work when run via CITGM (021f7b8b).
Commits

Updates semver from 7.6.3 to 7.7.2

Release notes

Sourced from semver's releases.

v7.7.2

7.7.2 (2025-05-12)

Bug Fixes

Chores

v7.7.1

7.7.1 (2025-02-03)

Bug Fixes

v7.7.0

7.7.0 (2025-01-29)

Features

Bug Fixes

Documentation

Chores

Changelog

Sourced from semver's changelog.

7.7.2 (2025-05-12)

Bug Fixes

Chores

7.7.1 (2025-02-03)

Bug Fixes

7.7.0 (2025-01-29)

Features

Bug Fixes

Documentation

Chores

Commits
Pull Request Statistics
Commits:
0
Files Changed:
0
Additions:
+0
Deletions:
-0
Package Dependencies
Ecosystem:
npm
Version Change:
22.10.2 → 22.15.29
Update Type:
Minor
Package:
prettier
Ecosystem:
npm
Version Change:
3.4.2 → 3.5.3
Update Type:
Minor
Package:
typescript
Ecosystem:
npm
Version Change:
5.7.2 → 5.8.3
Update Type:
Minor
Package:
ts-jest
Ecosystem:
npm
Version Change:
29.2.5 → 29.3.4
Update Type:
Minor
Ecosystem:
npm
Version Change:
0.22.3 → 1.3.0
Update Type:
Major
Technical Details
ID: 832335
UUID: 3109591259
Node ID: PR_kwDOBM-Q_c6YmI1I
Host: GitHub
Repository: secureCodeBox/secureCodeBox