Skip to content

Conversation

@dependabot
Copy link
Contributor

@dependabot dependabot bot commented on behalf of github Jun 29, 2025

Bumps go.k6.io/k6 from 1.0.0 to 1.1.0.

Release notes

Sourced from go.k6.io/k6's releases.

v1.1.0

k6 v1.1.0 is here 🎉! This release includes:

  • New count, nth, first, and last methods for the browser module's Locator API #4797, #4825
  • The k6/experimental/webcrypto module has been removed as its functionality is available globally.
  • Group results in the full end-of-test summary are now sorted as in code and properly indented.

Breaking changes

As per our stability guarantees, breaking changes across minor releases are allowed only for experimental features.

Breaking changes for experimental modules

Remove experimental k6/experimental/webcrypto module #4851

The WebCrypto API has been available globally since v1.0.0-rc1 (or v0.58.0), and now the experimental import (k6/experimental/webcrypto) is no longer available.

The required change for users is to remove the import; the rest of the code should work.

New features

New count method for the browser module's Locator API #4797

The new locator.Count method returns the number of elements matching the locator. Unlike other Locator API methods, locator.Count returns the result immediately and doesn't wait for the elements to be visible.

import { expect } from "https://jslib.k6.io/k6-testing/0.4.0/index.js";
import { browser } from 'k6/browser'
export const options = {
scenarios: {
ui: {
executor: 'shared-iterations',
options: {
browser: {
type: 'chromium',
},
},
},
},
}
export default async function () {
const page = await browser.newPage()
await page.goto('https://quickpizza.grafana.com/login')
expect(await page.locator('input').count()).toEqual(3);
await page.close();
</tr></table>

... (truncated)

Commits
  • 0e3fb95 Release notes for v1.1.0 (#4860)
  • c43d730 Bump k6 version to v1.1.0 (#4874)
  • ac98ba8 Disable usage reporting in CI jobs
  • 76e2bca Revert "Update sobek and goja respectfully"
  • bc29957 Disable ocsp test so that GHA CI works
  • b480971 Update the console.log to actually work
  • 2e5aeff Update alpine in Dockerfile to 3.22
  • 34c2dc9 Update sobek and goja respectfully
  • 5cf234a Prevent k6 packager s3cmd to set ACLs
  • 245f589 Remove k6 packager docker compose version
  • Additional commits viewable in compare view

Dependabot compatibility score

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.


Dependabot commands and options

You can trigger Dependabot actions by commenting on this PR:

  • @dependabot rebase will rebase this PR
  • @dependabot recreate will recreate this PR, overwriting any edits that have been made to it
  • @dependabot merge will merge this PR after your CI passes on it
  • @dependabot squash and merge will squash and merge this PR after your CI passes on it
  • @dependabot cancel merge will cancel a previously requested merge and block automerging
  • @dependabot reopen will reopen this PR if it is closed
  • @dependabot close will close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually
  • @dependabot show <dependency name> ignore conditions will show all of the ignore conditions of the specified dependency
  • @dependabot ignore this major version will close this PR and stop Dependabot creating any more for this major version (unless you reopen the PR or upgrade to it yourself)
  • @dependabot ignore this minor version will close this PR and stop Dependabot creating any more for this minor version (unless you reopen the PR or upgrade to it yourself)
  • @dependabot ignore this dependency will close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself)

Bumps [go.k6.io/k6](https://github.com/grafana/k6) from 1.0.0 to 1.1.0.
- [Release notes](https://github.com/grafana/k6/releases)
- [Commits](grafana/k6@v1.0.0...v1.1.0)

---
updated-dependencies:
- dependency-name: go.k6.io/k6
  dependency-version: 1.1.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
...

Signed-off-by: dependabot[bot] <[email protected]>
@dependabot dependabot bot added dependencies Pull requests that update a dependency file go Pull requests that update Go code labels Jun 29, 2025
@dependabot dependabot bot requested a review from a team as a code owner June 29, 2025 20:54
@dependabot dependabot bot requested review from szkiba and removed request for a team June 29, 2025 20:54
@dependabot dependabot bot added dependencies Pull requests that update a dependency file go Pull requests that update Go code labels Jun 29, 2025
Copy link
Contributor

@szkiba szkiba left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

LGTM

@szkiba szkiba merged commit 95e9512 into main Jul 4, 2025
31 checks passed
@szkiba szkiba deleted the dependabot/go_modules/go.k6.io/k6-1.1.0 branch July 4, 2025 13:38
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

dependencies Pull requests that update a dependency file go Pull requests that update Go code

Projects

None yet

Development

Successfully merging this pull request may close these issues.

1 participant