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: kubernetes/kubernetes
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: v1.33.0
Choose a base ref
...
head repository: kubernetes/kubernetes
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: v1.33.1
Choose a head ref
  • 18 commits
  • 48 files changed
  • 9 contributors

Commits on Apr 23, 2025

  1. Configuration menu
    Copy the full SHA
    5dc8b8d View commit details
    Browse the repository at this point in the history

Commits on Apr 24, 2025

  1. Configuration menu
    Copy the full SHA
    950bb3b View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    1a9d4fc View commit details
    Browse the repository at this point in the history
  3. Configuration menu
    Copy the full SHA
    74035d7 View commit details
    Browse the repository at this point in the history
  4. Configuration menu
    Copy the full SHA
    c7eb931 View commit details
    Browse the repository at this point in the history

Commits on Apr 29, 2025

  1. Handle unsupported node expansion for RWX volumes

    Co-authored-by: Hemant Kumar <gnufied@users.noreply.github.com>
    Signed-off-by: carlory <baofa.fan@daocloud.io>
    carlory and gnufied committed Apr 29, 2025
    Configuration menu
    Copy the full SHA
    3caaf05 View commit details
    Browse the repository at this point in the history

Commits on May 6, 2025

  1. Configuration menu
    Copy the full SHA
    c8f2295 View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    c916dba View commit details
    Browse the repository at this point in the history

Commits on May 7, 2025

  1. Merge pull request #131427 from princepereira/automated-cherry-pick-o…

    …f-#131138-upstream-release-1.33
    
    Automated cherry pick of #131138: Fix for HNS local endpoint was being deleted instead of the remote endpoint.
    k8s-ci-robot authored May 7, 2025
    Configuration menu
    Copy the full SHA
    d3c7573 View commit details
    Browse the repository at this point in the history

Commits on May 8, 2025

  1. Configuration menu
    Copy the full SHA
    b59deb4 View commit details
    Browse the repository at this point in the history

Commits on May 9, 2025

  1. fix: fixes a possible panic in NewYAMLToJSONDecoder

    This PR fixes a possible panic caused by decoding a JSON document
    followed by a YAML document that is shorter than the first json
    document.
    
    This can cause a panic because the stream already consumed the JSON
    data. When we fallback to YAML reader, the YAML starts with a zero
    offset while the stream consumed data is non-zero. This could lead into
    consuming negative bytes because `d.yaml.InputOffset() -
    d.stream.Consumed()` is negative which will cause a panic.
    
    Signed-off-by: Tiago Silva <tiago.silva@goteleport.com>
    tigrato committed May 9, 2025
    Configuration menu
    Copy the full SHA
    a257be8 View commit details
    Browse the repository at this point in the history

Commits on May 13, 2025

  1. Merge pull request #131679 from mortent/automated-cherry-pick-of-#131…

    …662-upstream-release-1.33
    
    Automated cherry pick of #131662: DRA: Fix failure to allocate large number of devices
    k8s-ci-robot authored May 13, 2025
    Configuration menu
    Copy the full SHA
    3a09aeb View commit details
    Browse the repository at this point in the history
  2. Merge pull request #131708 from tigrato/automated-cherry-pick-of-#131…

    …702-upstream-release-1.33
    
    Automated cherry pick of #131702: Panic in `NewYAMLToJSONDecoder`
    k8s-ci-robot authored May 13, 2025
    Configuration menu
    Copy the full SHA
    b5a1738 View commit details
    Browse the repository at this point in the history

Commits on May 14, 2025

  1. Merge pull request #131437 from gnufied/automated-cherry-pick-of-#131…

    …418-upstream-release-1.33
    
    Automated cherry pick of #131418: Check for newer fields when deciding expansion recovery feature status
    k8s-ci-robot authored May 14, 2025
    Configuration menu
    Copy the full SHA
    973b381 View commit details
    Browse the repository at this point in the history
  2. Merge pull request #131523 from carlory/automated-cherry-pick-of-#131…

    …495-release-1.33
    
    Automated cherry pick of #131495: Handle unsupported node expansion for RWX volumes
    k8s-ci-robot authored May 14, 2025
    Configuration menu
    Copy the full SHA
    5dc469c View commit details
    Browse the repository at this point in the history
  3. Merge pull request #131636 from gnufied/automated-cherry-pick-of-#131…

    …568-upstream-release-1.33
    
    Automated cherry pick of #131568: Disable size checking performed during resize
    k8s-ci-robot authored May 14, 2025
    Configuration menu
    Copy the full SHA
    00ebe85 View commit details
    Browse the repository at this point in the history
  4. Automated cherry pick of #130503: Unhandled panic crash on rollout_hi…

    …story printer.PrintObj (#131496)
    
    * Change: Handling nil runtime.Object
    
    Signed-off-by: Taha Farahani <tahacodes@proton.me>
    
    * Change: Return only if there is error in rollout_history
    
    Signed-off-by: Taha Farahani <tahacodes@proton.me>
    
    * Change: Return the unknown revision error directly in rollout_history.go
    
    Signed-off-by: Taha Farahani <tahacodes@proton.me>
    
    * Change: Remove unintended newline
    
    Signed-off-by: Taha Farahani <tahacodes@proton.me>
    
    * Change: Using go idiomatic way for checking if historyInfo[o.Revision] exists
    
    Signed-off-by: Taha Farahani <tahacodes@proton.me>
    
    * Change: Remove 'error:' from returned error message in rollout_history.go
    
    Signed-off-by: Taha Farahani <tahacodes@proton.me>
    
    * Change: Check for printer.PrintObj returned err
    
    Signed-off-by: Taha Farahani <tahacodes@proton.me>
    
    * Change: Add TestRolloutHistoryErrors test
    
    Signed-off-by: Taha Farahani <tahacodes@proton.me>
    
    * Change: Simple typo fix on Complete() function description
    
    Signed-off-by: Taha Farahani <tahacodes@proton.me>
    
    * Change: Checking for error on o.Complete in TestRolloutHistoryErrors
    
    Signed-off-by: Taha Farahani <tahacodes@proton.me>
    
    ---------
    
    Signed-off-by: Taha Farahani <tahacodes@proton.me>
    Taha Farahani authored May 14, 2025
    Configuration menu
    Copy the full SHA
    cce99a8 View commit details
    Browse the repository at this point in the history

Commits on May 15, 2025

  1. Configuration menu
    Copy the full SHA
    8adc0f0 View commit details
    Browse the repository at this point in the history
Loading