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: openshift/source-to-image
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: v1.3.4
Choose a base ref
...
head repository: openshift/source-to-image
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: v1.3.5
Choose a head ref
  • 4 commits
  • 664 files changed
  • 3 contributors

Commits on Mar 14, 2023

  1. refactor(fs): simplify CopyContents

    We can simplify the following code
    	dir, err := os.Open(dirname)
    	if err != nil {
    		return err
    	}
    	defer dir.Close()
    
    	dirs, err := dir.Readdir(-1)
    
    with just `os.ReadDir(dirname)`.
    
    Reference: https://pkg.go.dev/os#ReadDir
    Signed-off-by: Eng Zer Jun <[email protected]>
    Juneezee committed Mar 14, 2023
    Configuration menu
    Copy the full SHA
    97a4019 View commit details
    Browse the repository at this point in the history
  2. Merge pull request #1111 from Juneezee/refactor/simplify-fs-copycontents

    refactor(fs): simplify CopyContents
    openshift-merge-robot authored Mar 14, 2023
    Configuration menu
    Copy the full SHA
    305ff89 View commit details
    Browse the repository at this point in the history

Commits on Mar 15, 2023

  1. Update dependencies

    yselkowitz committed Mar 15, 2023
    Configuration menu
    Copy the full SHA
    0b037e5 View commit details
    Browse the repository at this point in the history
  2. Merge pull request #1114 from yselkowitz/gomod

    Update dependencies
    openshift-merge-robot authored Mar 15, 2023
    Configuration menu
    Copy the full SHA
    c5a0536 View commit details
    Browse the repository at this point in the history
Loading