Skip to content

Commit a2d162d

Browse files
authored
feat: update kpm to 0.6.0 to support assign kpm pkg version by commit (#744)
1 parent c7dfc82 commit a2d162d

File tree

3 files changed

+48
-51
lines changed

3 files changed

+48
-51
lines changed

.github/workflows/release.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -91,7 +91,7 @@ jobs:
9191
with:
9292
distribution: goreleaser
9393
version: latest
94-
args: release --config .goreleaser_formal.yml --clean
94+
args: release --config .goreleaser_informal.yml --clean
9595
env:
9696
GITHUB_TOKEN: ${{ secrets.KUSIONSTACK_BOT_TOKEN }}
9797
KUSION_VERSION: ${{ steps.get_version.outputs.kusion_version }}

go.mod

Lines changed: 15 additions & 15 deletions
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ require (
2121
github.com/didi/gendry v1.7.0
2222
github.com/djherbis/times v1.5.0
2323
github.com/evanphx/json-patch v4.12.0+incompatible
24-
github.com/go-git/go-git/v5 v5.8.1
24+
github.com/go-git/go-git/v5 v5.11.0
2525
github.com/go-sql-driver/mysql v1.6.0
2626
github.com/go-test/deep v1.0.3
2727
github.com/goccy/go-yaml v1.11.0
@@ -31,7 +31,7 @@ require (
3131
github.com/gonvenience/text v1.0.5
3232
github.com/gonvenience/wrap v1.1.0
3333
github.com/gonvenience/ytbx v1.3.0
34-
github.com/google/go-cmp v0.5.9
34+
github.com/google/go-cmp v0.6.0
3535
github.com/google/go-github/v50 v50.0.0
3636
github.com/hashicorp/errwrap v1.1.0
3737
github.com/hashicorp/go-multierror v1.1.1
@@ -42,8 +42,8 @@ require (
4242
github.com/jinzhu/copier v0.3.2
4343
github.com/lucasb-eyer/go-colorful v1.0.3
4444
github.com/mitchellh/hashstructure v1.0.0
45-
github.com/onsi/ginkgo/v2 v2.9.5
46-
github.com/onsi/gomega v1.27.7
45+
github.com/onsi/ginkgo/v2 v2.11.0
46+
github.com/onsi/gomega v1.27.10
4747
github.com/pkg/errors v0.9.1
4848
github.com/prometheus-operator/prometheus-operator/pkg/apis/monitoring v0.67.1
4949
github.com/pterm/pterm v0.12.60
@@ -69,7 +69,7 @@ require (
6969
k8s.io/utils v0.0.0-20230726121419-3b25d923346b
7070
kcl-lang.io/kcl-go v0.7.1
7171
kcl-lang.io/kcl-plugin v0.5.0
72-
kcl-lang.io/kpm v0.4.7
72+
kcl-lang.io/kpm v0.6.0
7373
kusionstack.io/kube-api v0.1.1
7474
sigs.k8s.io/controller-runtime v0.15.1
7575
)
@@ -87,6 +87,7 @@ require (
8787
github.com/aliyun/alibaba-cloud-sdk-go v1.61.1800 // indirect
8888
github.com/aliyun/alibabacloud-dkms-gcs-go-sdk v0.5.1 // indirect
8989
github.com/aliyun/alibabacloud-dkms-transfer-go-sdk v0.1.8 // indirect
90+
github.com/cyphar/filepath-securejoin v0.2.4 // indirect
9091
github.com/deckarep/golang-set v1.7.1 // indirect
9192
github.com/go-errors/errors v1.4.2 // indirect
9293
github.com/google/btree v1.0.1 // indirect
@@ -124,7 +125,6 @@ require (
124125
github.com/MakeNowJust/heredoc v1.0.0 // indirect
125126
github.com/Microsoft/go-winio v0.6.1 // indirect
126127
github.com/ProtonMail/go-crypto v0.0.0-20230828082145-3c4c8a2d2371 // indirect
127-
github.com/acomagu/bufpipe v1.0.4 // indirect
128128
github.com/aead/chacha20 v0.0.0-20180709150244-8b13a72661da // indirect
129129
github.com/agext/levenshtein v1.2.1 // indirect
130130
github.com/aliyun/aliyun-secretsmanager-client-go v1.1.4
@@ -164,7 +164,7 @@ require (
164164
github.com/emirpasic/gods v1.18.1 // indirect
165165
github.com/fatih/color v1.13.0 // indirect
166166
github.com/go-git/gcfg v1.5.1-0.20230307220236-3a3c6141e376 // indirect
167-
github.com/go-git/go-billy/v5 v5.4.1 // indirect
167+
github.com/go-git/go-billy/v5 v5.5.0 // indirect
168168
github.com/go-jose/go-jose/v3 v3.0.0 // indirect
169169
github.com/go-logr/logr v1.2.4 // indirect
170170
github.com/go-logr/stdr v1.2.2 // indirect
@@ -241,14 +241,14 @@ require (
241241
github.com/prometheus/common v0.44.0 // indirect
242242
github.com/prometheus/procfs v0.11.1 // indirect
243243
github.com/rivo/uniseg v0.4.4 // indirect
244-
github.com/rogpeppe/go-internal v1.10.0 // indirect
244+
github.com/rogpeppe/go-internal v1.11.0 // indirect
245245
github.com/russross/blackfriday/v2 v2.1.0 // indirect
246246
github.com/ryanuber/go-glob v1.0.0 // indirect
247247
github.com/sabhiram/go-gitignore v0.0.0-20210923224102-525f6e181f06 // indirect
248248
github.com/santhosh-tekuri/jsonschema/v5 v5.0.0 // indirect
249249
github.com/satori/go.uuid v1.2.0 // indirect
250250
github.com/sirupsen/logrus v1.9.3 // indirect
251-
github.com/skeema/knownhosts v1.2.0 // indirect
251+
github.com/skeema/knownhosts v1.2.1 // indirect
252252
github.com/smartystreets/assertions v0.0.0-20180927180507-b2de0cb4f26d // indirect
253253
github.com/smartystreets/goconvey v1.6.4 // indirect
254254
github.com/spf13/pflag v1.0.5
@@ -267,16 +267,16 @@ require (
267267
go.uber.org/atomic v1.9.0 // indirect
268268
go.uber.org/multierr v1.6.0 // indirect
269269
golang.org/x/arch v0.1.0 // indirect
270-
golang.org/x/crypto v0.14.0 // indirect
270+
golang.org/x/crypto v0.16.0 // indirect
271271
golang.org/x/mod v0.12.0 // indirect
272-
golang.org/x/net v0.17.0 // indirect
272+
golang.org/x/net v0.19.0 // indirect
273273
golang.org/x/oauth2 v0.10.0 // indirect
274274
golang.org/x/sync v0.3.0 // indirect
275-
golang.org/x/sys v0.13.0 // indirect
276-
golang.org/x/term v0.13.0 // indirect
277-
golang.org/x/text v0.13.0 // indirect
275+
golang.org/x/sys v0.15.0 // indirect
276+
golang.org/x/term v0.15.0 // indirect
277+
golang.org/x/text v0.14.0 // indirect
278278
golang.org/x/time v0.3.0 // indirect
279-
golang.org/x/tools v0.12.0 // indirect
279+
golang.org/x/tools v0.13.0 // indirect
280280
golang.org/x/xerrors v0.0.0-20220907171357-04be3eba64a2 // indirect
281281
google.golang.org/appengine v1.6.7 // indirect
282282
google.golang.org/genproto/googleapis/rpc v0.0.0-20230822172742-b8732ec3820d // indirect

0 commit comments

Comments
 (0)