Skip to content

chore: Update skaffold deps to prepare for skaffold 2.15. #9770

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Closed
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
22 commits
Select commit Hold shift + click to select a range
dee3192
Bump dependencies for skaffold 2.15 release
alphanota Mar 24, 2025
0b3eb98
Bump dependencies for skaffold 2.15 release
alphanota Mar 24, 2025
a280f9d
fix: broken depenencies in docker and ko packages
alphanota Mar 25, 2025
6d6643d
fix skaffold tests
alphanota Mar 26, 2025
b9c413c
fix: update the test crypto key data - the 1.24 version of the crypto…
alphanota Mar 27, 2025
5e385c9
refresh depedencies
alphanota Mar 28, 2025
44cdff0
add local copy of buildpacks/imgutil
alphanota Mar 28, 2025
73feeb1
fix: breaking API changes for builpacks/imgutil
alphanota Mar 28, 2025
ff35620
update vendor for buildpacks/imgutil
alphanota Mar 28, 2025
1e5d3bb
add buildpacks/pack repo
alphanota Mar 28, 2025
b5775cc
use local patch for buildpacks/pack
alphanota Mar 28, 2025
e0c48bf
make vendor changes
alphanota Mar 28, 2025
03a34d0
pin github.com/spf13 viper version to v1.19.0
alphanota Mar 28, 2025
e57e9d2
fix: remove pack directory
alphanota Mar 28, 2025
2ea8c6a
fix: add pack repo from github again
alphanota Mar 28, 2025
a1c652c
apply patch to local patch repo
alphanota Mar 28, 2025
306a4cb
fix: remove duplicated file
alphanota Mar 28, 2025
6c04ede
fix: update the vendor version of buildpacks/pack to get rid of dupli…
alphanota Mar 28, 2025
664df29
fix: ignore unexported sync.Mutex field when comparing portForwardEntry
alphanota Mar 28, 2025
5f3358f
add local to the boilerplate ignorelist
alphanota Mar 28, 2025
b27146c
fix: more lint issues, upgrade golangci-lint to a go 1.24 compatible …
alphanota Mar 29, 2025
40012dd
use a newer version of golang-ci-lint, update the deps of the custom …
alphanota Mar 29, 2025
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
The table of contents is too big for display.
Diff view
Diff view
  •  
  •  
  •  
3 changes: 2 additions & 1 deletion examples/grpc-e2e-tests/service/proto/visitor.pb.go

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

1 change: 1 addition & 0 deletions examples/grpc-e2e-tests/service/proto/visitor_grpc.pb.go

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Original file line number Diff line number Diff line change
Expand Up @@ -721,10 +721,9 @@ func (p *printer) heredocIndent(buf []byte) []byte {
//
// A single line object:
//
// * has no lead comments (hence multi-line)
// * has no assignment
// * has no values in the stanza (within {})
//
// - has no lead comments (hence multi-line)
// - has no assignment
// - has no values in the stanza (within {})
func (p *printer) isSingleLineObject(val *ast.ObjectItem) bool {
// If there is a lead comment, can't be one line
if val.LeadComment != nil {
Expand Down

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

247 changes: 128 additions & 119 deletions go.mod

Large diffs are not rendered by default.

481 changes: 238 additions & 243 deletions go.sum

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion hack/boilerplate/boilerplate.py
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@
import sys


SKIPPED_DIRS = ["Godeps", "third_party", ".git", "vendor", "examples", "testdata", "node_modules", "codelab", "fs"]
SKIPPED_DIRS = ["Godeps", "third_party", ".git", "vendor", "local", "examples", "testdata", "node_modules", "codelab", "fs"]
SKIPPED_FILES = ["install-golint.sh", "skaffold.pb.go", "skaffold.pb.gw.go", "skaffold_grpc.pb.go", "enums.pb.go", "build.sh", "gitutil.go"]

parser = argparse.ArgumentParser()
Expand Down
4 changes: 2 additions & 2 deletions hack/gofmt.sh
Original file line number Diff line number Diff line change
Expand Up @@ -14,11 +14,11 @@
# See the License for the specific language governing permissions and
# limitations under the License.

files=$(find . -name "*.go" | grep -vE '\.\/fs\/|\.\/vendor\/' | xargs gofmt -l -s)
files=$(find . -name "*.go" | grep -vE '\.\/fs\/|\.\/vendor\/|\.\/local\/' | xargs gofmt -l -s)
if [[ $files ]]; then
echo "Gofmt errors in files:"
echo "$files"
diff=$(find . -name "*.go" | grep -vE '\.\/fs\/|\.\/vendor\/' | xargs gofmt -w -d)
diff=$(find . -name "*.go" | grep -vE '\.\/fs\/|\.\/vendor\/|\.\/local\/' | xargs gofmt -w -d)
echo "$diff"
exit 1
fi
4 changes: 2 additions & 2 deletions hack/golangci-lint.sh
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ set -e -o pipefail

DIR="$( cd "$( dirname "${BASH_SOURCE[0]}" )" && pwd )"
BIN=${DIR}/bin
VERSION=1.62.0
VERSION=1.64.8

function install_linter() {
echo "Installing GolangCI-Lint"
Expand All @@ -36,7 +36,7 @@ then
install_linter
fi

FLAGS="--skip-dirs fs/assets/credits_generated"
FLAGS="--exclude-dirs fs/assets/credits_generated"
if [[ "${CI}" == "true" ]]; then
FLAGS="$FLAGS -v --print-resources-usage"
fi
Expand Down
34 changes: 17 additions & 17 deletions hack/tools/go.mod
Original file line number Diff line number Diff line change
@@ -1,24 +1,24 @@
module tools

go 1.23
go 1.24.0

require (
github.com/corneliusweig/release-notes v0.0.0-20191014214505-0be5c7c66752
golang.org/x/tools v0.19.0
github.com/corneliusweig/release-notes v0.1.4
golang.org/x/tools v0.31.0
)

require (
github.com/golang/protobuf v1.2.0 // indirect
github.com/google/go-github/v28 v28.1.1 // indirect
github.com/google/go-querystring v1.0.0 // indirect
github.com/inconshreveable/mousetrap v1.0.0 // indirect
github.com/konsorten/go-windows-terminal-sequences v1.0.1 // indirect
github.com/sirupsen/logrus v1.4.2 // indirect
github.com/spf13/cobra v0.0.5 // indirect
github.com/spf13/pflag v1.0.3 // indirect
golang.org/x/crypto v0.35.0 // indirect
golang.org/x/mod v0.16.0 // indirect
golang.org/x/net v0.36.0 // indirect
golang.org/x/oauth2 v0.0.0-20190604053449-0f29369cfe45 // indirect
golang.org/x/sys v0.30.0 // indirect
google.golang.org/appengine v1.4.0 // indirect
github.com/blang/semver v3.5.1+incompatible // indirect
github.com/google/go-github/v38 v38.1.0 // indirect
github.com/google/go-querystring v1.1.0 // indirect
github.com/inconshreveable/mousetrap v1.1.0 // indirect
github.com/pkg/errors v0.9.1 // indirect
github.com/sirupsen/logrus v1.9.3 // indirect
github.com/spf13/cobra v1.9.1 // indirect
github.com/spf13/pflag v1.0.6 // indirect
golang.org/x/crypto v0.36.0 // indirect
golang.org/x/mod v0.24.0 // indirect
golang.org/x/oauth2 v0.28.0 // indirect
golang.org/x/sync v0.12.0 // indirect
golang.org/x/sys v0.31.0 // indirect
)
Loading
Loading