Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

tools: Upgrade #443

Merged
merged 4 commits into from
Sep 17, 2024
Merged

tools: Upgrade #443

merged 4 commits into from
Sep 17, 2024

Commits on Sep 16, 2024

  1. tools: Upgrade hermitised tools

    Upgrade hermitised tools to the latest versions with:
    
    	hermit upgrade
    
    I manually check _all_ tools for major version updates, with
    
    	hermit search --exact <TOOL>
    
    None to be found.
    juliaogris committed Sep 16, 2024
    Configuration menu
    Copy the full SHA
    a10e772 View commit details
    Browse the repository at this point in the history
  2. go: Upgrade all go dependencies

    Upgrade all go dependencies with
    
    	go get -u ./...
    	go mod tidy
    	go get -C learn -u ./...
    	go mod -C learn tidy
    
    This is a relatively mechanical housekeeping commit.
    juliaogris committed Sep 16, 2024
    Configuration menu
    Copy the full SHA
    b5e2081 View commit details
    Browse the repository at this point in the history

Commits on Sep 17, 2024

  1. npm: Upgrade node tools

    Upgrade node tools such as stylelint and prettier with:
    
    	npx --prefix .hermit/node -y npm-check-updates --packageFile .hermit/node/package.json -u
    	npm --prefix .hermit/node install
    juliaogris committed Sep 17, 2024
    Configuration menu
    Copy the full SHA
    1916319 View commit details
    Browse the repository at this point in the history
  2. playwright: Upgrade end-to-end testing tool

    Upgrade end-to-end testing tool playwright to the latest version 1.47.1.
    It is installed locally with npm and used on CI via docker image:
    
    Form npm upgrade run:
    
    	npx --prefix e2e -y npm-check-updates --packageFile e2e/package.json -u
    	npm --prefix e2e install
    	npx --prefix e2e playwright install
    
    For Makefile upgrade manually update OCI image line.
    juliaogris committed Sep 17, 2024
    Configuration menu
    Copy the full SHA
    776230b View commit details
    Browse the repository at this point in the history