12 hours ago
bucket4j

8.19.0

What's Changed

New Contributors

Full Changelog: https://github.com/bucket4j/bucket4j/compare/8.18.0...8.19.0

21 hours ago
Activiti
22 hours ago
playwright-java

v1.60.0

🌐 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:

context.tracing().startHar(Paths.get("trace.har"));
Page page = context.newPage();
page.navigate("https://playwright.dev");
context.tracing().stopHar();

🪝 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:

page.locator("#dropzone").drop(new Locator.DropPayload()
    .setFiles(new FilePayload("note.txt", "text/plain", "hello".getBytes(StandardCharsets.UTF_8))));

page.locator("#dropzone").drop(new Locator.DropPayload()
    .setData(Map.of(
        "text/plain", "hello world",
        "text/uri-list", "https://example.com")));

🎯 Aria snapshots

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

🛠️ Other improvements

  • Trace Viewer adds a pretty-print toggle for JSON / form request and response bodies in the network details panel.

Breaking Changes ⚠️

  • Removed long-deprecated handle option on BrowserContext.exposeBinding and Page.exposeBinding.

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
1 days ago
Activiti
2 days ago
selenium

Nightly

Commits

  • 783027f: [build] bump upload and download artifact actions to v7 (Titus Fortner)
  • d5f44d0: [js] update eslint to v10 with fixes (#17482) (Titus Fortner) #17482
  • 9257177: [build] bump rules_ruby version (Titus Fortner)
  • 5a10424: [rb] Update ruby to 3.3.9 (#17484) (Augustin Gottlieb) #17484
  • 8fb57f7: [build] Automated Browser Version Update (#17491) (Selenium CI Bot) #17491
2 days ago
dubbo

dubbo-3.2.20

What's Changed

Full Changelog: https://github.com/apache/dubbo/compare/dubbo-3.2.18...dubbo-3.2.20