Skip to content
Permalink

Comparing changes

Choose two branches to see what’s changed or to start a new pull request. If you need to, you can also or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: jetify-com/devbox
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: 3ec2038
Choose a base ref
...
head repository: jetify-com/devbox
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: 86e9b6a
Choose a head ref
  • 7 commits
  • 28 files changed
  • 4 contributors

Commits on Aug 11, 2025

  1. [cicd] Fix github rate limit issue (#2667)

    ## Summary
    
    Fixes
    https://github.com/jetify-com/devbox/actions/runs/16847493651/job/47729104601
    
    This is a very specific fix to this job. I think a better solution is to
    pass `--extra-access-tokens` flag into nix commands that may interact
    with github.
    
    ## How was it tested?
    
    Not sure how to test.
    
    ## Community Contribution License
    
    All community contributions in this pull request are licensed to the
    project
    maintainers under the terms of the
    [Apache 2 License](https://www.apache.org/licenses/LICENSE-2.0).
    
    By creating this pull request, I represent that I have the right to
    license the
    contributions to the project maintainers under the Apache 2 License as
    stated in
    the
    [Community Contribution
    License](https://github.com/jetify-com/opensource/blob/main/CONTRIBUTING.md#community-contribution-license).
    mikeland73 authored Aug 11, 2025
    Configuration menu
    Copy the full SHA
    026caab View commit details
    Browse the repository at this point in the history

Commits on Aug 12, 2025

  1. [deps] Update go (#2669)

    ## Summary
    
    Fixes #2668
    
    ## How was it tested?
    
    ## Community Contribution License
    
    All community contributions in this pull request are licensed to the
    project
    maintainers under the terms of the
    [Apache 2 License](https://www.apache.org/licenses/LICENSE-2.0).
    
    By creating this pull request, I represent that I have the right to
    license the
    contributions to the project maintainers under the Apache 2 License as
    stated in
    the
    [Community Contribution
    License](https://github.com/jetify-com/opensource/blob/main/CONTRIBUTING.md#community-contribution-license).
    mikeland73 authored Aug 12, 2025
    Configuration menu
    Copy the full SHA
    4be11f7 View commit details
    Browse the repository at this point in the history
  2. [nix] Test devbox on latest nix (#2670)

    ## Summary
    
    ## How was it tested?
    
    ## Community Contribution License
    
    All community contributions in this pull request are licensed to the
    project
    maintainers under the terms of the
    [Apache 2 License](https://www.apache.org/licenses/LICENSE-2.0).
    
    By creating this pull request, I represent that I have the right to
    license the
    contributions to the project maintainers under the Apache 2 License as
    stated in
    the
    [Community Contribution
    License](https://github.com/jetify-com/opensource/blob/main/CONTRIBUTING.md#community-contribution-license).
    mikeland73 authored Aug 12, 2025
    Configuration menu
    Copy the full SHA
    f2920fd View commit details
    Browse the repository at this point in the history

Commits on Aug 13, 2025

  1. [extension] updated readme to remove devbox.sh's open in Desktop (#2671)

    ## Summary
    TSIA
    
    ## How was it tested?
    
    ## Community Contribution License
    
    All community contributions in this pull request are licensed to the
    project
    maintainers under the terms of the
    [Apache 2 License](https://www.apache.org/licenses/LICENSE-2.0).
    
    By creating this pull request, I represent that I have the right to
    license the
    contributions to the project maintainers under the Apache 2 License as
    stated in
    the
    [Community Contribution
    License](https://github.com/jetify-com/opensource/blob/main/CONTRIBUTING.md#community-contribution-license).
    mohsenari authored Aug 13, 2025
    Configuration menu
    Copy the full SHA
    cc8c79f View commit details
    Browse the repository at this point in the history

Commits on Aug 15, 2025

  1. Update MariaDB + MySQL Plugins (#2672)

    ## Summary
    
    Fix some socket paths and settings that were causing issues
    Use the MariaDB binaries to avoid a deprecation warning
    Tested and added support for MySQL84
    
    ## How was it tested?
    
    Localhost
    
    ## Community Contribution License
    
    All community contributions in this pull request are licensed to the
    project
    maintainers under the terms of the
    [Apache 2 License](https://www.apache.org/licenses/LICENSE-2.0).
    
    By creating this pull request, I represent that I have the right to
    license the
    contributions to the project maintainers under the Apache 2 License as
    stated in
    the
    [Community Contribution
    License](https://github.com/jetify-com/opensource/blob/main/CONTRIBUTING.md#community-contribution-license).
    Lagoja authored Aug 15, 2025
    Configuration menu
    Copy the full SHA
    e3b73ba View commit details
    Browse the repository at this point in the history
  2. fix(python-plugin): add UV_PROJECT_ENVIRONMENT env variable (#2659)

    ## Summary
    
    Fixes #2658 (i.e. errors such as the below):
    
    _warning: VIRTUAL_ENV=src/uvtest/.venv does not match the project
    environment path .venv and will be ignored; use --active to target the
    active environment instead_
    
    I have also updated the outdated docs which still contained the old
    default virtual environment path of `.devbox/virtenv/python`.
    
    ## How was it tested?
    
    Using the steps from #2658:
    
    ```
    devbox create uvtest --template python-pip
    cd uvtest
    devbox add uv@latest
    mkdir -p src/uvtest
    echo -e "[project]\nname = \"uvtest\"\nversion = \"1.0.0\"\nrequires-python = \">=3.12\"" > pyproject.toml
    devbox shell --env VENV_DIR="./src/uvtest/.venv"
    uv run main.py
    ```
    
    With this fix, the last command now runs successfully.
    
    ## Community Contribution License
    
    All community contributions in this pull request are licensed to the
    project
    maintainers under the terms of the
    [Apache 2 License](https://www.apache.org/licenses/LICENSE-2.0).
    
    By creating this pull request, I represent that I have the right to
    license the
    contributions to the project maintainers under the Apache 2 License as
    stated in
    the
    [Community Contribution
    License](https://github.com/jetify-com/opensource/blob/main/CONTRIBUTING.md#community-contribution-license).
    apgrucza authored Aug 15, 2025
    Configuration menu
    Copy the full SHA
    b96b071 View commit details
    Browse the repository at this point in the history

Commits on Aug 18, 2025

  1. Bump flake version (#2674)

    ## Summary
    
    Bump devbox version for release 
    
    ## How was it tested?
    
    ## Community Contribution License
    
    All community contributions in this pull request are licensed to the
    project
    maintainers under the terms of the
    [Apache 2 License](https://www.apache.org/licenses/LICENSE-2.0).
    
    By creating this pull request, I represent that I have the right to
    license the
    contributions to the project maintainers under the Apache 2 License as
    stated in
    the
    [Community Contribution
    License](https://github.com/jetify-com/opensource/blob/main/CONTRIBUTING.md#community-contribution-license).
    Lagoja authored Aug 18, 2025
    Configuration menu
    Copy the full SHA
    86e9b6a View commit details
    Browse the repository at this point in the history
Loading