Skip to content
Draft
Show file tree
Hide file tree
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 .devcontainer/docker-compose.yaml
Original file line number Diff line number Diff line change
@@ -1,12 +1,12 @@
services:
playwright:
image: mcr.microsoft.com/playwright:v1.52.0-noble
image: mcr.microsoft.com/playwright:v1.56.0-noble
init: true
network_mode: service:workspace
command:
- /bin/sh
- -c
- npx -y playwright@1.52.0 run-server --port 9001 --host 0.0.0.0
- npx -y playwright@1.56.0 run-server --port 9001 --host 0.0.0.0

valkey:
image: valkey/valkey:8
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/go.yml
Original file line number Diff line number Diff line change
Expand Up @@ -38,16 +38,16 @@ jobs:
with:
path: |
~/.cache/ms-playwright
key: ${{ runner.os }}-playwright-${{ hashFiles('**/go.sum') }}
key: ${{ runner.os }}-playwright-1.56.0

- name: install node deps
run: |
npm ci

- name: install playwright browsers
run: |
npx --no-install playwright@1.52.0 install --with-deps
npx --no-install playwright@1.52.0 run-server --port 9001 &
npx playwright@1.56.0 install --with-deps
npx playwright@1.56.0 run-server --port 9001 &

- name: Build
run: npm run build
Expand Down
1 change: 1 addition & 0 deletions docs/docs/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
- Allow Renovate as an OCI registry client.
- Properly handle 4in6 addresses so that IP matching works with those addresses.
- Add support to simple Valkey/Redis cluster mode
- Bump the Playwright dev dependency to 1.56.0

## v1.23.1: Lyse Hext - Echo 1

Expand Down
2 changes: 1 addition & 1 deletion internal/test/playwright_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -99,7 +99,7 @@ const (
actionChallenge action = "CHALLENGE"

placeholderIP = "fd11:5ee:bad:c0de::"
playwrightVersion = "1.52.0"
playwrightVersion = "1.56.0"
)

type action string
Expand Down
16 changes: 8 additions & 8 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 2 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@
"cssnano": "^7.1.2",
"cssnano-preset-advanced": "^7.0.10",
"esbuild": "^0.25.12",
"playwright": "^1.52.0",
"playwright": "^1.56.0",
"postcss-cli": "^11.0.1",
"postcss-import": "^16.1.1",
"postcss-import-url": "^7.2.0",
Expand All @@ -31,4 +31,4 @@
"@aws-crypto/sha256-js": "^5.2.0",
"preact": "^10.27.2"
}
}
}
Loading