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: helm/helm
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: v4.1.0
Choose a base ref
...
head repository: helm/helm
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: v4.1.1
Choose a head ref
  • 4 commits
  • 9 files changed
  • 2 contributors

Commits on Jan 29, 2026

  1. fix(copystructure): handle nil elements in slice copying

    When copying slices containing nil interface{} elements, the copyValue
    function would panic with 'reflect: call of reflect.Value.Set on zero
    Value'. This occurred because reflect.ValueOf(nil) returns a zero Value
    that cannot be set.
    
    This issue was introduced in v4.1.0 when replacing mitchellh/copystructure
    with an internal implementation. The fix mirrors the existing nil handling
    logic used for map values.
    
    Fixes helm template panic when processing charts with YAML like:
      extraArgs:
        -
    
    Added test case to verify slice elements with nil values are properly
    handled during deep copy operations.
    
    Signed-off-by: Philipp Born <[email protected]>
    tamcore authored and gjenkins8 committed Jan 29, 2026
    Configuration menu
    Copy the full SHA
    261387a View commit details
    Browse the repository at this point in the history
  2. Revert "Consider GroupVersionKind when matching resources"

    Signed-off-by: Matheus Pimenta <[email protected]>
    matheuscscp authored and gjenkins8 committed Jan 29, 2026
    Configuration menu
    Copy the full SHA
    b2c487c View commit details
    Browse the repository at this point in the history
  3. bugfix(kstatus): do not wait forever on failed resources

    Signed-off-by: Matheus Pimenta <[email protected]>
    matheuscscp authored and gjenkins8 committed Jan 29, 2026
    Configuration menu
    Copy the full SHA
    2519a88 View commit details
    Browse the repository at this point in the history
  4. feat(kstatus): fine-grained context options for waiting

    Signed-off-by: Matheus Pimenta <[email protected]>
    matheuscscp authored and gjenkins8 committed Jan 29, 2026
    Configuration menu
    Copy the full SHA
    5caf004 View commit details
    Browse the repository at this point in the history
Loading