Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions .tekton/integration-tests/lightspeed-console-pre-commit.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -118,7 +118,7 @@ spec:
env:
- name: COMMIT_SHA
value: $(params.commit)
image: mcr.microsoft.com/playwright:v1.60.0-noble
image: mcr.microsoft.com/playwright:v1.61.1-noble

Copy link
Copy Markdown

Choose a reason for hiding this comment

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

🎯 Functional Correctness | πŸ”΄ Critical

🧩 Analysis chain

🌐 Web query:

Is Playwright v1.61.1 released? What are the release notes for Playwright v1.61.1 vs v1.61.0?

πŸ’‘ Result:

As of June 23, 2026, Playwright v1.61.1 has not been officially released as a stable version. The latest stable version is v1.61.0, which was released on June 15, 2026 [1][2]. Because v1.61.1 does not exist as a stable release, there are no official release notes available for it. While some beta versions (e.g., 1.61.1-beta-*) have been identified in package registries [3], these are pre-release builds and do not constitute a formal stable release. For reference, the release notes for v1.61.0 include updates such as WebAuthn passkey support and enhancements to Web Storage [4]. You can view the full, official release history and notes for stable versions on the Playwright documentation website [5].

Citations:


Update Playwright image tag to v1.61.0-noble: v1.61.1-noble does not exist as a stable release.

Lines 121 and 205 reference mcr.microsoft.com/playwright:v1.61.1-noble, but v1.61.1 has not been officially released. The latest stable Playwright version is v1.61.0 (released June 15, 2026). Update both occurrences to v1.61.0-noble to use a valid, stable image tag.

πŸ€– Prompt for AI Agents
Verify each finding against current code. Fix only still-valid issues, skip the
rest with a brief reason, keep changes minimal, and validate.

In @.tekton/integration-tests/lightspeed-console-pre-commit.yaml at line 121,
The Playwright image tag v1.61.1-noble does not exist as a valid stable release.
Update both occurrences of the image reference
mcr.microsoft.com/playwright:v1.61.1-noble to
mcr.microsoft.com/playwright:v1.61.0-noble, which is the latest stable
Playwright version. This change needs to be made in two locations within the
file.

resources:
limits:
memory: 4Gi
Expand Down Expand Up @@ -202,7 +202,7 @@ spec:
resources:
limits:
memory: 8Gi
image: mcr.microsoft.com/playwright:v1.60.0-noble
image: mcr.microsoft.com/playwright:v1.61.1-noble
script: |
echo "$KUBECONFIG_VALUE" > /credentials/kubeconfig
echo "COMMIT_SHA: ${COMMIT_SHA}"
Expand Down