chore: update devbox.lock files across all projects#2870
Open
mikeland73 wants to merge 2 commits into
Open
Conversation
Ran `devbox update` across the root project and all example projects, followed by `devbox update --sync-lock` to sync shared dependencies. This bumps nixpkgs (nixpkgs-unstable) and pinned package versions to their latest resolved revisions. Notable bumps include go 1.26.1->1.26.3, git 2.53.0->2.54.0, nodejs 18.19.1->18.20.8, python 3.10.13->3.10.19, minikube 1.32.0->1.38.1, wget 1.21.4->1.25.0, among others. The external flake refs `github:ggerganov/llama.cpp` and `github:F1bonacc1/process-compose/v0.43.1` were left unchanged (their devbox.lock entries are empty and resolved by nix at build time). https://claude.ai/code/session_01HobHrYdKYZhSyb5bbgaVXb
Contributor
There was a problem hiding this comment.
Copilot wasn't able to review any files in this pull request.
💡 Add Copilot custom instructions for smarter, more guided reviews. Learn how to get started.
The nixpkgs-unstable bump upgraded several language toolchains to versions incompatible with these examples' source/config, causing TestExamples failures in CI. Reverting these specific lock files to their previous (working) state while keeping the other 54 updated: - zig/zig-hello-world: zig 0.16 removed the `root_source_file` build API - nodejs/nodejs-yarn, nodejs/nodejs-pnpm: yarn/pnpm no longer on PATH - csharp, fsharp: only dotnet-sdk 8.x available; projects target net6.0 - java/gradle, java/maven: JDK toolchain bump - elixir/elixir_hello: newer OTP TLS rejects builds.hex.pm certificate - python/poetry/poetry-pyproject-subdir: python/poetry bump - stacks/rails, stacks/jekyll: ruby toolchain bump These breakages are upstream-version incompatibilities with no lock-level fix other than reverting the affected example. https://claude.ai/code/session_01HobHrYdKYZhSyb5bbgaVXb
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
What
Refreshes
devbox.lockfiles across the root project and all example projects by runningdevbox updatein each project, followed bydevbox update --sync-lockfrom the root to sync shared dependencies.65 lock files updated, no
devbox.jsonchanges.Notable version bumps
nixpkgs-unstable) advanced to the latest commitgo1.26.1 → 1.26.3git2.53.0 → 2.54.0nodejs_1818.19.1 → 18.20.8python3103.10.13 → 3.10.19minikube1.32.0 → 1.38.1wget1.21.4 → 1.25.0Left unchanged
Two external flake references could not be re-resolved in this environment because resolving a branch/tag/HEAD goes through the unauthenticated GitHub API, which is rate-limited here:
github:ggerganov/llama.cpp(data_science/llama)github:F1bonacc1/process-compose/v0.43.1(flakes/remote)Their
devbox.lockentries are empty objects ({}) and are resolved by Nix at build time, so leaving them unchanged has no effect on the lock contents. All other packages in those projects were updated.Validation
devbox updatecompleted with exit code 0.https://claude.ai/code/session_01HobHrYdKYZhSyb5bbgaVXb
Generated by Claude Code