Skip to content

Dependencies: Update all non-major dependencies - #209

Open
renovate[bot] wants to merge 1 commit into
mainfrom
renovate/all-non-major-dependencies
Open

Dependencies: Update all non-major dependencies#209
renovate[bot] wants to merge 1 commit into
mainfrom
renovate/all-non-major-dependencies

Conversation

@renovate

@renovate renovate Bot commented Aug 12, 2026

Copy link
Copy Markdown
Contributor

ℹ️ Note

This PR body was truncated due to platform limits.

This PR contains the following updates:

Package Change Age Confidence Type Update Pending
@biomejs/biome (source) 2.5.72.5.8 age confidence devDependencies patch 2.5.10 (+1)
@hookform/resolvers (source) ^5.7.1^5.9.0 age confidence dependencies minor 5.9.1
@module-federation/runtime-tools (source) ^2.8.1^2.8.2 age confidence devDependencies patch
@playwright/test (source) 1.61.11.62.1 age confidence devDependencies minor
@rspack/cli (source) ^2.1.8^2.1.10 age confidence devDependencies patch
@rspack/core (source) ^2.1.8^2.1.10 age confidence devDependencies patch
@tanstack/react-table (source) ^9.0.0^9.1.2 age confidence dependencies patch
@tumaet/prompt-shared-state ^1.1.1^1.2.0 age confidence dependencies minor
@types/node (source) 24.13.224.13.3 age confidence devDependencies patch
chrislusf/seaweedfs 4.384.41 age confidence minor 4.44 (+2)
github.com/sirupsen/logrus v1.9.4v1.10.0 age confidence require minor v1.10.1
github.com/testcontainers/testcontainers-go v0.43.0v0.44.0 age confidence require minor
gitlab.com/gitlab-org/api/client-go/v2 v2.55.1v2.58.0 age confidence require minor v2.58.2 (+1)
go (source) 1.26.51.26.6 age confidence golang patch 1.27.0 (+1)
lucide-react (source) ^1.28.0^1.31.0 age confidence dependencies minor 1.33.0 (+1)
postcss (source) ^8.5.25^8.5.26 age confidence devDependencies patch
postgres (source) 15.18-alpine15.19-alpine age confidence minor
react-hook-form (source) ^7.84.0^7.85.0 age confidence dependencies patch 7.86.0
zustand ^5.0.14^5.0.15 age confidence dependencies patch

Release Notes

biomejs/biome (@​biomejs/biome)

v2.5.8

Compare Source

Patch Changes
react-hook-form/resolvers (@​hookform/resolvers)

v5.9.0

Compare Source

Features

v5.8.0

Compare Source

module-federation/core (@​module-federation/runtime-tools)

v2.8.2

Compare Source

Patch Changes
microsoft/playwright (@​playwright/test)

v1.62.1

Compare Source

v1.62.0

Compare Source

🧱 New component testing model

Component testing moves to a stories and galleries model.
A story wraps your component in one specific scenario — hard-coded props, mock data, providers — and a

gallery page that you serve renders stories on demand. The new fixtures.mount() fixture navigates
to the gallery, mounts a story by id, and returns a Locator scoped to the story's root element:

test('click should expand', async ({ mount }) => {
  const component = await mount('components/Expandable/Stateful');
  await component.getByRole('button').click();
  await expect(component.getByTestId('expanded')).toHaveValue('true');
});

Pass a story type as a template argument to type-check its props, and use update(props) /
unmount() on the returned locator to re-render or tear down within a test.

🛑 Cancel operations with AbortSignal

Most operations and web-first assertions now accept a signal option that takes an
AbortSignal, letting you
cancel long-running actions, navigations, waits, and assertions:

const controller = new AbortController();
setTimeout(() => controller.abort(), 1000);

await page.getByRole('button', { name: 'Submit' }).click({ signal: controller.signal });
await expect(page.getByText('Done')).toBeVisible({ signal: controller.signal });

Providing a signal does not disable the default timeout; pass timeout: 0 to disable it.

🖼️ WebP screenshots

expect(page).toHaveScreenshot() and expect(locator).toHaveScreenshot()
can now store snapshots in the WebP format — just give the snapshot a .webp name:

// Visual comparisons store the golden snapshot as lossless WebP.
await expect(page).toHaveScreenshot('homepage.webp');

// Standalone screenshots can trade quality for size with lossy WebP.
await page.screenshot({ path: 'homepage.webp', quality: 50 });

page.screenshot() and locator.screenshot() also accept webp as a type,
where quality 100 (the default) is lossless and lower values use lossy compression.

🧩 Custom test filtering with Reporter.preprocess()

New reporter.preprocess() hook runs after the configuration is resolved and before
reporter.onBegin(), letting a reporter mark individual tests as skipped, excluded,
fixed, or failing through a TestRun object:

class MyReporter {
  async preprocess({ config, suite, testRun }) {
    for (const test of suite.allTests()) {
      if (shouldSkip(test))
        testRun.skip(test);
    }
  }
}
🔁 Isolated retries

New testConfig.retryStrategy controls when failed tests are retried. The default
'immediate' retries as soon as a worker is free; 'isolated' runs all retries at the end,
one by one in a single worker, to minimize interference with the rest of the suite:

// playwright.config.ts
export default defineConfig({
  retries: 2,
  retryStrategy: 'isolated',
});
New APIs
Browser and Context
  • New option credentials includes the context's virtual WebAuthn Credentials (passkeys) in the storage state, so they can be persisted and re-seeded into later contexts.
Actions
  • New scroll option ("auto" | "none") on actions to opt out of Playwright's automatic scroll-into-view.
Network
Evaluation
Command line & MCP
Reporters
  • The HTML report's Merge files grouping — previously only a UI toggle — can now be enabled from the config with the new mergeFiles reporter option:
// playwright.config.ts
export default defineConfig({
  reporter: [['html', { mergeFiles: true }]],
});
Announcements
  • ⚠️ Debian 11 is not supported anymore.
Browser Versions
  • Chromium 151.0.7922.34
  • Mozilla Firefox 153.0
  • WebKit 26.5

This version was also tested against the following stable channels:

  • Google Chrome 151
  • Microsoft Edge 151
web-infra-dev/rspack (@​rspack/cli)

v2.1.10

Compare Source

[!NOTE]
Removed noisy import.meta warnings

Rspack 2.1.9 introduced warnings for unknown import.meta properties. Because they proved overly noisy in real-world builds, Rspack 2.1.10 removes them to reduce unnecessary diagnostics for custom or runtime-specific extensions. See #​15166 for detail.

What's Changed

New Features 🎉
Bug Fixes 🐞
Refactor 🔨
Document 📖
Other Changes

New Contributors

Full Changelog: web-infra-dev/rspack@v2.1.9...v2.1.10

v2.1.9

Compare Source

What's Changed
New Features 🎉
Performance 🚀
Bug Fixes 🐞
Refactor 🔨
Document 📖
Other Changes
New Contributors

Full Changelog: web-infra-dev/rspack@v2.1.8...v2.1.9

prompt-edu/prompt-shared-state (@​tumaet/prompt-shared-state)

v1.2.0

Compare Source

What's Changed

Full Changelog: prompt-edu/prompt-shared-state@v1.1.1...v1.2.0

seaweedfs/seaweedfs (chrislusf/seaweedfs)

v4.41

Compare Source

What's Changed

Note

PR body was truncated to here.


Configuration

📅 Schedule: (UTC)

  • Branch creation
    • At any time (no schedule defined)
  • Automerge
    • At any time (no schedule defined)

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

Rebasing: Whenever PR becomes conflicted, 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

This PR was generated by Mend Renovate. View the repository job log.

@renovate
renovate Bot force-pushed the renovate/all-non-major-dependencies branch from cd806b8 to e2ace03 Compare August 13, 2026 13:01
@renovate renovate Bot changed the title Dependencies: Update module gitlab.com/gitlab-org/api/client-go/v2 to v2.56.0 Dependencies: Update all non-major dependencies Aug 13, 2026
@renovate
renovate Bot force-pushed the renovate/all-non-major-dependencies branch from e2ace03 to b3464b1 Compare August 14, 2026 20:46
@renovate

renovate Bot commented Aug 14, 2026

Copy link
Copy Markdown
Contributor Author

ℹ️ Artifact update notice

File name: server/go.mod

In order to perform the update(s) described in the table above, Renovate ran the go get command, which resulted in the following additional change(s):

  • 22 additional dependencies were updated

Details:

Package Change
github.com/docker/go-connections v0.6.0 -> v0.7.0
github.com/ebitengine/purego v0.10.0 -> v0.10.1
github.com/felixge/httpsnoop v1.0.4 -> v1.1.0
github.com/go-ole/go-ole v1.2.6 -> v1.3.0
github.com/klauspost/compress v1.18.5 -> v1.18.6
github.com/lufia/plan9stats v0.0.0-20211012122336-39d0f177ccd0 -> v0.0.0-20260330125221-c963978e514e
github.com/moby/moby/api v1.54.2 -> v1.55.0
github.com/moby/moby/client v0.4.0 -> v0.5.0
github.com/moby/sys/sequential v0.6.0 -> v0.7.0
github.com/shirou/gopsutil/v4 v4.26.5 -> v4.26.6
github.com/tklauser/go-sysconf v0.3.16 -> v0.4.0
github.com/tklauser/numcpus v0.11.0 -> v0.12.0
go.opentelemetry.io/contrib/instrumentation/net/http/otelhttp v0.60.0 -> v0.69.0
go.opentelemetry.io/otel v1.41.0 -> v1.44.0
go.opentelemetry.io/otel/metric v1.41.0 -> v1.44.0
go.opentelemetry.io/otel/trace v1.41.0 -> v1.44.0
golang.org/x/crypto v0.52.0 -> v0.54.0
golang.org/x/mod v0.36.0 -> v0.37.0
golang.org/x/net v0.55.0 -> v0.56.0
golang.org/x/sync v0.21.0 -> v0.22.0
golang.org/x/text v0.38.0 -> v0.40.0
golang.org/x/tools v0.45.0 -> v0.47.0

@renovate
renovate Bot force-pushed the renovate/all-non-major-dependencies branch from b3464b1 to 4dcea57 Compare August 15, 2026 01:28
@renovate
renovate Bot force-pushed the renovate/all-non-major-dependencies branch from 4dcea57 to 32e1da6 Compare August 15, 2026 21:00
@renovate
renovate Bot force-pushed the renovate/all-non-major-dependencies branch from 32e1da6 to 56619d0 Compare August 16, 2026 04:34
@renovate
renovate Bot force-pushed the renovate/all-non-major-dependencies branch from 56619d0 to dd2075c Compare August 16, 2026 18:41
@renovate
renovate Bot force-pushed the renovate/all-non-major-dependencies branch from dd2075c to 3e01b53 Compare August 17, 2026 10:42
@renovate
renovate Bot force-pushed the renovate/all-non-major-dependencies branch from 3e01b53 to bce9cfa Compare August 18, 2026 17:33
@renovate
renovate Bot force-pushed the renovate/all-non-major-dependencies branch from bce9cfa to d550c33 Compare August 19, 2026 01:12
@renovate
renovate Bot force-pushed the renovate/all-non-major-dependencies branch from d550c33 to c347db2 Compare August 19, 2026 17:13
@renovate
renovate Bot force-pushed the renovate/all-non-major-dependencies branch 7 times, most recently from f992580 to 666a693 Compare August 22, 2026 21:06
@renovate
renovate Bot force-pushed the renovate/all-non-major-dependencies branch from 666a693 to bb333f3 Compare August 23, 2026 10:29
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

None yet

Projects

None yet

Development

Successfully merging this pull request may close these issues.

0 participants