8000 Comparing v1.3.0...v1.4.0 · kitops-ml/kitops · GitHub
[go: up one dir, main page]
More Web Proxy on the site http://driver.im/
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: kitops-ml/kitops
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: v1.3.0
Choose a base ref
...
head repository: kitops-ml/kitops
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: v1.4.0
Choose a head ref
  • 11 commits
  • 18 files changed
  • 4 contributors

Commits on Apr 8, 2025

  1. Bump the go-minor group with 4 updates

    Bumps the go-minor group with 4 updates: [golang.org/x/sync](https://github.com/golang/sync), [golang.org/x/sys](https://github.com/golang/sys), [golang.org/x/term](https://github.com/golang/term) and [golang.org/x/text](https://github.com/golang/text).
    
    
    Updates `golang.org/x/sync` from 0.12.0 to 0.13.0
    - [Commits](golang/sync@v0.12.0...v0.13.0)
    
    Updates `golang.org/x/sys` from 0.31.0 to 0.32.0
    - [Commits](golang/sys@v0.31.0...v0.32.0)
    
    Updates `golang.org/x/term` from 0.30.0 to 0.31.0
    - [Commits](golang/term@v0.30.0...v0.31.0)
    
    Updates `golang.org/x/text` from 0.23.0 to 0.24.0
    - [Release notes](https://github.com/golang/text/releases)
    - [Commits](golang/text@v0.23.0...v0.24.0)
    
    ---
    updated-dependencies:
    - dependency-name: golang.org/x/sync
      dependency-version: 0.13.0
      dependency-type: direct:production
      update-type: version-update:semver-minor
      dependency-group: go-minor
    - dependency-name: golang.org/x/sys
      dependency-version: 0.32.0
      dependency-type: direct:production
      update-type: version-update:semver-minor
      dependency-group: go-minor
    - dependency-name: golang.org/x/term
      dependency-version: 0.31.0
      dependency-type: direct:production
      update-type: version-update:semver-minor
      dependency-group: go-minor
    - dependency-name: golang.org/x/text
      dependency-version: 0.24.0
      dependency-type: direct:production
      update-type: version-update:semver-minor
      dependency-group: go-minor
    ...
    
    Signed-off-by: dependabot[bot] <support@github.com>
    dependabot[bot] authored and amisevsk committed Apr 8, 2025
    Configuration menu
    Copy the full SHA
    5cdcdc0 View commit details
    Browse the repository at this point in the history
  2. Bump goreleaser/goreleaser-action in the actions-minor group

    Bumps the actions-minor group with 1 update: [goreleaser/goreleaser-action](https://github.com/goreleaser/goreleaser-action).
    
    
    Updates `goreleaser/goreleaser-action` from 6.2.1 to 6.3.0
    - [Release notes](https://github.com/goreleaser/goreleaser-action/releases)
    - [Commits](goreleaser/goreleaser-action@90a3faa...9c156ee)
    
    ---
    updated-dependencies:
    - dependency-name: goreleaser/goreleaser-action
      dependency-version: 6.3.0
      dependency-type: direct:production
      update-type: version-update:semver-minor
      dependency-group: actions-minor
    ...
    
    Signed-off-by: dependabot[bot] <support@github.com>
    dependabot[bot] authored and amisevsk committed Apr 8, 2025
    Configuration menu
    Copy the full SHA
    a96b9ce View commit details
    Browse the repository at this point in the history
  3. docs: update CLI documentation for v1.3.0

    Signed-off-by: Angel Misevski <amisevsk@gmail.com>
    amisevsk committed Apr 8, 2025
    Configuration menu
    Copy the full SHA
    3125698 View commit details
    Browse the repository at this point in the history

Commits on Apr 9, 2025

  1. Fix ghcr.io package references after move to kitops-ml org

    At some point, the base kit package in ghcr changed from kit to kitops
    so some references were out of date.
    
    Signed-off-by: Angel Misevski <amisevsk@gmail.com>
    amisevsk committed Apr 9, 2025
    Configuration menu
    Copy the full SHA
    f2397f0 View commit details
    Browse the repository at this point in the history

Commits on Apr 10, 2025

  1. Introduce KServe image builds

    Also fixes the documentation for the ClusterContainerStorage
    
    Signed-off-by: Gorkem Ercan <gorkem.ercan@gmail.com>
    gorkem committed Apr 10, 2025
    Configuration menu
    Copy the full SHA
    5bd91f1 View commit details
    Browse the repository at this point in the history
  2. Allow specifying version when importing huggingface repositories

    Add flag `--ref` to kit import command to allow importing tagged
    versions of the repository instead of only 'main'
    
    Signed-off-by: Angel Misevski <amisevsk@gmail.com>
    amisevsk committed Apr 10, 2025
    Configuration menu
    Copy the full SHA
    49ff3e2 View commit details
    Browse the repository at this point in the history
  3. Support specifying branch/tag when importing using Git directly

    Signed-off-by: Angel Misevski <amisevsk@gmail.com>
    amisevsk committed Apr 10, 2025
    Configuration menu
    Copy the full SHA
    4d7d3ee View commit details
    Browse the repository at this point in the history
  4. Handle errors when tag is not found during kit import using huggingface

    Signed-off-by: Angel Misevski <amisevsk@gmail.com>
    amisevsk committed Apr 10, 2025
    Configuration menu
    Copy the full SHA
    ed837a3 View commit details
    Browse the repository at this point in the history
  5. Use monolithic PUT to upload large layers to Amazon ECR

    Amazon ECR registries return HTTP 201 after the first chunk in a
    multi-part upload, which is unexpected and causes the upload to fail.
    To avoid this, we can default to using a monolithic PUT.
    
    Signed-off-by: Angel Misevski <amisevsk@gmail.com>
    amisevsk committed Apr 10, 2025
    Configuration menu
    Copy the full SHA
    876a227 View commit details
    Browse the repository at this point in the history
  6. Add test cases for Amazon ECR push format

    Signed-off-by: Angel Misevski <amisevsk@gmail.com>
    amisevsk committed Apr 10, 2025
    Configuration menu
    Copy the full SHA
    3e7dca4 View commit details
    Browse the repository at this point in the history
  7. Handle mixed case URLs when determining upload format for push

    Since URLs are case-insensitive
    
    Signed-off-by: Angel Misevski <amisevsk@gmail.com>
    amisevsk committed Apr 10, 2025
    Configuration menu
    Copy the full SHA
    84d6d3d View commit details
    Browse the repository at this point in the history
Loading
0