Skip to content

Commit a6cb7fb

Browse files
committed
☝ tools: Upgrade tools and dependencies (#447)
Upgrade tools and dependencies according to docs. - Upgrade Hermitised Tools: automation only - Upgrade Go Dependencies: automation only - Upgrade Frontend Tools: nothing to be done - Test External URLs: make URL grep command more robust - Upgrade Playwright: this one was painful For the playwright upgrade we also upgraded Ubuntu version from jammy to noble. Many snapshot PNGs had to be updated as well with `make snaps USE_DOCKER=1`. Changes are barely visible, they seem to relate to pixel level changes. I tried really hard to get the local runs to work on my Ubuntu 24.04 (noble) system, but something with Webkit is not working as in Docker locally. I have abandoned trying to fix this for now. Docker and CI end-to-end tests seem to work reliably. This merges the following commits: * hermit: Upgrade tools * go: Update dependencies * make: Improve test-urls target * playwright: Upgrade Makefile | 4 +-- ...base-13.17.0.pkg => .firebase-13.22.0.pkg} | 0 bin/{.gh-2.56.0.pkg => .gh-2.58.0.pkg} | 0 bin/{.go-1.23.1.pkg => .go-1.23.2.pkg} | 0 ...leaser-2.3.1.pkg => .goreleaser-2.3.2.pkg} | 0 bin/{.node-22.8.0.pkg => .node-22.9.0.pkg} | 0 bin/corepack | 2 +- bin/firebase | 2 +- bin/gh | 2 +- bin/go | 2 +- bin/gofmt | 2 +- bin/goreleaser | 2 +- bin/node | 2 +- bin/npm | 2 +- bin/npx | 2 +- .../comment-hover-chromium-docker.png | Bin 93302 -> 93311 bytes .../comment-page-chromium-docker.png | Bin 72179 -> 72187 bytes .../dialog-chromium-docker.png | Bin 57631 -> 57654 bytes .../dialog-theme-chromium-docker.png | Bin 62197 -> 62238 bytes .../expand-0-chromium-docker.png | Bin 93735 -> 93739 bytes .../expand-1-chromium-docker.png | Bin 93303 -> 93320 bytes .../no-dialog-chromium-docker.png | Bin 74294 -> 74311 bytes .../printf-chromium-docker.png | Bin 90526 -> 90835 bytes .../printf-theme-chromium-docker.png | Bin 86661 -> 86813 bytes .../start-chromium-docker.png | Bin 74294 -> 74311 bytes .../start-theme-chromium-docker.png | Bin 71717 -> 71730 bytes e2e/package-lock.json | 26 +++++++++--------- e2e/package.json | 4 +-- .../modal-chromium-docker.png | Bin 64267 -> 64241 bytes .../landing-bottom-chromium-docker.png | Bin 22952 -> 22952 bytes .../landing-top-chromium-docker.png | Bin 27627 -> 24830 bytes go.mod | 4 +-- go.sum | 8 +++--- learn/go.mod | 6 ++-- learn/go.sum | 8 +++--- 35 files changed, 39 insertions(+), 39 deletions(-) Link: https://docs.evy.dev/development/upgrade.html Pull-request: #447
2 parents 56fc99c + d058796 commit a6cb7fb

35 files changed

+39
-39
lines changed

Makefile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -215,7 +215,7 @@ clean::
215215
$(foreach file,$(LAB_MDFILES),rm -f "$(file:md=htmlf)"$(nl))
216216

217217
test-urls:
218-
! grep -rIioEh 'https?://[^[:space:]]+' --include "*.md" --exclude-dir "node_modules" --exclude-dir "bin" | \
218+
! grep -rIioEh 'https?://[^[:space:]"]+' --include "*.md" --exclude-dir "node_modules" --exclude-dir "bin" | \
219219
sort -u | \
220220
xargs -n1 curl -sL -o /dev/null -w "%{http_code} %{url}\n" | \
221221
grep -v '^200 '
@@ -231,7 +231,7 @@ define PLAYWRIGHT_CMD_LOCAL
231231
npx --prefix e2e playwright test --config e2e $(PLAYWRIGHT_ARGS)
232232
endef
233233

234-
PLAYWRIGHT_OCI_IMAGE = mcr.microsoft.com/playwright:v1.47.1-jammy
234+
PLAYWRIGHT_OCI_IMAGE = mcr.microsoft.com/playwright:v1.48.0-jammy
235235
PLAYWRIGHT_CMD_DOCKER = docker run --rm \
236236
--volume $$(pwd):/work/ -w /work/ \
237237
--user $(shell id -u):$(shell id -g) \
File renamed without changes.
File renamed without changes.

bin/corepack

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
.node-22.8.0.pkg
1+
.node-22.9.0.pkg

bin/firebase

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
.firebase-13.17.0.pkg
1+
.firebase-13.22.0.pkg

bin/gh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
.gh-2.56.0.pkg
1+
.gh-2.58.0.pkg

bin/go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
.go-1.23.1.pkg
1+
.go-1.23.2.pkg

0 commit comments

Comments
 (0)