Skip to content

chore(deps): lock file maintenance npm dependencies#249

Open
red-hat-konflux[bot] wants to merge 1 commit into
mainfrom
konflux/mintmaker/main/npm-deps
Open

chore(deps): lock file maintenance npm dependencies#249
red-hat-konflux[bot] wants to merge 1 commit into
mainfrom
konflux/mintmaker/main/npm-deps

Conversation

@red-hat-konflux
Copy link
Copy Markdown
Contributor

@red-hat-konflux red-hat-konflux Bot commented Apr 20, 2026

This PR contains the following updates:

Package Type Update Change
lockFileMaintenance All locks refreshed
@hey-api/openapi-ts (source) devDependencies minor ^0.96.0^0.97.0
@playwright/test (source) devDependencies minor 1.59.11.60.0
@tanstack/eslint-plugin-query (source) devDependencies minor 5.99.25.100.11
@types/node (source) devDependencies minor 25.6.025.9.1
@vitest/coverage-v8 (source) devDependencies patch 4.1.44.1.7
globals devDependencies minor 17.5.017.6.0
rollup (source) devDependencies patch 4.60.24.60.4
typescript-eslint (source) devDependencies minor 8.58.28.59.4
tsd-ui dependencies minor v0.1.0v0.2.0

🔡 If you wish to disable git hash updates, add ":disableDigestUpdates" to the extends array in your config.

🔧 This Pull Request updates lock files to use the latest dependency versions.


Release Notes

hey-api/openapi-ts (@​hey-api/openapi-ts)

v0.97.2

@​hey-api/openapi-ts 0.97.2

Updates
  • dsl: cache lazy node result (#​3855)
Plugins
@​hey-api/client-angular
  • preserve query auth when when there are no other query parameters (#​3853)
@​hey-api/client-axios
  • preserve query auth when when there are no other query parameters (#​3853)
@​hey-api/client-fetch
  • preserve query auth when when there are no other query parameters (#​3853)
@​hey-api/client-ky
  • preserve query auth when when there are no other query parameters (#​3853)
@​hey-api/client-next
  • preserve query auth when when there are no other query parameters (#​3853)
@​hey-api/client-nuxt
  • preserve query auth when when there are no other query parameters (#​3853)
@​hey-api/client-ofetch
  • preserve query auth when when there are no other query parameters (#​3853)
@​hey-api/sdk
  • support valibot as response transformer (#​3847)
  • support zod as response transformer (#​3847)
@​tanstack/angular-query-experimental
@​tanstack/preact-query
@​tanstack/react-query
@​tanstack/solid-query
@​tanstack/svelte-query
@​tanstack/vue-query
valibot
  • use enums from TypeScript if available (#​3884)
zod
  • use enums from TypeScript if available (#​3884)

@​hey-api/shared 0.4.4

Updates
  • plugin: add querySymbols() function (#​3884)

v0.97.1

@​hey-api/openapi-ts 0.97.1

Plugins
@​hey-api/transformers
  • use symbols for additionalProperties key variables (#​3841)

@​hey-api/json-schema-ref-parser 1.4.2

Updates
  • yaml: swap yaml back to js-yaml (#​3843)

@​hey-api/shared 0.4.3

No user-facing changes.


v0.97.0

@​hey-api/openapi-ts 0.97.0

⚠️ Breaking

This release has 15 breaking changes. Please review the release notes carefully before upgrading.

Updates
  • cli: print file count and generator speed (#​3828)
  • ⚠️ Breaking: client: resolve runtimeConfigPath relative to the output folder (#​3770)
Changed runtimeConfigPath behavior

This was a known, long-standing issue confusing first-time users. Before, defining client runtimeConfigPath value would paste it verbatim to the generated output. This release changes the behavior to resolve relative to the current working directory the same way output path works.

  • config: remove --apply flag from Biome post-processor commands (#​3812)
Plugins
@​hey-api/client-angular
  • ⚠️ Breaking: request and response objects might be undefined (#​3814)
  • ⚠️ Breaking: respect throwOnError when request validation fails (#​3814)
@​hey-api/client-fetch
  • ⚠️ Breaking: pass previous result to error interceptors (#​3814)
  • ⚠️ Breaking: request and response objects might be undefined (#​3814)
  • ⚠️ Breaking: respect throwOnError when request validation fails (#​3814)
@​hey-api/client-ky
  • ⚠️ Breaking: pass previous result to error interceptors (#​3814)
  • ⚠️ Breaking: request and response objects might be undefined (#​3814)
  • ⚠️ Breaking: respect throwOnError when request validation fails (#​3814)
  • ⚠️ Breaking: respect ky instance defaults (#​3806)
Changed Ky client behavior

The Ky client was updated to be more intuitive. Some Ky options now need to be passed via the kyOptions field and you need to pass undefined to unset an option.

@​hey-api/client-next
  • ⚠️ Breaking: request and response objects might be undefined (#​3814)
  • ⚠️ Breaking: pass previous result to error interceptors (#​3814)
  • ⚠️ Breaking: respect throwOnError when request validation fails (#​3814)
@​hey-api/client-ofetch
  • ⚠️ Breaking: request and response objects might be undefined (#​3814)
  • ⚠️ Breaking: respect throwOnError when request validation fails (#​3814)
@​tanstack/angular-query-experimental
@​tanstack/preact-query
@​tanstack/react-query
@​tanstack/solid-query
@​tanstack/svelte-query
@​tanstack/vue-query
zod
  • fallback .discriminatedUnion to .union if members contain intersection (#​3813)

@​hey-api/codegen-core 0.8.1

Updates
  • planner: speed up identifier conflict detector (#​3823)
  • symbol: speed up symbol registry cache (#​3823)

@​hey-api/shared 0.4.2

Updates
  • graph: speed up graph builder (#​3823)
  • utils: speed up deep equality check (#​3823)

microsoft/playwright (@​playwright/test)

v1.60.0

Compare Source

🌐 HAR recording on Tracing

tracing.startHar() / tracing.stopHar() expose HAR recording as a first-class tracing API, with the same content, mode and urlFilter options as recordHar. The returned Disposable makes it easy to scope a recording with await using:

await using har = await context.tracing.startHar('trace.har');
const page = await context.newPage();
await page.goto('https://playwright.dev');
// HAR is finalized when `har` goes out of scope.

🪝 Drop API

New locator.drop() simulates an external drag-and-drop of files or clipboard-like data onto an element. Playwright dispatches dragenter, dragover, and drop with a synthetic [DataTransfer] in the page context — works cross-browser and is great for testing upload zones:

await page.locator('#dropzone').drop({
  files: { name: 'note.txt', mimeType: 'text/plain', buffer: Buffer.from('hello') },
});

await page.locator('#dropzone').drop({
  data: {
    'text/plain': 'hello world',
    'text/uri-list': 'https://example.com',
  },
});

🎯 Aria snapshots

🛑 test.abort()

New test.abort() aborts the currently running test from a fixture, hook, or route handler with an optional message. Use it when you have detected an unrecoverable misuse and want to fail the test right away:

test('does not publish to the shared page', async ({ page }) => {
  await page.route('**/publish', route => {
    test.abort('Tests must not publish to the shared page. Use the `clone` option.');
    return route.abort();
  });
  // ...
});

New APIs

Browser, Context and Page
Locators and Assertions
Network
  • webSocketRoute.protocols() returns the WebSocket subprotocols requested by the page.
  • New option noDefaults in browserType.connectOverCDP() disables Playwright's default overrides on the default context (download behavior, focus emulation, media emulation), so attaching to a user's daily-driver browser doesn't disturb its state.
Errors and Reporting
Test runner
  • New {testFileBaseName} token in testProject.snapshotPathTemplate — file name without extension.
  • Test runner now errors when a config tries to override a non-option fixture, and rejects workers: 0 or negative values.

🛠️ Other improvements

  • HTML reporter:
    • npx playwright show-report accepts .zip files directly — no need to unzip first.
    • Steps that contain attachments inside nested children show an indicator on the parent step.
    • The repeatEachIndex is shown in the test header when non-zero.
  • Trace Viewer adds a pretty-print toggle for JSON / form request and response bodies in the network details panel.

Breaking Changes ⚠️

  • Removed long-deprecated APIs:
    • Locator.ariaRef() — use the standard locator.ariaSnapshot() pipeline.
    • handle option on BrowserContext.exposeBinding and Page.exposeBinding.
    • logger option on BrowserType.connect and BrowserType.connectOverCDP — use tracing instead.
    • Context options videosPath / videoSize — use recordVideo instead.

Browser Versions

  • Chromium 148.0.7778.96
  • Mozilla Firefox 150.0.2
  • WebKit 26.4

This version was also tested against the following stable channels:

  • Google Chrome 147
  • Microsoft Edge 147
TanStack/query (@​tanstack/eslint-plugin-query)

v5.100.11

v5.100.10

v5.100.9

Compare Source

v5.100.8

Compare Source

v5.100.7

Compare Source

v5.100.6

Compare Source

v5.100.5

Compare Source

v5.100.4

Compare Source

v5.100.3

Compare Source

v5.100.2

v5.100.1

v5.100.0

Compare Source

vitest-dev/vitest (@​vitest/coverage-v8)

v4.1.7

Compare Source

   🐞 Bug Fixes
    View changes on GitHub

v4.1.6

Compare Source

   🐞 Bug Fixes
   🏎 Performance
    View changes on GitHub

v4.1.5

Compare Source

   🚀 Experimental Features
   🐞 Bug Fixes
    View changes on GitHub
sindresorhus/globals (globals)

v17.6.0

Compare Source


rollup/rollup (rollup)

v4.60.4

Compare Source

2026-05-14

Bug Fixes
  • Improve stability of chunk hashes (#​6362)
Pull Requests

v4.60.3

Compare Source

2026-05-04

Bug Fixes
  • Ensure nested "exports" variables are not renamed (#​6360)
Pull Requests
typescript-eslint/typescript-eslint (typescript-eslint)

v8.59.4

Compare Source

🩹 Fixes
  • typescript-eslint: export Compatible* types from typescript-eslint to resolve pnpm TS error (#​12340)
❤️ Thank You

See GitHub Releases for more information.

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

v8.59.3

Compare Source

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

See GitHub Releases for more information.

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

v8.59.2

Compare Source

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

See GitHub Releases for more information.

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

v8.59.1

Compare Source

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

See GitHub Releases for more information.

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

v8.59.0

Compare Source

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

See GitHub Releases for more information.

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

tsd-ui/tsd-ui (tsd-ui)

v0.2.0

Compare Source

What's Changed

Full Changelog: tsd-ui/tsd-ui@v0.1.0...v0.2.0


Configuration

📅 Schedule: Branch creation - Between 12:00 AM and 04:59 AM ( * 0-4 * * * ) (UTC), Automerge - At any time (no schedule defined).

🚦 Automerge: Disabled by config. Please merge this manually once you are satisfied.

Rebasing: Whenever PR is behind base branch, or you tick the rebase/retry checkbox.

👻 Immortal: This PR will be recreated if closed unmerged. Get config help if that's undesired.


  • If you want to rebase/retry this PR, check this box

To execute skipped test pipelines write comment /ok-to-test.


Documentation

Find out how to configure dependency updates in MintMaker documentation or see all available configuration options in Renovate documentation.

@codecov-commenter
Copy link
Copy Markdown

codecov-commenter commented Apr 20, 2026

Codecov Report

✅ All modified and coverable lines are covered by tests.
✅ Project coverage is 80.40%. Comparing base (b65dc6c) to head (9a0a334).

Additional details and impacted files
@@           Coverage Diff           @@
##             main     #249   +/-   ##
=======================================
  Coverage   80.40%   80.40%           
=======================================
  Files         106      106           
  Lines        1638     1638           
  Branches      477      477           
=======================================
  Hits         1317     1317           
  Misses        280      280           
  Partials       41       41           
Flag Coverage Δ
e2e 68.21% <ø> (ø)
unit 62.19% <ø> (ø)

Flags with carried forward coverage won't be shown. Click here to find out more.

☔ View full report in Codecov by Sentry.
📢 Have feedback on the report? Share it here.

🚀 New features to boost your workflow:
  • ❄️ Test Analytics: Detect flaky tests, report on failures, and find test suite problems.
  • 📦 JS Bundle Analysis: Save yourself from yourself by tracking and limiting bundle sizes in JS merges.

@red-hat-konflux red-hat-konflux Bot force-pushed the konflux/mintmaker/main/npm-deps branch from d9ffc32 to b96b09a Compare April 21, 2026 16:36
@red-hat-konflux red-hat-konflux Bot changed the title chore(deps): update dependency typescript-eslint to v8.59.0 chore(deps): update npm dependencies Apr 21, 2026
@red-hat-konflux red-hat-konflux Bot force-pushed the konflux/mintmaker/main/npm-deps branch from b96b09a to 3dbecfc Compare April 23, 2026 15:42
@stanislavsemeniuk stanislavsemeniuk force-pushed the konflux/mintmaker/main/npm-deps branch from 1b2709f to 3dbecfc Compare April 24, 2026 11:31
@red-hat-konflux red-hat-konflux Bot force-pushed the konflux/mintmaker/main/npm-deps branch 8 times, most recently from 0901878 to 1542a04 Compare May 2, 2026 07:22
@red-hat-konflux red-hat-konflux Bot force-pushed the konflux/mintmaker/main/npm-deps branch 6 times, most recently from ee0131f to e38f45b Compare May 8, 2026 02:42
@red-hat-konflux red-hat-konflux Bot force-pushed the konflux/mintmaker/main/npm-deps branch 3 times, most recently from 1f1af48 to ca7c000 Compare May 13, 2026 02:54
@red-hat-konflux red-hat-konflux Bot changed the title chore(deps): update npm dependencies chore(deps): lock file maintenance npm dependencies May 13, 2026
@red-hat-konflux red-hat-konflux Bot changed the title chore(deps): lock file maintenance npm dependencies chore(deps): lock file maintenance npm dependencies - autoclosed May 15, 2026
@red-hat-konflux red-hat-konflux Bot closed this May 15, 2026
@red-hat-konflux red-hat-konflux Bot deleted the konflux/mintmaker/main/npm-deps branch May 15, 2026 10:37
@red-hat-konflux red-hat-konflux Bot changed the title chore(deps): lock file maintenance npm dependencies - autoclosed chore(deps): lock file maintenance npm dependencies May 16, 2026
@red-hat-konflux red-hat-konflux Bot reopened this May 16, 2026
@red-hat-konflux red-hat-konflux Bot force-pushed the konflux/mintmaker/main/npm-deps branch from 2de9bf7 to ca7c000 Compare May 16, 2026 02:24
@red-hat-konflux red-hat-konflux Bot force-pushed the konflux/mintmaker/main/npm-deps branch 4 times, most recently from 06f7f79 to 48a54ef Compare May 21, 2026 02:36
Signed-off-by: red-hat-konflux <126015336+red-hat-konflux[bot]@users.noreply.github.com>
@red-hat-konflux red-hat-konflux Bot force-pushed the konflux/mintmaker/main/npm-deps branch from 48a54ef to 3823283 Compare May 22, 2026 02:29
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Projects

None yet

Development

Successfully merging this pull request may close these issues.

1 participant