Skip to content

Commit aed932e

Browse files
committed
☝ tools: Upgrade (#454)
Upgrade tooling according to https://docs.evy.dev/development/upgrade.html Everything went fairly smoothly this time. There were only a few new golangci-lint warning, due to the new linter recvcheck. I had to manually fix those. Playwright update for Docker worked out of the box, the local playwright version is sadly still broken. This merges the following commits: * hermit: Upgrade tools * go: Update dependencies * node: Upgrade tools * playwright: Upgrade .golangci.yaml | 2 - .hermit/node/package-lock.json | 148 +++++++++--------- .hermit/node/package.json | 2 +- Makefile | 2 +- ...base-13.22.0.pkg => .firebase-13.25.0.pkg} | 0 bin/{.gh-2.58.0.pkg => .gh-2.61.0.pkg} | 0 bin/{.go-1.23.2.pkg => .go-1.23.3.pkg} | 0 ...t-1.61.0.pkg => .golangci-lint-1.62.0.pkg} | 0 ...leaser-2.3.2.pkg => .goreleaser-2.4.4.pkg} | 0 bin/{.node-22.9.0.pkg => .node-22.11.0.pkg} | 0 bin/{.shfmt-3.9.0.pkg => .shfmt-3.10.0.pkg} | 0 ...{.tinygo-0.33.0.pkg => .tinygo-0.34.0.pkg} | 0 bin/corepack | 2 +- bin/firebase | 2 +- bin/gh | 2 +- bin/go | 2 +- bin/gofmt | 2 +- bin/golangci-lint | 2 +- bin/goreleaser | 2 +- bin/node | 2 +- bin/npm | 2 +- bin/npx | 2 +- bin/shfmt | 2 +- bin/tinygo | 2 +- e2e/package-lock.json | 26 +-- e2e/package.json | 4 +- go.mod | 6 +- go.sum | 16 +- learn/go.mod | 8 +- learn/go.sum | 16 +- learn/pkg/learn/frontmatter.go | 16 +- pkg/evaluator/evaluator.go | 2 +- 32 files changed, 132 insertions(+), 140 deletions(-) Pull-request: #454
2 parents 6ab3696 + 4d4ca8f commit aed932e

32 files changed

+132
-140
lines changed

.golangci.yaml

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,6 @@ linters:
2525
- depguard
2626
- dupword
2727
- dupl
28-
- execinquery
2928
- exhaustive
3029
- exhaustruct
3130
- exportloopref
@@ -36,7 +35,6 @@ linters:
3635
- goconst
3736
- gocyclo
3837
- godox
39-
- gomnd
4038
- gomoddirectives
4139
- inamedparam
4240
- interfacebloat

.hermit/node/package-lock.json

Lines changed: 71 additions & 77 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

.hermit/node/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"devDependencies": {
33
"prettier": "^3.3.3",
4-
"stylelint": "^16.9.0",
4+
"stylelint": "^16.10.0",
55
"stylelint-config-standard": "^36.0.1"
66
}
77
}

Makefile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -232,7 +232,7 @@ define PLAYWRIGHT_CMD_LOCAL
232232
npx --prefix e2e playwright test --config e2e $(PLAYWRIGHT_ARGS)
233233
endef
234234

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

0 commit comments

Comments
 (0)