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: bazel-contrib/bazel-lib
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: v3.2.0
Choose a base ref
...
head repository: bazel-contrib/bazel-lib
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: v3.2.1
Choose a head ref
  • 3 commits
  • 10 files changed
  • 3 contributors

Commits on Feb 10, 2026

  1. chore: update repo_utils.bzl to valid MDX

    Alex Eagle authored Feb 10, 2026
    Configuration menu
    Copy the full SHA
    d4f21b1 View commit details
    Browse the repository at this point in the history

Commits on Feb 12, 2026

  1. fix: quote path variables in write_source_file shell scripts (#1239)

    ## Summary
    
    Fix `write_source_file` failing with shell syntax errors when paths
    contain metacharacters like parentheses.
    
    ## Problem
    
    The generated shell script assigned paths to variables without quoting:
    
    ```bash
    in=$current_working_dir/path/to/(folder)/file.txt
    out=path/to/(folder)/file.txt
    ```
    
    Bash interprets `(` as the start of a subshell, causing:
    ```
    syntax error near unexpected token `('
    ```
    
    This breaks builds using Next.js App Router route groups (e.g.,
    `app/(dashboard)/page.tsx`) or any path with parentheses, spaces, or
    other shell metacharacters.
    
    ## Fix
    
    Quote the variable assignments:
    
    ```bash
    in="$current_working_dir/path/to/(folder)/file.txt"
    out="path/to/(folder)/file.txt"
    ```
    
    ## Changes
    
    - `lib/private/write_source_file.bzl`: Quote path variable assignments
    - `lib/tests/write_source_files/write_source_file_test.bzl`: Quote paths
    in test script generator
    - Added regression test with parentheses in path
    (`(route-group)/test.js`)
    
    ## Test plan
    
    - [x] New test `special_chars_in_path_test` passes
    - [x] All existing `write_source_files` tests pass
    jfjonsson authored Feb 12, 2026
    Configuration menu
    Copy the full SHA
    709790d View commit details
    Browse the repository at this point in the history

Commits on Feb 15, 2026

  1. fix: Mark toolchains as reproducible (#1241)

    This allows the content produced by these repo rules to be fetched from
    the remote repo contents cache.
    mortenmj authored Feb 15, 2026
    Configuration menu
    Copy the full SHA
    d75b90e View commit details
    Browse the repository at this point in the history
Loading