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

fix(deps): update all dependencies #1

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open

Conversation

renovate[bot]
Copy link

@renovate renovate bot commented May 22, 2024

This PR contains the following updates:

Package Type Update Change Age Adoption Passing Confidence
actions/checkout action minor v4.1.5 -> v4.2.2 age adoption passing confidence
actions/dependency-review-action action minor v4.3.2 -> v4.5.0 age adoption passing confidence
actions/setup-go action minor v5.0.1 -> v5.3.0 age adoption passing confidence
github.com/u-root/u-root require minor v0.0.0-20180806213625-12f9029297cf -> v0.14.0 age adoption passing confidence
github/codeql-action action minor v3.25.5 -> v3.28.9 age adoption passing confidence
golang.org/x/sys require minor v0.0.0-20201112073958-5cba982894dd -> v0.30.0 age adoption passing confidence

Release Notes

actions/checkout (actions/checkout)

v4.2.2

Compare Source

v4.2.1

Compare Source

v4.2.0

Compare Source

v4.1.7

Compare Source

v4.1.6

Compare Source

actions/dependency-review-action (actions/dependency-review-action)

v4.5.0

Compare Source

What's Changed

New Contributors

Full Changelog: actions/dependency-review-action@v4...v4.5.0

v4.4.0

Compare Source

What's Changed

Full Changelog: actions/dependency-review-action@v4.3.5...v4.4.0

v4.3.5

Compare Source

What's Changed

New Contributors

Full Changelog: actions/dependency-review-action@v4.3.4...v4.3.5

v4.3.4

Compare Source

What's Changed

Full Changelog: actions/dependency-review-action@v4.3.3...v4.3.4

v4.3.3: Notes for v4.3.3

Compare Source

What's Changed

New Contributors

Full Changelog: actions/dependency-review-action@v4.3.2...v4.3.3

actions/setup-go (actions/setup-go)

v5.3.0

Compare Source

What's Changed
New Contributors

Full Changelog: actions/setup-go@v5...v5.3.0

v5.2.0

Compare Source

What's Changed

New Contributors

Full Changelog: actions/setup-go@v5...v5.2.0

v5.1.0

Compare Source

What's Changed

Bug Fixes

New Contributors

Full Changelog: actions/setup-go@v5...v5.1.0

v5.0.2

Compare Source

What's Changed

Bug fixes:
Dependency updates:

New Contributors

Full Changelog: actions/setup-go@v5...v5.0.2

u-root/u-root (github.com/u-root/u-root)

v0.14.0: - breaking u-root build system changes

Compare Source

[!IMPORTANT]
TL;DR: When Go modules are enabled, you won't be able to run u-root from any arbitrary directory after this release. u-root must be run somewhere with a Go module or Go workspace. (With GO111MODULE=off the behavior should be as it always has been.)

u-root will now work exactly when go build works as well.

Use Go workspaces to compile commands from multiple modules together locally. A tool called goanywhere can create a workspace on the fly. Check out the README for more.

Go workspaces are not as suitable to be committed to a git repository. The recommended method for source-control-committed multi-module commands is described by the mkuimage README.

This change pulls in https://github.com/u-root/gobusybox/pull/110, in which we stop supporting module builds without a go.mod. In essence, from this point forward, the u-root tool will support builds exactly when go build and go list also work. https://github.com/u-root/gobusybox/pull/110 reduces a lot of maintenance burden, trivially starts supporting Go workspaces and Go module replace directives, and increases gobusybox code's readability.

Multi-module builds can be done easily with standard Go methods, as described in the README. Go workspaces, vendored Go workspaces, Go modules, and vendored Go modules are all supported. Completely offline builds can easily done with vendored Go modules or workspaces.

For ease of use, the goanywhere tool was created. goanywhere creates a temporary directory with a Go workspace of the given commands, and then execs a binary passing along the Go command paths. Use like goanywhere ./u-root/cmds/core/{init,gosh} ./cpu/cmds/cpud -- u-root [other u-root args]. This approaches the easy usability of u-root up to this point.

goanywhere does not work with templates. goanywhere only accepts file system paths at this time.

This also fixes the issue where binary mode builds didn't always work in the same cases where gbb builds worked. Both are now always supported in the exact same circumstances.

This change also pulls in https://github.com/u-root/mkuimage/pull/28, in which we support generic template YAML files named ".mkuimage.yaml" in the current working directory or any of its parents. Templates support the existing command expansions, but also support configs (invoked with u-root -config=$config) in which one can specify build configuration and mixed-builder (bb/binary) builds. They will be documented in a README at a later time.

[!NOTE]

If you have any issues, please file an issue and use the last release before this change, which is v0.13.1.

What's Changed

Full Changelog: u-root/u-root@v0.13.1...v0.14.0

v0.13.1

Compare Source

TL;DR

Maintenance release before the anticipated breaking change of https://github.com/u-root/u-root/pull/2923.

  • #​2914 fixed a DHCP client forever hang introduced by #​2845 in cases where the link never comes up.

  • cmds/boot/{systemboot,fbnetboot,localboot} have been moved to cmds/exp/{systemboot,fbnetboot,localboot} as they are less maintained than the remaining boot commands in cmds/boot.

What's Changed

Full Changelog: u-root/u-root@v0.13.0...v0.13.1

v0.13.0

Compare Source

Summary

  • gosh is now the default shell. Head on over to https://github.com/u-root/u-root/discussions/2900 if you have comments.
  • elvish is scheduled for deletion in v0.14.0. Head on over to https://github.com/u-root/u-root/discussions/2900 if you have comments.
  • flash (SPI) tools have gotten a lot of improvements, try out the cmds/fwtools/flash command! Thank you @​rminnich!
  • new commands:
    • cmds/core/nohup, like the regular nohup utility ("invoke a utility immune to hangups"). Thank you @​binjip978!
    • cmds/exp/dumpmemmap, parses and dumps every interpretation of physical memory available on the system (/proc/iomem, /sys/firmware/memmap, /sys/firmware/fdt, and /sys/kernel/debug/memblock).
  • kexec tooling has received cleanups, unit testing, and integration test coverage collection.

What's Changed

New Contributors

Full Changelog: u-root/u-root@v0.12.0...v0.13.0

v0.12.0

Compare Source

A lot has changed in ~1 year. The build system has better module support. Some improvements to the boot infrastructure. A lot of tinygo support. A better gosh shell.

What's Changed


Configuration

📅 Schedule: Branch creation - At any time (no schedule defined), Automerge - At any time (no schedule defined).

🚦 Automerge: Disabled by config. Please merge this manually once you are satisfied.

Rebasing: Whenever PR becomes conflicted, or you tick the rebase/retry checkbox.

👻 Immortal: This PR will be recreated if closed unmerged. Get config help if that's undesired.


  • If you want to rebase/retry this PR, check this box

This PR was generated by Mend Renovate. View the repository job log.

@renovate renovate bot force-pushed the renovate/all branch 2 times, most recently from 233dd37 to bad1b63 Compare June 5, 2024 20:52
Copy link
Author

renovate bot commented Jun 5, 2024

ℹ Artifact update notice

File name: go.mod

In order to perform the update(s) described in the table above, Renovate ran the go get command, which resulted in the following additional change(s):

  • The go directive was updated for compatibility reasons

Details:

Package Change
go 1.15 -> 1.23.6

@renovate renovate bot force-pushed the renovate/all branch 2 times, most recently from eeda981 to c7b5cb4 Compare July 4, 2024 20:35
@renovate renovate bot force-pushed the renovate/all branch 2 times, most recently from 76266e9 to 9b10b70 Compare July 12, 2024 11:49
@renovate renovate bot force-pushed the renovate/all branch 2 times, most recently from 3fef4ce to c9a456a Compare July 27, 2024 14:49
@renovate renovate bot force-pushed the renovate/all branch 2 times, most recently from 26438c8 to 51a7e13 Compare August 10, 2024 14:51
@renovate renovate bot force-pushed the renovate/all branch 3 times, most recently from 78a340d to cf38530 Compare August 21, 2024 23:39
@renovate renovate bot force-pushed the renovate/all branch 2 times, most recently from b3de092 to 5c3a55c Compare August 30, 2024 05:56
@renovate renovate bot force-pushed the renovate/all branch 2 times, most recently from abc9ccd to e509719 Compare September 12, 2024 02:32
@renovate renovate bot force-pushed the renovate/all branch 2 times, most recently from a3391e8 to c0db26f Compare September 19, 2024 20:44
@renovate renovate bot force-pushed the renovate/all branch 2 times, most recently from 23eb129 to 422d786 Compare October 1, 2024 03:00
@renovate renovate bot force-pushed the renovate/all branch 2 times, most recently from cbde2ba to ac51e83 Compare October 8, 2024 02:58
@renovate renovate bot force-pushed the renovate/all branch 3 times, most recently from be8fc45 to 97a92a9 Compare October 23, 2024 02:39
@renovate renovate bot force-pushed the renovate/all branch 2 times, most recently from 5508e1a to 0238e1b Compare October 29, 2024 23:40
@renovate renovate bot force-pushed the renovate/all branch 3 times, most recently from 7298515 to 44a09f2 Compare November 13, 2024 20:45
@renovate renovate bot force-pushed the renovate/all branch 2 times, most recently from 1cae0a4 to e3abe60 Compare November 21, 2024 02:49
@renovate renovate bot force-pushed the renovate/all branch 2 times, most recently from a5c4117 to 3417626 Compare December 11, 2024 17:15
@renovate renovate bot changed the title chore(deps): update all dependencies fix(deps): update all dependencies Dec 11, 2024
@renovate renovate bot force-pushed the renovate/all branch 2 times, most recently from 3cd49f5 to 3787572 Compare January 11, 2025 15:14
@renovate renovate bot force-pushed the renovate/all branch 3 times, most recently from c4e8a2a to 74ede02 Compare January 29, 2025 23:21
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

0 participants