Skip to content

Commit

Permalink
☝ all: Upgrade tools (#410)
Browse files Browse the repository at this point in the history
The usual, but this time documented:

- upgrade hermitised tools
- upgrade go deps (more effort this time)
- upgrade npm deps
- upgrade playwright (yay, easy this time)
- add documentation on upgrading

This merges the following commits:
* all: Upgrade hermitised tools
* all: Upgrade go dependencies
* all: Upgrade npm packages of tools used
* docs: Add upgrade guide to developer docs
* docs: Add upgrade guide to developer docs (generated)

     .goreleaser.yaml                              |   1 +
     .hermit/node/package-lock.json                | 145 ++++++-----
     .hermit/node/package.json                     |   6 +-
     Makefile                                      |   2 +-
     ...base-13.10.2.pkg => .firebase-13.15.1.pkg} |   0
     bin/{.gh-2.50.0.pkg => .gh-2.54.0.pkg}        |   0
     bin/{.go-1.22.3.pkg => .go-1.22.6.pkg}        |   0
     ...t-1.59.0.pkg => .golangci-lint-1.59.1.pkg} |   0
     ...easer-1.26.2.pkg => .goreleaser-2.1.0.pkg} |   0
     bin/{.node-21.7.3.pkg => .node-22.6.0.pkg}    |   0
     ...{.tinygo-0.31.2.pkg => .tinygo-0.32.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/tinygo                                    |   2 +-
     build-tools/md/main.go                        |   4 +-
     docs/development/upgrade.md                   | 132 ++++++++++
     e2e/package-lock.json                         |  36 +--
     e2e/package.json                              |   4 +-
     frontend/docs/development/upgrade.html        | 232 ++++++++++++++++++
     frontend/docs/development/upgrade.htmlf       | 136 ++++++++++
     go.mod                                        |  10 +-
     go.sum                                        |  12 +-
     learn/go.mod                                  |  12 +-
     learn/go.sum                                  |  12 +-
     learn/pkg/learn/course.go                     |   2 +-
     learn/pkg/learn/markdown.go                   |  10 +-
     learn/pkg/learn/question.go                   |   2 +-
     learn/pkg/learn/renderer.go                   |  15 +-
     learn/pkg/learn/unit.go                       |   2 +-
     pkg/md/md.go                                  |   9 +-
     pkg/md/undecorate.go                          |  54 ++++
     pkg/md/undecorate_test.go                     |  88 +++++++
     40 files changed, 812 insertions(+), 136 deletions(-)

Pull-request: #410
  • Loading branch information
juliaogris committed Aug 22, 2024
2 parents e075db8 + d1146cc commit 1435df9
Show file tree
Hide file tree
Showing 40 changed files with 812 additions and 136 deletions.
1 change: 1 addition & 0 deletions .goreleaser.yaml
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
version: 2
builds:
- tags:
- full
Expand Down
145 changes: 89 additions & 56 deletions .hermit/node/package-lock.json

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

6 changes: 3 additions & 3 deletions .hermit/node/package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"devDependencies": {
"prettier": "^3.3.0",
"stylelint": "^16.6.1",
"stylelint-config-standard": "^36.0.0"
"prettier": "^3.3.3",
"stylelint": "^16.8.1",
"stylelint-config-standard": "^36.0.1"
}
}
2 changes: 1 addition & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -209,7 +209,7 @@ define PLAYWRIGHT_CMD_LOCAL
npx --prefix e2e playwright test --config e2e $(PLAYWRIGHT_ARGS)
endef

PLAYWRIGHT_OCI_IMAGE = mcr.microsoft.com/playwright:v1.44.1-jammy
PLAYWRIGHT_OCI_IMAGE = mcr.microsoft.com/playwright:v1.46.0-jammy
PLAYWRIGHT_CMD_DOCKER = docker run --rm \
--volume $$(pwd):/work/ -w /work/ \
--user $(shell id -u):$(shell id -g) \
Expand Down
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
2 changes: 1 addition & 1 deletion bin/corepack
2 changes: 1 addition & 1 deletion bin/firebase
2 changes: 1 addition & 1 deletion bin/gh
2 changes: 1 addition & 1 deletion bin/go
2 changes: 1 addition & 1 deletion bin/gofmt
2 changes: 1 addition & 1 deletion bin/golangci-lint
2 changes: 1 addition & 1 deletion bin/goreleaser
2 changes: 1 addition & 1 deletion bin/node
2 changes: 1 addition & 1 deletion bin/npm
2 changes: 1 addition & 1 deletion bin/npx
2 changes: 1 addition & 1 deletion bin/tinygo
Loading

0 comments on commit 1435df9

Please sign in to comment.