id
int64
0
886
original_context
stringlengths
648
56.6k
modified_context
stringlengths
587
47.6k
omitted_context
listlengths
0
19
omitted_index
listlengths
0
19
metadata
dict
600
diff --git a/pkg/chart/v2/util/chartfile.go b/pkg/chart/v2/util/chartfile.go index 87323c201c5..b48687d55f0 100644 --- a/pkg/chart/v2/util/chartfile.go +++ b/pkg/chart/v2/util/chartfile.go @@ -37,6 +37,17 @@ func LoadChartfile(filename string) (*chart.Metadata, error) { return y, err } +// StrictLoadChartFile load...
diff --git a/pkg/chart/v2/util/chartfile.go b/pkg/chart/v2/util/chartfile.go index 87323c201c5..b48687d55f0 100644 --- a/pkg/chart/v2/util/chartfile.go +++ b/pkg/chart/v2/util/chartfile.go @@ -37,6 +37,17 @@ func LoadChartfile(filename string) (*chart.Metadata, error) { return y, err +func StrictLoadChartfile(filenam...
[ "+// StrictLoadChartFile loads a Chart.yaml into a *chart.Metadata using a strict unmarshaling", "+\treturn y, err" ]
[ 8, 16 ]
{ "additions": 38, "author": "edbmiller", "deletions": 0, "html_url": "https://github.com/helm/helm/pull/12382", "issue_id": 12382, "merged_at": "2025-04-20T19:35:51Z", "omission_probability": 0.1, "pr_number": 12382, "repo": "helm/helm", "title": "fix(pkg/lint): unmarshals Chart.yaml strictly", "...
601
diff --git a/.github/env b/.github/env new file mode 100644 index 00000000000..b321f6ef747 --- /dev/null +++ b/.github/env @@ -0,0 +1,2 @@ +GOLANG_VERSION=1.24 +GOLANGCI_LINT_VERSION=v2.0.2 diff --git a/.github/workflows/build-test.yml b/.github/workflows/build-test.yml index b654bf4d68b..6ed7092dca9 100644 --- a/.gith...
diff --git a/.github/env b/.github/env new file mode 100644 index 00000000000..b321f6ef747 --- /dev/null +++ b/.github/env @@ -0,0 +1,2 @@ +GOLANG_VERSION=1.24 +GOLANGCI_LINT_VERSION=v2.0.2 diff --git a/.github/workflows/build-test.yml b/.github/workflows/build-test.yml index b654bf4d68b..6ed7092dca9 100644 --- a/.gith...
[]
[]
{ "additions": 21, "author": "dongjiang1989", "deletions": 10, "html_url": "https://github.com/helm/helm/pull/30677", "issue_id": 30677, "merged_at": "2025-04-18T19:02:37Z", "omission_probability": 0.1, "pr_number": 30677, "repo": "helm/helm", "title": "chore: Update Golang to v1.24", "total_chang...
602
diff --git a/pkg/action/hooks.go b/pkg/action/hooks.go index 37e134c48c6..dbacb123ef1 100644 --- a/pkg/action/hooks.go +++ b/pkg/action/hooks.go @@ -112,7 +112,7 @@ func (cfg *Configuration) execHook(rl *release.Release, hook release.HookEvent, // If a hook is failed, check the annotation of the previous successf...
diff --git a/pkg/action/hooks.go b/pkg/action/hooks.go index 37e134c48c6..dbacb123ef1 100644 --- a/pkg/action/hooks.go +++ b/pkg/action/hooks.go @@ -112,7 +112,7 @@ func (cfg *Configuration) execHook(rl *release.Release, hook release.HookEvent, // If a hook is failed, check the annotation of the previous successful...
[ "-func (cfg *Configuration) deleteHooksByPolicy(hooks []*release.Hook, policy release.HookDeletePolicy, timeout time.Duration) error {", "+\t\tPrintingKubeWaiter: waiter.(*kubefake.PrintingKubeWaiter)," ]
[ 17, 65 ]
{ "additions": 19, "author": "benoittgt", "deletions": 13, "html_url": "https://github.com/helm/helm/pull/30766", "issue_id": 30766, "merged_at": "2025-04-17T12:36:50Z", "omission_probability": 0.1, "pr_number": 30766, "repo": "helm/helm", "title": "Fix main branch by defining wait strategy paramete...
603
diff --git a/pkg/kube/wait.go b/pkg/kube/wait.go index bdafc825564..c602004ad4f 100644 --- a/pkg/kube/wait.go +++ b/pkg/kube/wait.go @@ -49,6 +49,7 @@ type waiter struct { func (w *waiter) waitForResources(created ResourceList) error { w.log("beginning wait for %d resources with timeout of %v", len(created), w.timeo...
diff --git a/pkg/kube/wait.go b/pkg/kube/wait.go index bdafc825564..c602004ad4f 100644 --- a/pkg/kube/wait.go +++ b/pkg/kube/wait.go @@ -49,6 +49,7 @@ type waiter struct { func (w *waiter) waitForResources(created ResourceList) error { w.log("beginning wait for %d resources with timeout of %v", len(created), w.timeo...
[]
[]
{ "additions": 11, "author": "benoittgt", "deletions": 1, "html_url": "https://github.com/helm/helm/pull/30689", "issue_id": 30689, "merged_at": "2025-03-21T20:21:17Z", "omission_probability": 0.1, "pr_number": 30689, "repo": "helm/helm", "title": "Report as debug log, the time spent waiting for res...
604
diff --git a/go.mod b/go.mod index 190fcff0f8d..ad119b6b8d7 100644 --- a/go.mod +++ b/go.mod @@ -29,6 +29,7 @@ require ( github.com/phayes/freeport v0.0.0-20220201140144-74d24b5ae9f5 github.com/pkg/errors v0.9.1 github.com/rubenv/sql-migrate v1.7.1 + github.com/santhosh-tekuri/jsonschema/v6 v6.0.1 github.com/sp...
diff --git a/go.mod b/go.mod index 190fcff0f8d..ad119b6b8d7 100644 --- a/go.mod +++ b/go.mod @@ -29,6 +29,7 @@ require ( github.com/phayes/freeport v0.0.0-20220201140144-74d24b5ae9f5 github.com/pkg/errors v0.9.1 github.com/rubenv/sql-migrate v1.7.1 + github.com/santhosh-tekuri/jsonschema/v6 v6.0.1 github.com/sp...
[ "+\tif schemaIs2020(schemaJSON) {", "+func schemaIs2020(schemaJSON []byte) bool {", "+\t\"properties\": {", "+\t\t\t\"contains\": { \"type\": \"string\" }," ]
[ 56, 92, 111, 114 ]
{ "additions": 124, "author": "win-t", "deletions": 0, "html_url": "https://github.com/helm/helm/pull/13283", "issue_id": 13283, "merged_at": "2025-04-14T18:52:03Z", "omission_probability": 0.1, "pr_number": 13283, "repo": "helm/helm", "title": "adding support for JSON Schema 2020", "total_changes...
605
diff --git a/pkg/kube/wait.go b/pkg/kube/wait.go index 7eb931496ef..71c6add5344 100644 --- a/pkg/kube/wait.go +++ b/pkg/kube/wait.go @@ -19,6 +19,7 @@ package kube // import "helm.sh/helm/v4/pkg/kube" import ( "context" "fmt" + "log/slog" "net/http" "time" @@ -101,12 +102,13 @@ func (w *waiter) isRetryableHT...
diff --git a/pkg/kube/wait.go b/pkg/kube/wait.go index 7eb931496ef..71c6add5344 100644 --- a/pkg/kube/wait.go +++ b/pkg/kube/wait.go @@ -19,6 +19,7 @@ package kube // import "helm.sh/helm/v4/pkg/kube" import ( "context" "fmt" "net/http" "time" @@ -101,12 +102,13 @@ func (w *waiter) isRetryableHTTPStatusCode(ht...
[ "+\t\"log/slog\"", "+\tstartTime := time.Now()", "+\t\tslog.Debug(\"wait for resources succeeded\", \"elapsed\", elapsed)" ]
[ 8, 19, 37 ]
{ "additions": 13, "author": "benoittgt", "deletions": 2, "html_url": "https://github.com/helm/helm/pull/30696", "issue_id": 30696, "merged_at": "2025-03-24T19:19:10Z", "omission_probability": 0.1, "pr_number": 30696, "repo": "helm/helm", "title": "Inform about time spent waiting resources to be rea...
606
diff --git a/go.mod b/go.mod index 723cfc7691b..0589b84e9b5 100644 --- a/go.mod +++ b/go.mod @@ -11,7 +11,6 @@ require ( github.com/Masterminds/squirrel v1.5.4 github.com/Masterminds/vcs v1.13.3 github.com/asaskevich/govalidator v0.0.0-20230301143203-a9d515a09cc2 - github.com/containerd/containerd v1.7.27 githu...
diff --git a/go.mod b/go.mod index 723cfc7691b..0589b84e9b5 100644 --- a/go.mod +++ b/go.mod @@ -11,7 +11,6 @@ require ( github.com/Masterminds/squirrel v1.5.4 github.com/Masterminds/vcs v1.13.3 github.com/asaskevich/govalidator v0.0.0-20230301143203-a9d515a09cc2 - github.com/containerd/containerd v1.7.27 githu...
[ "-\tgithub.com/containerd/platforms v0.2.1 // indirect", "-github.com/containerd/errdefs v0.3.0 h1:FSZgGOeK4yuT/+DnF07/Olde/q4KBoMsaamhXxIMDp4=", "-\treturn func(c *Client) {", "-Unless required by applicable law or agreed to in writing, software", "-\t\"github.com/stretchr/testify/require\"", "-\tvar r r...
[ 18, 32, 67, 90, 104, 108 ]
{ "additions": 0, "author": "twz123", "deletions": 54, "html_url": "https://github.com/helm/helm/pull/30684", "issue_id": 30684, "merged_at": "2025-03-21T20:34:14Z", "omission_probability": 0.1, "pr_number": 30684, "repo": "helm/helm", "title": "Remove ClientOptResolver from OCI Client", "total_ch...
607
diff --git a/go.mod b/go.mod index e711376991b..a83d7bf6960 100644 --- a/go.mod +++ b/go.mod @@ -34,7 +34,7 @@ require ( github.com/stretchr/testify v1.10.0 github.com/xeipuuv/gojsonschema v1.2.0 golang.org/x/crypto v0.36.0 - golang.org/x/term v0.30.0 + golang.org/x/term v0.31.0 golang.org/x/text v0.24.0 gopk...
diff --git a/go.mod b/go.mod index e711376991b..a83d7bf6960 100644 --- a/go.mod +++ b/go.mod @@ -34,7 +34,7 @@ require ( github.com/stretchr/testify v1.10.0 github.com/xeipuuv/gojsonschema v1.2.0 golang.org/x/crypto v0.36.0 - golang.org/x/term v0.30.0 + golang.org/x/term v0.31.0 golang.org/x/text v0.24.0 gopk...
[ "+golang.org/x/term v0.31.0 h1:erwDkOK1Msy6offm1mOgvspSkslFnIGsFnxOKoufg3o=" ]
[ 43 ]
{ "additions": 6, "author": "dependabot[bot]", "deletions": 6, "html_url": "https://github.com/helm/helm/pull/30750", "issue_id": 30750, "merged_at": "2025-04-14T12:38:54Z", "omission_probability": 0.1, "pr_number": 30750, "repo": "helm/helm", "title": "build(deps): bump golang.org/x/term from 0.30....
608
diff --git a/go.mod b/go.mod index b5fb3eb5fe1..e711376991b 100644 --- a/go.mod +++ b/go.mod @@ -35,7 +35,7 @@ require ( github.com/xeipuuv/gojsonschema v1.2.0 golang.org/x/crypto v0.36.0 golang.org/x/term v0.30.0 - golang.org/x/text v0.23.0 + golang.org/x/text v0.24.0 gopkg.in/yaml.v3 v3.0.1 k8s.io/api v0.32...
diff --git a/go.mod b/go.mod index b5fb3eb5fe1..e711376991b 100644 --- a/go.mod +++ b/go.mod @@ -35,7 +35,7 @@ require ( github.com/xeipuuv/gojsonschema v1.2.0 golang.org/x/crypto v0.36.0 golang.org/x/term v0.30.0 - golang.org/x/text v0.23.0 + golang.org/x/text v0.24.0 gopkg.in/yaml.v3 v3.0.1 k8s.io/api v0.32...
[ "-\tgolang.org/x/sync v0.12.0 // indirect" ]
[ 17 ]
{ "additions": 6, "author": "benoittgt", "deletions": 6, "html_url": "https://github.com/helm/helm/pull/30745", "issue_id": 30745, "merged_at": "2025-04-13T22:38:03Z", "omission_probability": 0.1, "pr_number": 30745, "repo": "helm/helm", "title": "Bump text package with minimal impact", "total_cha...
609
diff --git a/pkg/release/util/kind_sorter.go b/pkg/release/util/kind_sorter.go index 22795733c11..bc074340fb6 100644 --- a/pkg/release/util/kind_sorter.go +++ b/pkg/release/util/kind_sorter.go @@ -65,12 +65,17 @@ var InstallOrder KindSortOrder = []string{ "IngressClass", "Ingress", "APIService", + "MutatingWebhoo...
diff --git a/pkg/release/util/kind_sorter.go b/pkg/release/util/kind_sorter.go index 22795733c11..bc074340fb6 100644 --- a/pkg/release/util/kind_sorter.go +++ b/pkg/release/util/kind_sorter.go @@ -65,12 +65,17 @@ var InstallOrder KindSortOrder = []string{ } // UninstallOrder is the order in which manifests should be ...
[]
[]
{ "additions": 15, "author": "zanuka", "deletions": 2, "html_url": "https://github.com/helm/helm/pull/30701", "issue_id": 30701, "merged_at": "2025-04-11T20:56:39Z", "omission_probability": 0.1, "pr_number": 30701, "repo": "helm/helm", "title": "updates mutate and validate web hook configs", "tota...
610
diff --git a/pkg/lint/rules/template.go b/pkg/lint/rules/template.go index 287968340a3..4d421f5bf0f 100644 --- a/pkg/lint/rules/template.go +++ b/pkg/lint/rules/template.go @@ -24,7 +24,6 @@ import ( "os" "path" "path/filepath" - "regexp" "strings" "github.com/pkg/errors" @@ -39,11 +38,6 @@ import ( "helm...
diff --git a/pkg/lint/rules/template.go b/pkg/lint/rules/template.go index 287968340a3..4d421f5bf0f 100644 --- a/pkg/lint/rules/template.go +++ b/pkg/lint/rules/template.go @@ -24,7 +24,6 @@ import ( "os" "path" "path/filepath" - "regexp" "strings" "github.com/pkg/errors" @@ -39,11 +38,6 @@ import ( "helm.s...
[ "-\tcrdHookSearch = regexp.MustCompile(`\"?helm\\.sh/hook\"?:\\s+crd-install`)", "-\t\t// chart is not compatible with v3", "-\tif len(res) != 3 {", "-\tif !strings.Contains(res[1].Err.Error(), \"manifest is a crd-install hook\") {" ]
[ 17, 34, 74, 81 ]
{ "additions": 1, "author": "gjenkins8", "deletions": 45, "html_url": "https://github.com/helm/helm/pull/30713", "issue_id": 30713, "merged_at": "2025-04-11T20:35:52Z", "omission_probability": 0.1, "pr_number": 30713, "repo": "helm/helm", "title": "cleanup: Remove Helm v2 template lint rules", "to...
611
diff --git a/go.mod b/go.mod index aef4a656dde..190fcff0f8d 100644 --- a/go.mod +++ b/go.mod @@ -1,6 +1,6 @@ module helm.sh/helm/v4 -go 1.23.0 +go 1.23.7 require ( github.com/AdaLogics/go-fuzz-headers v0.0.0-20230811130428-ced1acdcaa24 @@ -12,7 +12,7 @@ require ( github.com/Masterminds/vcs v1.13.3 github.co...
diff --git a/go.mod b/go.mod index aef4a656dde..190fcff0f8d 100644 --- a/go.mod +++ b/go.mod @@ -1,6 +1,6 @@ module helm.sh/helm/v4 -go 1.23.0 +go 1.23.7 require ( github.com/AdaLogics/go-fuzz-headers v0.0.0-20230811130428-ced1acdcaa24 @@ -12,7 +12,7 @@ require ( github.com/Masterminds/vcs v1.13.3 github.com/as...
[]
[]
{ "additions": 10, "author": "benoittgt", "deletions": 10, "html_url": "https://github.com/helm/helm/pull/30741", "issue_id": 30741, "merged_at": "2025-04-11T19:53:39Z", "omission_probability": 0.1, "pr_number": 30741, "repo": "helm/helm", "title": "Bumps github.com/distribution/distribution/v3 from...
612
diff --git a/go.mod b/go.mod index a92ab4fb26b..b5fb3eb5fe1 100644 --- a/go.mod +++ b/go.mod @@ -1,6 +1,6 @@ module helm.sh/helm/v3 -go 1.23.0 +go 1.23.7 require ( github.com/AdaLogics/go-fuzz-headers v0.0.0-20230811130428-ced1acdcaa24 @@ -13,7 +13,7 @@ require ( github.com/asaskevich/govalidator v0.0.0-20230...
diff --git a/go.mod b/go.mod index a92ab4fb26b..b5fb3eb5fe1 100644 --- a/go.mod +++ b/go.mod @@ -1,6 +1,6 @@ module helm.sh/helm/v3 -go 1.23.0 +go 1.23.7 require ( github.com/AdaLogics/go-fuzz-headers v0.0.0-20230811130428-ced1acdcaa24 @@ -13,7 +13,7 @@ require ( github.com/asaskevich/govalidator v0.0.0-202303011...
[ "-\tgithub.com/redis/go-redis/v9 v9.1.0 // indirect", "-github.com/bsm/ginkgo/v2 v2.9.5 h1:rtVBYPs3+TC5iLUVOis1B9tjLTup7Cj5IfzosKtvTJ0=", "-github.com/redis/go-redis/v9 v9.1.0/go.mod h1:urWj3He21Dj5k4TK1y59xH8Uj6ATueP8AH1cY3lZl4c=", "+golang.org/x/oauth2 v0.28.0 h1:CrgCKl8PPAVtLnU3c+EDw6x11699EWlsDeWNWKdIOkc=...
[ 25, 47, 74, 86 ]
{ "additions": 14, "author": "benoittgt", "deletions": 13, "html_url": "https://github.com/helm/helm/pull/30740", "issue_id": 30740, "merged_at": "2025-04-11T19:47:52Z", "omission_probability": 0.1, "pr_number": 30740, "repo": "helm/helm", "title": "Bumps github.com/distribution/distribution/v3 from...
613
diff --git a/pkg/action/action.go b/pkg/action/action.go index ea2dc0dd7e5..187df54120b 100644 --- a/pkg/action/action.go +++ b/pkg/action/action.go @@ -23,7 +23,6 @@ import ( "os" "path" "path/filepath" - "regexp" "strings" "github.com/pkg/errors" @@ -63,21 +62,6 @@ var ( errPending = errors.New("another...
diff --git a/pkg/action/action.go b/pkg/action/action.go index ea2dc0dd7e5..187df54120b 100644 --- a/pkg/action/action.go +++ b/pkg/action/action.go @@ -23,7 +23,6 @@ import ( "os" "path" "path/filepath" "strings" "github.com/pkg/errors" @@ -63,21 +62,6 @@ var ( errPending = errors.New("another operation (i...
[ "-\t\"regexp\"", "-// https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names" ]
[ 8, 28 ]
{ "additions": 0, "author": "mattfarina", "deletions": 19, "html_url": "https://github.com/helm/helm/pull/30686", "issue_id": 30686, "merged_at": "2025-04-11T18:34:47Z", "omission_probability": 0.1, "pr_number": 30686, "repo": "helm/helm", "title": "Remove deprecated code", "total_changes": 19 }
614
diff --git a/go.mod b/go.mod index 66bb60fb3ea..aef4a656dde 100644 --- a/go.mod +++ b/go.mod @@ -33,9 +33,9 @@ require ( github.com/spf13/pflag v1.0.6 github.com/stretchr/testify v1.10.0 github.com/xeipuuv/gojsonschema v1.2.0 - golang.org/x/crypto v0.36.0 - golang.org/x/term v0.30.0 - golang.org/x/text v0.23.0 + ...
diff --git a/go.mod b/go.mod index 66bb60fb3ea..aef4a656dde 100644 --- a/go.mod +++ b/go.mod @@ -33,9 +33,9 @@ require ( github.com/spf13/pflag v1.0.6 github.com/stretchr/testify v1.10.0 github.com/xeipuuv/gojsonschema v1.2.0 - golang.org/x/crypto v0.36.0 - golang.org/x/term v0.30.0 - golang.org/x/text v0.23.0 + ...
[ "+golang.org/x/crypto v0.37.0 h1:kJNSjF/Xp7kU0iB2Z+9viTPMW4EqqsrywMXLJOOsXSE=", "-golang.org/x/sys v0.31.0/go.mod h1:BJP2sWEmIv4KK5OTEluFJCKSidICx8ciO85XgH3Ak8k=" ]
[ 38, 59 ]
{ "additions": 15, "author": "dependabot[bot]", "deletions": 15, "html_url": "https://github.com/helm/helm/pull/30730", "issue_id": 30730, "merged_at": "2025-04-09T15:35:42Z", "omission_probability": 0.1, "pr_number": 30730, "repo": "helm/helm", "title": "build(deps): bump golang.org/x/crypto from 0...
615
diff --git a/go.mod b/go.mod index bfc55057a67..66bb60fb3ea 100644 --- a/go.mod +++ b/go.mod @@ -129,7 +129,7 @@ require ( github.com/prometheus/procfs v0.15.1 // indirect github.com/redis/go-redis/extra/rediscmd/v9 v9.0.5 // indirect github.com/redis/go-redis/extra/redisotel/v9 v9.0.5 // indirect - github.com/re...
diff --git a/go.mod b/go.mod index bfc55057a67..66bb60fb3ea 100644 --- a/go.mod +++ b/go.mod @@ -129,7 +129,7 @@ require ( github.com/prometheus/procfs v0.15.1 // indirect github.com/redis/go-redis/extra/rediscmd/v9 v9.0.5 // indirect github.com/redis/go-redis/extra/redisotel/v9 v9.0.5 // indirect - github.com/re...
[ "-github.com/bsm/ginkgo/v2 v2.9.5/go.mod h1:SwYbGRRDovPVboqFv0tPTcG1sN61LM1Z4ARdbAV9g4c=", "+github.com/redis/go-redis/v9 v9.6.3/go.mod h1:0C0c6ycQsdpVNQpxb1njEQIqkx5UcsM8FJCQLgE9+RA=" ]
[ 22, 39 ]
{ "additions": 7, "author": "robertsirc", "deletions": 6, "html_url": "https://github.com/helm/helm/pull/30736", "issue_id": 30736, "merged_at": "2025-04-09T15:11:06Z", "omission_probability": 0.1, "pr_number": 30736, "repo": "helm/helm", "title": "manually updating go.mod file", "total_changes": ...
616
diff --git a/pkg/cmd/repo_update.go b/pkg/cmd/repo_update.go index 6590d987202..12de2bdaa73 100644 --- a/pkg/cmd/repo_update.go +++ b/pkg/cmd/repo_update.go @@ -111,20 +111,30 @@ func (o *repoUpdateOptions) run(out io.Writer) error { func updateCharts(repos []*repo.ChartRepository, out io.Writer) error { fmt.Fprintl...
diff --git a/pkg/cmd/repo_update.go b/pkg/cmd/repo_update.go index 6590d987202..12de2bdaa73 100644 --- a/pkg/cmd/repo_update.go +++ b/pkg/cmd/repo_update.go @@ -111,20 +111,30 @@ func (o *repoUpdateOptions) run(out io.Writer) error { func updateCharts(repos []*repo.ChartRepository, out io.Writer) error { fmt.Fprintl...
[ "-\terr = updateCharts([]*repo.ChartRepository{r}, b)" ]
[ 62 ]
{ "additions": 22, "author": "idsulik", "deletions": 5, "html_url": "https://github.com/helm/helm/pull/13119", "issue_id": 13119, "merged_at": "2025-04-05T17:50:59Z", "omission_probability": 0.1, "pr_number": 13119, "repo": "helm/helm", "title": "fix(concurrency): Use channel for repoFailList errors...
617
diff --git a/cmd/helm/repo_add.go b/cmd/helm/repo_add.go index 6a8a70a0f68..d0b20c8b61d 100644 --- a/cmd/helm/repo_add.go +++ b/cmd/helm/repo_add.go @@ -59,9 +59,6 @@ type repoAddOptions struct { repoFile string repoCache string - - // Deprecated, but cannot be removed until Helm 4 - deprecatedNoUpdate bool } ...
diff --git a/cmd/helm/repo_add.go b/cmd/helm/repo_add.go index 6a8a70a0f68..d0b20c8b61d 100644 --- a/cmd/helm/repo_add.go +++ b/cmd/helm/repo_add.go @@ -59,9 +59,6 @@ type repoAddOptions struct { repoFile string repoCache string - - // Deprecated, but cannot be removed until Helm 4 - deprecatedNoUpdate bool } fu...
[]
[]
{ "additions": 12, "author": "gjenkins8", "deletions": 19, "html_url": "https://github.com/helm/helm/pull/13494", "issue_id": 13494, "merged_at": "2025-01-18T16:37:15Z", "omission_probability": 0.1, "pr_number": 13494, "repo": "helm/helm", "title": "Remove deprecated `repo add --no-update` flag", ...
618
diff --git a/pkg/action/action_test.go b/pkg/action/action_test.go index 149eb85b183..3bf64c3e06b 100644 --- a/pkg/action/action_test.go +++ b/pkg/action/action_test.go @@ -344,7 +344,7 @@ func TestConfiguration_Init(t *testing.T) { } func TestGetVersionSet(t *testing.T) { - client := fakeclientset.NewSimpleClients...
diff --git a/pkg/action/action_test.go b/pkg/action/action_test.go index 149eb85b183..3bf64c3e06b 100644 --- a/pkg/action/action_test.go +++ b/pkg/action/action_test.go @@ -344,7 +344,7 @@ func TestConfiguration_Init(t *testing.T) { } func TestGetVersionSet(t *testing.T) { - client := fakeclientset.NewSimpleClientset...
[ "+\tclient := fakeclientset.NewClientset()" ]
[ 9 ]
{ "additions": 31, "author": "thudi", "deletions": 31, "html_url": "https://github.com/helm/helm/pull/13458", "issue_id": 13458, "merged_at": "2025-04-05T13:39:49Z", "omission_probability": 0.1, "pr_number": 13458, "repo": "helm/helm", "title": "#13449 Resolves: Replacing NewSimpleClientSet to NewCl...
619
diff --git a/internal/sympath/walk.go b/internal/sympath/walk.go index 6b221fb6cc0..0cd258d3958 100644 --- a/internal/sympath/walk.go +++ b/internal/sympath/walk.go @@ -21,7 +21,7 @@ limitations under the License. package sympath import ( - "log" + "log/slog" "os" "path/filepath" "sort" @@ -72,7 +72,7 @@ func...
diff --git a/internal/sympath/walk.go b/internal/sympath/walk.go index 6b221fb6cc0..0cd258d3958 100644 --- a/internal/sympath/walk.go +++ b/internal/sympath/walk.go @@ -21,7 +21,7 @@ limitations under the License. package sympath @@ -72,7 +72,7 @@ func symwalk(path string, info os.FileInfo, walkFn filepath.WalkFunc) e...
[ "-\t\t\t\t\tlog.Printf(\"Warning: Condition path '%s' for chart %s returned non-bool value\", c, r.Name)", "+\t\tslog.Error(\"unable to create discovery client\", slog.Any(\"error\", err))", "+\tslog.Debug(\"copying\", \"source\", src, \"path\", i.Path())", "-func debug(format string, args ...interface{}) {",...
[ 39, 151, 227, 251, 299, 306, 341, 345, 367 ]
{ "additions": 40, "author": "robertsirc", "deletions": 46, "html_url": "https://github.com/helm/helm/pull/30603", "issue_id": 30603, "merged_at": "2025-03-21T20:18:40Z", "omission_probability": 0.1, "pr_number": 30603, "repo": "helm/helm", "title": "converting inline log to slog", "total_changes"...
620
diff --git a/pkg/chart/v2/util/create.go b/pkg/chart/v2/util/create.go index 7eb3398f5af..35a8c64a04d 100644 --- a/pkg/chart/v2/util/create.go +++ b/pkg/chart/v2/util/create.go @@ -54,6 +54,8 @@ const ( IgnorefileName = ".helmignore" // IngressFileName is the name of the example ingress file. IngressFileName = Te...
diff --git a/pkg/chart/v2/util/create.go b/pkg/chart/v2/util/create.go index 7eb3398f5af..35a8c64a04d 100644 --- a/pkg/chart/v2/util/create.go +++ b/pkg/chart/v2/util/create.go @@ -54,6 +54,8 @@ const ( IgnorefileName = ".helmignore" // IngressFileName is the name of the example ingress file. IngressFileName = Te...
[ "+ - name: gateway", "+ # Hostnames matching HTTP header.", "+ # - path:", "+ # type: PathPrefix", "+ {{- with .Values.httpRoute.parentRefs }}", "+ - name: {{ $fullName }}", "+`", "+ export APP_HOSTNAME=$(kubectl get --namespace {{(first .Values.httpRoute.parentRefs).namespace...
[ 27, 30, 48, 49, 77, 95, 100, 114, 117, 120, 135 ]
{ "additions": 101, "author": "hegerdes", "deletions": 3, "html_url": "https://github.com/helm/helm/pull/12912", "issue_id": 12912, "merged_at": "2025-03-11T23:09:32Z", "omission_probability": 0.1, "pr_number": 12912, "repo": "helm/helm", "title": "feat: add httproute from gateway-api to create char...
621
diff --git a/.github/workflows/build-test.yml b/.github/workflows/build-test.yml index 2ccea3d0e19..b654bf4d68b 100644 --- a/.github/workflows/build-test.yml +++ b/.github/workflows/build-test.yml @@ -20,7 +20,7 @@ jobs: - name: Checkout source code uses: actions/checkout@11bd71901bbe5b1630ceea73d275973...
diff --git a/.github/workflows/build-test.yml b/.github/workflows/build-test.yml index 2ccea3d0e19..b654bf4d68b 100644 --- a/.github/workflows/build-test.yml +++ b/.github/workflows/build-test.yml @@ -20,7 +20,7 @@ jobs: - name: Checkout source code diff --git a/.github/workflows/golangci-lint.yml b/.github/work...
[]
[]
{ "additions": 5, "author": "dependabot[bot]", "deletions": 5, "html_url": "https://github.com/helm/helm/pull/30688", "issue_id": 30688, "merged_at": "2025-03-21T20:15:27Z", "omission_probability": 0.1, "pr_number": 30688, "repo": "helm/helm", "title": "build(deps): bump actions/setup-go from 5.3.0 ...
622
diff --git a/pkg/cmd/repo_update.go b/pkg/cmd/repo_update.go index 25071377b51..6590d987202 100644 --- a/pkg/cmd/repo_update.go +++ b/pkg/cmd/repo_update.go @@ -42,11 +42,10 @@ To update all the repositories, use 'helm repo update'. var errNoRepositories = errors.New("no repositories found. You must add one before upd...
diff --git a/pkg/cmd/repo_update.go b/pkg/cmd/repo_update.go index 25071377b51..6590d987202 100644 --- a/pkg/cmd/repo_update.go +++ b/pkg/cmd/repo_update.go @@ -42,11 +42,10 @@ To update all the repositories, use 'helm repo update'. var errNoRepositories = errors.New("no repositories found. You must add one before upd...
[ "-\t\tt.Error(\"Update was not successful\")" ]
[ 128 ]
{ "additions": 12, "author": "mattfarina", "deletions": 52, "html_url": "https://github.com/helm/helm/pull/30699", "issue_id": 30699, "merged_at": "2025-03-21T19:49:27Z", "omission_probability": 0.1, "pr_number": 30699, "repo": "helm/helm", "title": "Error when failed repo update.", "total_changes...
623
diff --git a/CONTRIBUTING.md b/CONTRIBUTING.md index 0c2f884538e..8ab93403d46 100644 --- a/CONTRIBUTING.md +++ b/CONTRIBUTING.md @@ -276,12 +276,26 @@ Like any good open source project, we use Pull Requests (PRs) to track code chan or explicitly request another OWNER do that for them. - If the owner of a PR...
diff --git a/CONTRIBUTING.md b/CONTRIBUTING.md index 0c2f884538e..8ab93403d46 100644 --- a/CONTRIBUTING.md +++ b/CONTRIBUTING.md @@ -276,12 +276,26 @@ Like any good open source project, we use Pull Requests (PRs) to track code chan or explicitly request another OWNER do that for them. - If the owner of a PR...
[ "+Example analysing collected profiling data", "+/*", "+*/", "+import (", "+\t\"errors\"", "+\t\tcpuProfileFile, err = os.Create(cpuProfilePath)", "+\t\tf, err := os.Create(memProfilePath)" ]
[ 19, 38, 52, 56, 57, 81, 111 ]
{ "additions": 116, "author": "banjoh", "deletions": 1, "html_url": "https://github.com/helm/helm/pull/13481", "issue_id": 13481, "merged_at": "2025-02-18T19:48:30Z", "omission_probability": 0.1, "pr_number": 13481, "repo": "helm/helm", "title": "feat: Enable CPU and memory profiling", "total_chan...
624
diff --git a/cmd/helm/dependency.go b/cmd/helm/dependency.go index 228c73c80f5..19b64860414 100644 --- a/cmd/helm/dependency.go +++ b/cmd/helm/dependency.go @@ -20,6 +20,7 @@ import ( "path/filepath" "github.com/spf13/cobra" + "github.com/spf13/pflag" "helm.sh/helm/v3/cmd/helm/require" "helm.sh/helm/v3/pkg/...
diff --git a/cmd/helm/dependency.go b/cmd/helm/dependency.go index 228c73c80f5..19b64860414 100644 --- a/cmd/helm/dependency.go +++ b/cmd/helm/dependency.go @@ -20,6 +20,7 @@ import ( "github.com/spf13/cobra" "helm.sh/helm/v3/cmd/helm/require" @@ -93,7 +94,7 @@ func newDependencyCmd(cfg *action.Configuration, out i...
[ "+\t\"github.com/spf13/pflag\"", "+\tf.BoolVar(&client.SkipRefresh, \"skip-refresh\", false, \"do not refresh the local repository cache\")", "+\t\t\terr = man.Build()", "+\tusername string", "-func newRegistryClientWithTLS(certFile, keyFile, caFile string, insecureSkipTLSverify bool) (*registr...
[ 8, 29, 77, 229, 331, 345, 443, 464, 488, 557 ]
{ "additions": 149, "author": "banjoh", "deletions": 37, "html_url": "https://github.com/helm/helm/pull/13483", "issue_id": 13483, "merged_at": "2024-11-27T15:06:27Z", "omission_probability": 0.1, "pr_number": 13483, "repo": "helm/helm", "title": "fix(helm): pass down username/password CLI parameter...
625
diff --git a/cmd/helm/dependency.go b/cmd/helm/dependency.go index 228c73c80f5..19b64860414 100644 --- a/cmd/helm/dependency.go +++ b/cmd/helm/dependency.go @@ -20,6 +20,7 @@ import ( "path/filepath" "github.com/spf13/cobra" + "github.com/spf13/pflag" "helm.sh/helm/v3/cmd/helm/require" "helm.sh/helm/v3/pkg/...
diff --git a/cmd/helm/dependency.go b/cmd/helm/dependency.go index 228c73c80f5..19b64860414 100644 --- a/cmd/helm/dependency.go +++ b/cmd/helm/dependency.go @@ -20,6 +20,7 @@ import ( "github.com/spf13/cobra" + "github.com/spf13/pflag" "helm.sh/helm/v3/cmd/helm/require" @@ -93,7 +94,7 @@ func newDependencyCmd(cfg *...
[ "-\t\t\t\t\t\tRegistryClient: cfg.RegistryClient,", "-\t\t\tregistryClient, err := newRegistryClient(o.certFile, o.keyFile, o.caFile, o.insecureSkipTLSverify, o.plainHTTP)", "+\t\t\t\to.certFile, o.keyFile, o.caFile, o.insecureSkipTLSverify, o.plainHTTP, o.username, o.password,", "+\t\"helm.sh/helm/v3/inter...
[ 188, 237, 239, 270, 336, 344, 405, 444, 488 ]
{ "additions": 149, "author": "banjoh", "deletions": 37, "html_url": "https://github.com/helm/helm/pull/12769", "issue_id": 12769, "merged_at": "2024-11-19T21:29:11Z", "omission_probability": 0.1, "pr_number": 12769, "repo": "helm/helm", "title": "fix(helm): pass down username/password CLI parameter...
626
diff --git a/go.mod b/go.mod index 271accc80e4..a92ab4fb26b 100644 --- a/go.mod +++ b/go.mod @@ -11,7 +11,7 @@ require ( github.com/Masterminds/squirrel v1.5.4 github.com/Masterminds/vcs v1.13.3 github.com/asaskevich/govalidator v0.0.0-20230301143203-a9d515a09cc2 - github.com/containerd/containerd v1.7.26 + githu...
diff --git a/go.mod b/go.mod index 271accc80e4..a92ab4fb26b 100644 --- a/go.mod +++ b/go.mod @@ -11,7 +11,7 @@ require ( github.com/Masterminds/squirrel v1.5.4 github.com/Masterminds/vcs v1.13.3 github.com/asaskevich/govalidator v0.0.0-20230301143203-a9d515a09cc2 - github.com/containerd/containerd v1.7.26 + githu...
[ "+github.com/containerd/containerd v1.7.27/go.mod h1:xZmPnl75Vc+BLGt4MIfu6bp+fy03gdHAn9bz+FreFR0=", "+github.com/xeipuuv/gojsonpointer v0.0.0-20190905194746-02993c407bfb h1:zGWFAtiMcyryUHoUjUJX0/lt1H2+i2Ka2n+D3DImSNo=" ]
[ 33, 43 ]
{ "additions": 6, "author": "dependabot[bot]", "deletions": 5, "html_url": "https://github.com/helm/helm/pull/30678", "issue_id": 30678, "merged_at": "2025-03-18T19:22:09Z", "omission_probability": 0.1, "pr_number": 30678, "repo": "helm/helm", "title": "build(deps): bump github.com/containerd/contai...
627
diff --git a/go.mod b/go.mod index cefaac3c79e..7a57525fccb 100644 --- a/go.mod +++ b/go.mod @@ -37,14 +37,14 @@ require ( golang.org/x/term v0.30.0 golang.org/x/text v0.23.0 gopkg.in/yaml.v3 v3.0.1 - k8s.io/api v0.32.2 - k8s.io/apiextensions-apiserver v0.32.2 - k8s.io/apimachinery v0.32.2 - k8s.io/apiserver v0.3...
diff --git a/go.mod b/go.mod index cefaac3c79e..7a57525fccb 100644 --- a/go.mod +++ b/go.mod @@ -37,14 +37,14 @@ require ( golang.org/x/term v0.30.0 golang.org/x/text v0.23.0 gopkg.in/yaml.v3 v3.0.1 - k8s.io/api v0.32.2 - k8s.io/apiextensions-apiserver v0.32.2 - k8s.io/apiserver v0.32.2 - k8s.io/client-go v0.32.2...
[ "-\tk8s.io/apimachinery v0.32.2", "-\tk8s.io/cli-runtime v0.32.2", "-k8s.io/cli-runtime v0.32.2 h1:aKQR4foh9qeyckKRkNXUccP9moxzffyndZAvr+IXMks=", "-k8s.io/kubectl v0.32.2 h1:TAkag6+XfSBgkqK9I7ZvwtF0WVtUAvK8ZqTt+5zi1Us=", "+k8s.io/kubectl v0.32.3 h1:VMi584rbboso+yjfv0d8uBHwwxbC438LKq+dXd5tOAI=" ]
[ 10, 12, 51, 75, 77 ]
{ "additions": 24, "author": "dependabot[bot]", "deletions": 24, "html_url": "https://github.com/helm/helm/pull/30660", "issue_id": 30660, "merged_at": "2025-03-13T21:26:14Z", "omission_probability": 0.1, "pr_number": 30660, "repo": "helm/helm", "title": "build(deps): bump the k8s-io group with 7 up...
628
diff --git a/go.mod b/go.mod index 52240730ea3..6cf38540d6a 100644 --- a/go.mod +++ b/go.mod @@ -38,14 +38,14 @@ require ( golang.org/x/term v0.30.0 golang.org/x/text v0.23.0 gopkg.in/yaml.v3 v3.0.1 - k8s.io/api v0.32.2 - k8s.io/apiextensions-apiserver v0.32.2 - k8s.io/apimachinery v0.32.2 - k8s.io/apiserver v0.3...
diff --git a/go.mod b/go.mod index 52240730ea3..6cf38540d6a 100644 --- a/go.mod +++ b/go.mod @@ -38,14 +38,14 @@ require ( golang.org/x/term v0.30.0 golang.org/x/text v0.23.0 gopkg.in/yaml.v3 v3.0.1 - k8s.io/apiextensions-apiserver v0.32.2 - k8s.io/apimachinery v0.32.2 - k8s.io/apiserver v0.32.2 - k8s.io/cli-runt...
[ "-\tk8s.io/api v0.32.2", "-\tk8s.io/client-go v0.32.2", "-k8s.io/apimachinery v0.32.2/go.mod h1:GpHVgxoKlTxClKcteaeuF1Ul/lDVb74KpZcxcmLDElE=", "-k8s.io/component-base v0.32.2/go.mod h1:PXJ61Vx9Lg+P5mS8TLd7bCIr+eMJRQTyXe8KvkrvJq0=", "+k8s.io/component-base v0.32.3/go.mod h1:LWi9cR+yPAv7cu2X9rZanTiFKB2kHA+Jjm...
[ 8, 13, 48, 56, 70, 78 ]
{ "additions": 24, "author": "dependabot[bot]", "deletions": 24, "html_url": "https://github.com/helm/helm/pull/30659", "issue_id": 30659, "merged_at": "2025-03-13T21:25:50Z", "omission_probability": 0.1, "pr_number": 30659, "repo": "helm/helm", "title": "build(deps): bump the k8s-io group with 7 up...
629
diff --git a/scripts/coverage.sh b/scripts/coverage.sh index 2d8258866e3..2164d94daeb 100755 --- a/scripts/coverage.sh +++ b/scripts/coverage.sh @@ -20,10 +20,6 @@ covermode=${COVERMODE:-atomic} coverdir=$(mktemp -d /tmp/coverage.XXXXXXXXXX) profile="${coverdir}/cover.out" -pushd / -hash goveralls 2>/dev/null || go...
diff --git a/scripts/coverage.sh b/scripts/coverage.sh index 2d8258866e3..2164d94daeb 100755 --- a/scripts/coverage.sh +++ b/scripts/coverage.sh @@ -20,10 +20,6 @@ covermode=${COVERMODE:-atomic} coverdir=$(mktemp -d /tmp/coverage.XXXXXXXXXX) profile="${coverdir}/cover.out" -pushd / -hash goveralls 2>/dev/null || go i...
[]
[]
{ "additions": 0, "author": "gjenkins8", "deletions": 11, "html_url": "https://github.com/helm/helm/pull/30611", "issue_id": 30611, "merged_at": "2025-03-04T21:29:59Z", "omission_probability": 0.1, "pr_number": 30611, "repo": "helm/helm", "title": "chore: Remove 'coveralls'", "total_changes": 11 }
630
diff --git a/go.mod b/go.mod index 84ab22d12d9..cefaac3c79e 100644 --- a/go.mod +++ b/go.mod @@ -33,9 +33,9 @@ require ( github.com/spf13/pflag v1.0.6 github.com/stretchr/testify v1.10.0 github.com/xeipuuv/gojsonschema v1.2.0 - golang.org/x/crypto v0.35.0 - golang.org/x/term v0.29.0 - golang.org/x/text v0.22.0 + ...
diff --git a/go.mod b/go.mod index 84ab22d12d9..cefaac3c79e 100644 --- a/go.mod +++ b/go.mod @@ -33,9 +33,9 @@ require ( github.com/spf13/pflag v1.0.6 github.com/stretchr/testify v1.10.0 github.com/xeipuuv/gojsonschema v1.2.0 - golang.org/x/term v0.29.0 - golang.org/x/text v0.22.0 + golang.org/x/term v0.30.0 + go...
[ "-\tgolang.org/x/crypto v0.35.0", "+\tgolang.org/x/crypto v0.36.0", "-\tgolang.org/x/sys v0.30.0 // indirect", "-golang.org/x/sys v0.30.0/go.mod h1:/VUhepiaJMQUp4+oa/7Zr1D23ma6VTLIYjOOTFZPUcA=" ]
[ 8, 11, 22, 59 ]
{ "additions": 15, "author": "dependabot[bot]", "deletions": 15, "html_url": "https://github.com/helm/helm/pull/30624", "issue_id": 30624, "merged_at": "2025-03-06T18:20:58Z", "omission_probability": 0.1, "pr_number": 30624, "repo": "helm/helm", "title": "build(deps): bump golang.org/x/crypto from 0...
631
diff --git a/go.mod b/go.mod index c99640ad597..52240730ea3 100644 --- a/go.mod +++ b/go.mod @@ -34,9 +34,9 @@ require ( github.com/spf13/pflag v1.0.6 github.com/stretchr/testify v1.10.0 github.com/xeipuuv/gojsonschema v1.2.0 - golang.org/x/crypto v0.35.0 - golang.org/x/term v0.29.0 - golang.org/x/text v0.22.0 + ...
diff --git a/go.mod b/go.mod index c99640ad597..52240730ea3 100644 --- a/go.mod +++ b/go.mod @@ -34,9 +34,9 @@ require ( github.com/spf13/pflag v1.0.6 github.com/stretchr/testify v1.10.0 github.com/xeipuuv/gojsonschema v1.2.0 - golang.org/x/crypto v0.35.0 - golang.org/x/text v0.22.0 + golang.org/x/crypto v0.36.0 ...
[ "-\tgolang.org/x/term v0.29.0", "-golang.org/x/term v0.29.0/go.mod h1:6bl4lRlvVuDgSf3179VpIxBF0o10JUpXWOnI7nErv7s=", "+golang.org/x/term v0.30.0 h1:PQ39fJZ+mfadBm0y5WlL4vlM7Sx1Hgf13sMIY2+QS9Y=", "-golang.org/x/text v0.22.0 h1:bofq7m3/HAFvbF51jz3Q9wLg3jkvSPuiZu/pD1XwgtM=" ]
[ 9, 70, 71, 80 ]
{ "additions": 15, "author": "dependabot[bot]", "deletions": 15, "html_url": "https://github.com/helm/helm/pull/30626", "issue_id": 30626, "merged_at": "2025-03-06T18:19:39Z", "omission_probability": 0.1, "pr_number": 30626, "repo": "helm/helm", "title": "build(deps): bump golang.org/x/crypto from 0...
632
diff --git a/cmd/helm/helm.go b/cmd/helm/helm.go index 4bdd9a388cc..da6a5c54e94 100644 --- a/cmd/helm/helm.go +++ b/cmd/helm/helm.go @@ -17,37 +17,20 @@ limitations under the License. package main // import "helm.sh/helm/v4/cmd/helm" import ( - "io" "log" "os" - "strings" - - "github.com/spf13/cobra" - "sigs.k8...
diff --git a/cmd/helm/helm.go b/cmd/helm/helm.go index 4bdd9a388cc..da6a5c54e94 100644 --- a/cmd/helm/helm.go +++ b/cmd/helm/helm.go @@ -17,37 +17,20 @@ limitations under the License. package main // import "helm.sh/helm/v4/cmd/helm" import ( - "io" "log" "os" - "strings" - "sigs.k8s.io/yaml" // Import to initi...
[ "-\t\"github.com/spf13/cobra\"", "-\trelease \"helm.sh/helm/v4/pkg/release/v1\"", "-\tactionConfig := new(action.Configuration)", "+\tcmd, err := helmcmd.NewRootCmd(os.Stdout, os.Args[1:])", "-\t\tif err := actionConfig.Init(settings.RESTClientGetter(), settings.Namespace(), helmDriver, helmcmd.Debug); err ...
[ 13, 24, 46, 48, 56, 63, 77, 104, 143, 156 ]
{ "additions": 70, "author": "AustinAbro321", "deletions": 70, "html_url": "https://github.com/helm/helm/pull/30618", "issue_id": 30618, "merged_at": "2025-03-04T21:14:47Z", "omission_probability": 0.1, "pr_number": 30618, "repo": "helm/helm", "title": "Fix namespace flag not registering", "total_...
633
diff --git a/CONTRIBUTING.md b/CONTRIBUTING.md index 0c9e5affe8e..e3d99312df7 100644 --- a/CONTRIBUTING.md +++ b/CONTRIBUTING.md @@ -272,12 +272,26 @@ Like any good open source project, we use Pull Requests (PRs) to track code chan or explicitly request another OWNER do that for them. - If the owner of a PR...
diff --git a/CONTRIBUTING.md b/CONTRIBUTING.md index 0c9e5affe8e..e3d99312df7 100644 --- a/CONTRIBUTING.md +++ b/CONTRIBUTING.md @@ -272,12 +272,26 @@ Like any good open source project, we use Pull Requests (PRs) to track code chan or explicitly request another OWNER do that for them. - If the owner of a PR...
[ "-#### Documentation PRs", "+### Profiling PRs", "+/*", "+WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.", "+\tmemProfilePath string", "+\tmemProfilePath = os.Getenv(\"HELM_PPROF_MEM_PROFILE\")", "+\t\tvar err error", "+\t\tdefer f.Close()", "+\t\tPersistentPostRun: func(_ ...
[ 8, 15, 38, 49, 67, 72, 80, 115, 142 ]
{ "additions": 116, "author": "scottrigby", "deletions": 1, "html_url": "https://github.com/helm/helm/pull/30552", "issue_id": 30552, "merged_at": "2025-02-22T00:52:23Z", "omission_probability": 0.1, "pr_number": 30552, "repo": "helm/helm", "title": "v3 backport: feat: Enable CPU and memory profilin...
634
diff --git a/cmd/helm/completion_test.go b/cmd/helm/completion_test.go index 3d838351920..b1089596ba6 100644 --- a/cmd/helm/completion_test.go +++ b/cmd/helm/completion_test.go @@ -22,7 +22,7 @@ import ( "testing" chart "helm.sh/helm/v4/pkg/chart/v2" - "helm.sh/helm/v4/pkg/release" + release "helm.sh/helm/v4/pkg/...
diff --git a/cmd/helm/completion_test.go b/cmd/helm/completion_test.go index 3d838351920..b1089596ba6 100644 --- a/cmd/helm/completion_test.go +++ b/cmd/helm/completion_test.go // Check if file completion should be performed according to parameter 'shouldBePerformed' diff --git a/cmd/helm/flags_test.go b/cmd/helm/flag...
[]
[]
{ "additions": 69, "author": "mattfarina", "deletions": 69, "html_url": "https://github.com/helm/helm/pull/30589", "issue_id": 30589, "merged_at": "2025-02-26T15:42:49Z", "omission_probability": 0.1, "pr_number": 30589, "repo": "helm/helm", "title": "Move pkg/release to pkg/release/v1 to support v3 ...
635
diff --git a/cmd/helm/flags.go b/cmd/helm/flags.go index 8d0f644d680..379b2140d48 100644 --- a/cmd/helm/flags.go +++ b/cmd/helm/flags.go @@ -143,6 +143,9 @@ func (p *postRendererString) Set(val string) error { if val == "" { return nil } + if p.options.binaryPath != "" { + return fmt.Errorf("cannot specify --po...
diff --git a/cmd/helm/flags.go b/cmd/helm/flags.go index 8d0f644d680..379b2140d48 100644 --- a/cmd/helm/flags.go +++ b/cmd/helm/flags.go @@ -143,6 +143,9 @@ func (p *postRendererString) Set(val string) error { if val == "" { return nil } + if p.options.binaryPath != "" { + return fmt.Errorf("cannot specify --po...
[]
[]
{ "additions": 27, "author": "yardenshoham", "deletions": 0, "html_url": "https://github.com/helm/helm/pull/30572", "issue_id": 30572, "merged_at": "2025-02-25T20:43:55Z", "omission_probability": 0.1, "pr_number": 30572, "repo": "helm/helm", "title": "fix: error when more than one post-renderer is s...
636
diff --git a/pkg/kube/ready.go b/pkg/kube/ready.go index 584b8853a12..dd5869e6a57 100644 --- a/pkg/kube/ready.go +++ b/pkg/kube/ready.go @@ -21,11 +21,8 @@ import ( "fmt" appsv1 "k8s.io/api/apps/v1" - appsv1beta1 "k8s.io/api/apps/v1beta1" - appsv1beta2 "k8s.io/api/apps/v1beta2" batchv1 "k8s.io/api/batch/v1" c...
diff --git a/pkg/kube/ready.go b/pkg/kube/ready.go index 584b8853a12..dd5869e6a57 100644 --- a/pkg/kube/ready.go +++ b/pkg/kube/ready.go @@ -21,11 +21,8 @@ import ( "fmt" - appsv1beta2 "k8s.io/api/apps/v1beta2" @@ -105,7 +102,7 @@ func (c *ReadyChecker) IsReady(ctx context.Context, v *resource.Info) (bool, err re...
[]
[]
{ "additions": 8, "author": "robertsirc", "deletions": 13, "html_url": "https://github.com/helm/helm/pull/30585", "issue_id": 30585, "merged_at": "2025-02-25T20:27:32Z", "omission_probability": 0.1, "pr_number": 30585, "repo": "helm/helm", "title": "removing old apis", "total_changes": 21 }
637
diff --git a/pkg/postrender/exec.go b/pkg/postrender/exec.go index 167e737d65c..84357c656fe 100644 --- a/pkg/postrender/exec.go +++ b/pkg/postrender/exec.go @@ -64,6 +64,12 @@ func (p *execRender) Run(renderedManifests *bytes.Buffer) (*bytes.Buffer, error) return nil, errors.Wrapf(err, "error while running command %...
diff --git a/pkg/postrender/exec.go b/pkg/postrender/exec.go index 167e737d65c..84357c656fe 100644 --- a/pkg/postrender/exec.go +++ b/pkg/postrender/exec.go @@ -64,6 +64,12 @@ func (p *execRender) Run(renderedManifests *bytes.Buffer) (*bytes.Buffer, error) return nil, errors.Wrapf(err, "error while running command %...
[]
[]
{ "additions": 21, "author": "yardenshoham", "deletions": 0, "html_url": "https://github.com/helm/helm/pull/30571", "issue_id": 30571, "merged_at": "2025-02-24T20:36:19Z", "omission_probability": 0.1, "pr_number": 30571, "repo": "helm/helm", "title": "feat: error out when post-renderer produces no o...
638
diff --git a/cmd/helm/history.go b/cmd/helm/history.go index 91d005e7ace..2c929c16142 100644 --- a/cmd/helm/history.go +++ b/cmd/helm/history.go @@ -30,7 +30,7 @@ import ( "helm.sh/helm/v4/pkg/chart" "helm.sh/helm/v4/pkg/cli/output" "helm.sh/helm/v4/pkg/release" - "helm.sh/helm/v4/pkg/releaseutil" + releaseutil "...
diff --git a/cmd/helm/history.go b/cmd/helm/history.go index 91d005e7ace..2c929c16142 100644 --- a/cmd/helm/history.go +++ b/cmd/helm/history.go @@ -30,7 +30,7 @@ import ( "helm.sh/helm/v4/pkg/chart" "helm.sh/helm/v4/pkg/cli/output" diff --git a/cmd/helm/template.go b/cmd/helm/template.go index 1a6265ebad9..212664d...
[]
[]
{ "additions": 19, "author": "mattfarina", "deletions": 19, "html_url": "https://github.com/helm/helm/pull/30580", "issue_id": 30580, "merged_at": "2025-02-24T20:15:47Z", "omission_probability": 0.1, "pr_number": 30580, "repo": "helm/helm", "title": "Move pkg/releaseutil to pkg/release/util", "tot...
639
diff --git a/pkg/downloader/manager.go b/pkg/downloader/manager.go index f10cbfb8dc9..52f7d5a920e 100644 --- a/pkg/downloader/manager.go +++ b/pkg/downloader/manager.go @@ -659,10 +659,28 @@ func (m *Manager) UpdateRepositories() error { return nil } +// Filter out duplicate repos by URL, including those with trai...
diff --git a/pkg/downloader/manager.go b/pkg/downloader/manager.go index f10cbfb8dc9..52f7d5a920e 100644 --- a/pkg/downloader/manager.go +++ b/pkg/downloader/manager.go @@ -659,10 +659,28 @@ func (m *Manager) UpdateRepositories() error { return nil +// Filter out duplicate repos by URL, including those with trailing ...
[ "+\t\t// Normalize URL by removing trailing slashes.", "+\t\t\t\t\t// the last one wins", "+\t\t\tif got := dedupeRepos(tt.repos); !reflect.DeepEqual(got, tt.want) {" ]
[ 12, 105, 113 ]
{ "additions": 89, "author": "felipecrs", "deletions": 1, "html_url": "https://github.com/helm/helm/pull/11112", "issue_id": 11112, "merged_at": "2025-02-22T20:50:31Z", "omission_probability": 0.1, "pr_number": 11112, "repo": "helm/helm", "title": "perf(dep-up): do not update the same repo multiple ...
640
diff --git a/package.json b/package.json index de6635f4cd6..bc6d58ca846 100644 --- a/package.json +++ b/package.json @@ -71,7 +71,7 @@ "@rollup/plugin-replace": "5.0.4", "@swc/core": "^1.11.18", "@types/hash-sum": "^1.0.2", - "@types/node": "^22.14.0", + "@types/node": "^22.14.1", "@types/semv...
diff --git a/package.json b/package.json index de6635f4cd6..bc6d58ca846 100644 --- a/package.json +++ b/package.json @@ -71,7 +71,7 @@ "@rollup/plugin-replace": "5.0.4", "@swc/core": "^1.11.18", "@types/hash-sum": "^1.0.2", - "@types/node": "^22.14.0", "@types/semver": "^7.7.0", "@types/serv...
[ "+ \"@types/node\": \"^22.14.1\",", "- version: 5.4.17(@types/node@22.14.0)(sass@1.86.3)", "+ '@vitejs/plugin-vue@5.2.3(vite@5.4.15(@types/node@22.14.1)(sass@1.86.3))(vue@packages+vue)':" ]
[ 9, 45, 121 ]
{ "additions": 35, "author": "renovate[bot]", "deletions": 35, "html_url": "https://github.com/vuejs/core/pull/13196", "issue_id": 13196, "merged_at": "2025-04-14T09:08:59Z", "omission_probability": 0.1, "pr_number": 13196, "repo": "vuejs/core", "title": "chore(deps): update dependency @types/node t...
641
diff --git a/pnpm-lock.yaml b/pnpm-lock.yaml index cde421af447..371d7f5fd8a 100644 --- a/pnpm-lock.yaml +++ b/pnpm-lock.yaml @@ -26,7 +26,7 @@ catalogs: version: 1.2.1 vite: specifier: ^5.4.15 - version: 5.4.17 + version: 5.4.15 importers: @@ -175,7 +175,7 @@ importers: versio...
diff --git a/pnpm-lock.yaml b/pnpm-lock.yaml index cde421af447..371d7f5fd8a 100644 --- a/pnpm-lock.yaml +++ b/pnpm-lock.yaml @@ -26,7 +26,7 @@ catalogs: version: 1.2.1 vite: specifier: ^5.4.15 - version: 5.4.17 + version: 5.4.15 importers: @@ -175,7 +175,7 @@ importers: version: 8...
[ "- vite@5.4.17(@types/node@22.14.1)(sass@1.86.3):", "- '@vitest/mocker': 3.0.9(vite@5.4.17(@types/node@22.14.1)(sass@1.86.3))" ]
[ 62, 71 ]
{ "additions": 10, "author": "renovate[bot]", "deletions": 10, "html_url": "https://github.com/vuejs/core/pull/13198", "issue_id": 13198, "merged_at": "2025-04-15T00:17:42Z", "omission_probability": 0.1, "pr_number": 13198, "repo": "vuejs/core", "title": "chore(deps): update dependency vite to v5.4....
642
diff --git a/package.json b/package.json index e541df36d94..1de6f3e1198 100644 --- a/package.json +++ b/package.json @@ -1,7 +1,7 @@ { "private": true, "version": "3.5.13", - "packageManager": "pnpm@10.7.0", + "packageManager": "pnpm@10.8.0", "type": "module", "scripts": { "dev": "node scripts/dev.j...
diff --git a/package.json b/package.json index e541df36d94..1de6f3e1198 100644 --- a/package.json +++ b/package.json @@ -1,7 +1,7 @@ { "private": true, "version": "3.5.13", - "packageManager": "pnpm@10.7.0", + "packageManager": "pnpm@10.8.0", "type": "module", "scripts": { "dev": "node scripts/dev.j...
[ "+ version: 3.0.9(vitest@3.0.9(@types/node@22.14.0)(jsdom@26.0.0)(sass@1.86.3))", "- undici-types@6.20.0:", "+ undici-types: 6.21.0" ]
[ 54, 138, 153 ]
{ "additions": 45, "author": "renovate[bot]", "deletions": 45, "html_url": "https://github.com/vuejs/core/pull/13166", "issue_id": 13166, "merged_at": "2025-04-08T07:11:17Z", "omission_probability": 0.1, "pr_number": 13166, "repo": "vuejs/core", "title": "chore(deps): update all non-major dependenci...
643
diff --git a/packages/reactivity/src/computed.ts b/packages/reactivity/src/computed.ts index 70670d81ec2..ad518f3c5e6 100644 --- a/packages/reactivity/src/computed.ts +++ b/packages/reactivity/src/computed.ts @@ -119,12 +119,6 @@ export class ComputedRefImpl<T = any> implements Dependency, Subscriber { // dev only ...
diff --git a/packages/reactivity/src/computed.ts b/packages/reactivity/src/computed.ts index 70670d81ec2..ad518f3c5e6 100644 --- a/packages/reactivity/src/computed.ts +++ b/packages/reactivity/src/computed.ts @@ -119,12 +119,6 @@ export class ComputedRefImpl<T = any> implements Dependency, Subscriber { // dev only ...
[ "- * @internal", "- _warnRecursive?: boolean", "- if (i && i.appContext.config.warnRecursiveComputed) {", "- }", "- * Enable warnings for computed getters that recursively trigger itself." ]
[ 10, 12, 35, 38, 52 ]
{ "additions": 3, "author": "edison1105", "deletions": 22, "html_url": "https://github.com/vuejs/core/pull/13128", "issue_id": 13128, "merged_at": "2025-04-11T06:36:38Z", "omission_probability": 0.1, "pr_number": 13128, "repo": "vuejs/core", "title": "chore: remove `warnRecursiveComputed`", "total...
644
diff --git a/pnpm-lock.yaml b/pnpm-lock.yaml index 5c026caf17e..c86382c45c7 100644 --- a/pnpm-lock.yaml +++ b/pnpm-lock.yaml @@ -175,7 +175,7 @@ importers: version: 8.28.0(eslint@9.23.0)(typescript@5.6.2) vite: specifier: 'catalog:' - version: 5.4.15(@types/node@22.14.0)(sass@1.86.3) + ...
diff --git a/pnpm-lock.yaml b/pnpm-lock.yaml index 5c026caf17e..c86382c45c7 100644 --- a/pnpm-lock.yaml +++ b/pnpm-lock.yaml @@ -175,7 +175,7 @@ importers: version: 8.28.0(eslint@9.23.0)(typescript@5.6.2) vite: specifier: 'catalog:' - version: 5.4.15(@types/node@22.14.0)(sass@1.86.3) + ...
[ "+ peerDependencies:", "+ sass-embedded:", "+ fsevents: 2.3.3" ]
[ 21, 39, 87 ]
{ "additions": 47, "author": "renovate[bot]", "deletions": 6, "html_url": "https://github.com/vuejs/core/pull/13173", "issue_id": 13173, "merged_at": "2025-04-09T00:10:43Z", "omission_probability": 0.1, "pr_number": 13173, "repo": "vuejs/core", "title": "chore(deps): update dependency vite to v5.4.1...
645
diff --git a/package.json b/package.json index e878249932b..e541df36d94 100644 --- a/package.json +++ b/package.json @@ -1,7 +1,7 @@ { "private": true, "version": "3.5.13", - "packageManager": "pnpm@10.6.5", + "packageManager": "pnpm@10.7.0", "type": "module", "scripts": { "dev": "node scripts/dev.j...
diff --git a/package.json b/package.json index e878249932b..e541df36d94 100644 --- a/package.json +++ b/package.json @@ -1,7 +1,7 @@ { "private": true, "version": "3.5.13", - "packageManager": "pnpm@10.6.5", + "packageManager": "pnpm@10.7.0", "type": "module", "scripts": { "dev": "node scripts/dev.j...
[ "+ \"@types/node\": \"^22.13.14\",", "- specifier: ^7.5.8", "+ '@vitest/eslint-plugin@1.1.38(@typescript-eslint/utils@8.28.0(eslint@9.23.0)(typescript@5.6.2))(eslint@9.23.0)(typescript@5.6.2)(vitest@3.0.9(@types/node@22.13.14)(jsdom@26.0.0)(sass@1.86.0))':", "+ vite@5.4.15(@types/node@22.13.14)(sa...
[ 19, 37, 181, 238, 250 ]
{ "additions": 42, "author": "renovate[bot]", "deletions": 42, "html_url": "https://github.com/vuejs/core/pull/13120", "issue_id": 13120, "merged_at": "2025-03-31T07:10:54Z", "omission_probability": 0.1, "pr_number": 13120, "repo": "vuejs/core", "title": "chore(deps): update all non-major dependenci...
646
diff --git a/packages/runtime-core/src/component.ts b/packages/runtime-core/src/component.ts index 713c8148790..4863c24a8cc 100644 --- a/packages/runtime-core/src/component.ts +++ b/packages/runtime-core/src/component.ts @@ -417,7 +417,7 @@ export interface ComponentInternalInstance { * is custom element? * @in...
diff --git a/packages/runtime-core/src/component.ts b/packages/runtime-core/src/component.ts index 713c8148790..4863c24a8cc 100644 --- a/packages/runtime-core/src/component.ts +++ b/packages/runtime-core/src/component.ts @@ -417,7 +417,7 @@ export interface ComponentInternalInstance { * is custom element? - ce?: E...
[ "+}", "+ if (instance.root.ce && instance !== instance.root) {", "+ instance.root.ce.removeChildStlye(oldComp)", "+ if (root.ce) {", "+ expect(styles.length).toBe(css.length) // should not duplicate multiple copies from Bar", "+ for (let i = 0; i < css.length; i++) {", "+ ...
[ 21, 32, 33, 70, 105, 106, 112, 129, 137, 145, 165, 199, 230, 256, 279, 302 ]
{ "additions": 154, "author": "yyx990803", "deletions": 21, "html_url": "https://github.com/vuejs/core/pull/11517", "issue_id": 11517, "merged_at": "2024-08-05T12:49:29Z", "omission_probability": 0.1, "pr_number": 11517, "repo": "vuejs/core", "title": "feat(custom-element): inject child components s...
647
diff --git a/pnpm-lock.yaml b/pnpm-lock.yaml index ef248970f55..8becda835a3 100644 --- a/pnpm-lock.yaml +++ b/pnpm-lock.yaml @@ -7,11 +7,11 @@ settings: catalogs: default: '@babel/parser': - specifier: ^7.26.10 - version: 7.26.10 + specifier: ^7.27.0 + version: 7.27.0 '@babel/types': -...
diff --git a/pnpm-lock.yaml b/pnpm-lock.yaml index ef248970f55..8becda835a3 100644 --- a/pnpm-lock.yaml +++ b/pnpm-lock.yaml @@ -7,11 +7,11 @@ settings: catalogs: default: '@babel/parser': '@babel/types': '@vitejs/plugin-vue': specifier: ^5.2.3 version: 5.2.3 @@ -34,10 +34,10 @@ importe...
[]
[]
{ "additions": 27, "author": "renovate[bot]", "deletions": 27, "html_url": "https://github.com/vuejs/core/pull/13123", "issue_id": 13123, "merged_at": "2025-03-31T07:01:57Z", "omission_probability": 0.1, "pr_number": 13123, "repo": "vuejs/core", "title": "chore(deps): update compiler to ^7.27.0", ...
648
diff --git a/packages/compiler-sfc/package.json b/packages/compiler-sfc/package.json index 82e65190084..b12aca948ad 100644 --- a/packages/compiler-sfc/package.json +++ b/packages/compiler-sfc/package.json @@ -49,7 +49,7 @@ "@vue/shared": "workspace:*", "estree-walker": "catalog:", "magic-string": "catalo...
diff --git a/packages/compiler-sfc/package.json b/packages/compiler-sfc/package.json index 82e65190084..b12aca948ad 100644 --- a/packages/compiler-sfc/package.json +++ b/packages/compiler-sfc/package.json @@ -49,7 +49,7 @@ "@vue/shared": "workspace:*", "estree-walker": "catalog:", "magic-string": "catalo...
[ "+ \"postcss-selector-parser\": \"^7.1.0\",", "- version: 6.0.1(postcss@8.5.1)", "+ version: 7.1.0", "- resolution: {integrity: sha512-pO9KhhRcuUyGnJWwyEgnRJTSIZHiT+vMD0kPeD+so0l7mxkMT19g3pjY9GTnHySck/hDzq+dtW/4VgnMkippsQ==}", "- resolution: {integrity: sha512-Z/yiTPj+lDVnF7lWeKCIJzaI...
[ 18, 119, 125, 143, 178, 429 ]
{ "additions": 71, "author": "renovate[bot]", "deletions": 105, "html_url": "https://github.com/vuejs/core/pull/13051", "issue_id": 13051, "merged_at": "2025-03-17T05:27:17Z", "omission_probability": 0.1, "pr_number": 13051, "repo": "vuejs/core", "title": "fix(deps): update compiler - autoclosed", ...
649
diff --git a/package.json b/package.json index b7fe3892d2d..a25a3150db6 100644 --- a/package.json +++ b/package.json @@ -1,7 +1,7 @@ { "private": true, "version": "3.5.13", - "packageManager": "pnpm@10.6.3", + "packageManager": "pnpm@10.6.5", "type": "module", "scripts": { "dev": "node scripts/dev.j...
diff --git a/package.json b/package.json index b7fe3892d2d..a25a3150db6 100644 --- a/package.json +++ b/package.json @@ -1,7 +1,7 @@ { "private": true, "version": "3.5.13", - "packageManager": "pnpm@10.6.3", + "packageManager": "pnpm@10.6.5", "type": "module", "scripts": { "dev": "node scripts/dev.j...
[ "+ version: 22.13.13", "- resolution: {integrity: sha512-I6LPUvlRH+O6VRUqYOcMudhaIdUVWfsjnZavnsraHvpBwaEyMN29ry+0UVJhImYL16xsscu0aske3yA+uPOWfw==}" ]
[ 45, 117 ]
{ "additions": 41, "author": "renovate[bot]", "deletions": 41, "html_url": "https://github.com/vuejs/core/pull/13092", "issue_id": 13092, "merged_at": "2025-03-25T00:12:49Z", "omission_probability": 0.1, "pr_number": 13092, "repo": "vuejs/core", "title": "chore(deps): update all non-major dependenci...
650
diff --git a/packages-private/sfc-playground/package.json b/packages-private/sfc-playground/package.json index e7ea7f37027..418b43d2281 100644 --- a/packages-private/sfc-playground/package.json +++ b/packages-private/sfc-playground/package.json @@ -13,7 +13,7 @@ "vite": "catalog:" }, "dependencies": { - "...
diff --git a/packages-private/sfc-playground/package.json b/packages-private/sfc-playground/package.json index e7ea7f37027..418b43d2281 100644 --- a/packages-private/sfc-playground/package.json +++ b/packages-private/sfc-playground/package.json @@ -13,7 +13,7 @@ "vite": "catalog:" }, "dependencies": { - "...
[]
[]
{ "additions": 6, "author": "renovate[bot]", "deletions": 6, "html_url": "https://github.com/vuejs/core/pull/13097", "issue_id": 13097, "merged_at": "2025-03-25T00:13:07Z", "omission_probability": 0.1, "pr_number": 13097, "repo": "vuejs/core", "title": "fix(deps): update dependency @vue/repl to ^4.5...
651
diff --git a/packages-private/sfc-playground/package.json b/packages-private/sfc-playground/package.json index 51175417ddf..e7ea7f37027 100644 --- a/packages-private/sfc-playground/package.json +++ b/packages-private/sfc-playground/package.json @@ -13,7 +13,7 @@ "vite": "catalog:" }, "dependencies": { - "...
diff --git a/packages-private/sfc-playground/package.json b/packages-private/sfc-playground/package.json index 51175417ddf..e7ea7f37027 100644 --- a/packages-private/sfc-playground/package.json +++ b/packages-private/sfc-playground/package.json @@ -13,7 +13,7 @@ "vite": "catalog:" }, "dependencies": { - "...
[ "- '@vue/repl@4.4.2':" ]
[ 32 ]
{ "additions": 6, "author": "renovate[bot]", "deletions": 6, "html_url": "https://github.com/vuejs/core/pull/12688", "issue_id": 12688, "merged_at": "2025-01-12T01:37:55Z", "omission_probability": 0.1, "pr_number": 12688, "repo": "vuejs/core", "title": "fix(deps): update dependency @vue/repl to ^4.4...
652
diff --git a/package.json b/package.json index 89404eb31eb..3d88ef4436b 100644 --- a/package.json +++ b/package.json @@ -74,8 +74,8 @@ "@types/node": "^22.13.10", "@types/semver": "^7.5.8", "@types/serve-handler": "^6.1.4", - "@vitest/coverage-v8": "^3.0.8", - "@vitest/eslint-plugin": "^1.1.37", + ...
diff --git a/package.json b/package.json index 89404eb31eb..3d88ef4436b 100644 --- a/package.json +++ b/package.json @@ -74,8 +74,8 @@ "@types/node": "^22.13.10", "@types/semver": "^7.5.8", "@types/serve-handler": "^6.1.4", - "@vitest/coverage-v8": "^3.0.8", - "@vitest/eslint-plugin": "^1.1.37", + ...
[ "+ \"vitest\": \"^3.0.9\"", "+ specifier: ^1.1.38", "+ '@vitest/coverage-v8@3.0.9':", "+ resolution: {integrity: sha512-KcOTZyVz8RiM5HyriiDVrP1CyBGuhRxle+lBsmSs6NTJEO/8dKVAq+f5vQzHj1/Kc7bYXSDO6yBe62Zx0t5iaw==}", "+ '@vitest/mocker@3.0.9':", "- resolution: {integrity: sha512-6PhR4H9VGlcwX...
[ 20, 39, 61, 75, 90, 131, 152, 177 ]
{ "additions": 62, "author": "renovate[bot]", "deletions": 62, "html_url": "https://github.com/vuejs/core/pull/13095", "issue_id": 13095, "merged_at": "2025-03-24T02:54:07Z", "omission_probability": 0.1, "pr_number": 13095, "repo": "vuejs/core", "title": "chore(deps): update test", "total_changes"...
653
diff --git a/packages-private/sfc-playground/src/download/template/package.json b/packages-private/sfc-playground/src/download/template/package.json index fada062c683..cb01305b2f8 100644 --- a/packages-private/sfc-playground/src/download/template/package.json +++ b/packages-private/sfc-playground/src/download/template/...
diff --git a/packages-private/sfc-playground/src/download/template/package.json b/packages-private/sfc-playground/src/download/template/package.json index fada062c683..cb01305b2f8 100644 --- a/packages-private/sfc-playground/src/download/template/package.json +++ b/packages-private/sfc-playground/src/download/template/...
[ "- specifier: ^5.2.1", "+ specifier: ^5.2.2" ]
[ 21, 23 ]
{ "additions": 9, "author": "renovate[bot]", "deletions": 9, "html_url": "https://github.com/vuejs/core/pull/13050", "issue_id": 13050, "merged_at": "2025-03-17T05:27:00Z", "omission_probability": 0.1, "pr_number": 13050, "repo": "vuejs/core", "title": "chore(deps): update dependency @vitejs/plugin-...
654
diff --git a/packages/reactivity/src/reactive.ts b/packages/reactivity/src/reactive.ts index c549d729125..802f7fc68e7 100644 --- a/packages/reactivity/src/reactive.ts +++ b/packages/reactivity/src/reactive.ts @@ -108,9 +108,9 @@ export declare const ShallowReactiveMarker: unique symbol export type ShallowReactive<T> =...
diff --git a/packages/reactivity/src/reactive.ts b/packages/reactivity/src/reactive.ts index c549d729125..802f7fc68e7 100644 --- a/packages/reactivity/src/reactive.ts +++ b/packages/reactivity/src/reactive.ts @@ -108,9 +108,9 @@ export declare const ShallowReactiveMarker: unique symbol export type ShallowReactive<T> =...
[ "+ * Shallow version of {@link reactive}.", "+ * well. It also has the same ref-unwrapping behavior as {@link reactive},", "- * Shallow version of {@link readonly()}." ]
[ 9, 21, 29 ]
{ "additions": 15, "author": "posva", "deletions": 15, "html_url": "https://github.com/vuejs/core/pull/13086", "issue_id": 13086, "merged_at": "2025-03-24T00:20:36Z", "omission_probability": 0.1, "pr_number": 13086, "repo": "vuejs/core", "title": "docs(tsdoc): remove extra () in link tag", "total_...
655
diff --git a/packages-private/dts-test/appUse.test-d.ts b/packages-private/dts-test/appUse.test-d.ts index 065f6956865..21d702c9c04 100644 --- a/packages-private/dts-test/appUse.test-d.ts +++ b/packages-private/dts-test/appUse.test-d.ts @@ -12,8 +12,11 @@ app.use(PluginWithoutType, 2) app.use(PluginWithoutType, { anyt...
diff --git a/packages-private/dts-test/appUse.test-d.ts b/packages-private/dts-test/appUse.test-d.ts index 065f6956865..21d702c9c04 100644 --- a/packages-private/dts-test/appUse.test-d.ts +++ b/packages-private/dts-test/appUse.test-d.ts @@ -12,8 +12,11 @@ app.use(PluginWithoutType, 2) app.use(PluginWithoutType, { anyt...
[ "+ PluginTyped,", "+// type optional params", "- ...options: Options" ]
[ 43, 56, 74 ]
{ "additions": 45, "author": "jh-leong", "deletions": 6, "html_url": "https://github.com/vuejs/core/pull/13063", "issue_id": 13063, "merged_at": "2025-03-19T03:44:32Z", "omission_probability": 0.1, "pr_number": 13063, "repo": "vuejs/core", "title": "types: enhance plugin type inference for better ID...
656
diff --git a/package.json b/package.json index 2741f266332..99e2ec3f89c 100644 --- a/package.json +++ b/package.json @@ -67,9 +67,9 @@ "@rollup/plugin-alias": "^5.1.1", "@rollup/plugin-commonjs": "^28.0.3", "@rollup/plugin-json": "^6.1.0", - "@rollup/plugin-node-resolve": "^16.0.0", + "@rollup/plug...
diff --git a/package.json b/package.json index 2741f266332..99e2ec3f89c 100644 --- a/package.json +++ b/package.json @@ -67,9 +67,9 @@ "@rollup/plugin-alias": "^5.1.1", "@rollup/plugin-commonjs": "^28.0.3", "@rollup/plugin-json": "^6.1.0", - "@rollup/plugin-node-resolve": "^16.0.0", + "@rollup/plug...
[ "+ specifier: ^16.0.1", "+ resolution: {integrity: sha512-/lgMo5l9q6y3jjLM3v30y6SBvuuyLsM/K94hv3hPvDf91N+YlZLw4D7KY0Qknfhj6WytoAcjOIDU6xwBRPyUWg==}", "- resolution: {integrity: sha512-Mzo8umKlhTWwF1v8SLuTM1z2A+P43UVhf4R8RZDhzIRBuB2NkeyE+c0gexIOJBuGSIATryuAF4O4luDu727D1w==}", "+ resolution: {in...
[ 38, 77, 83, 93, 228, 230 ]
{ "additions": 53, "author": "renovate[bot]", "deletions": 53, "html_url": "https://github.com/vuejs/core/pull/13046", "issue_id": 13046, "merged_at": "2025-03-17T01:02:38Z", "omission_probability": 0.1, "pr_number": 13046, "repo": "vuejs/core", "title": "chore(deps): update build", "total_changes...
657
diff --git a/packages/compiler-sfc/package.json b/packages/compiler-sfc/package.json index ca14c6ea8ed..8340c076d32 100644 --- a/packages/compiler-sfc/package.json +++ b/packages/compiler-sfc/package.json @@ -49,7 +49,7 @@ "@vue/shared": "workspace:*", "estree-walker": "catalog:", "magic-string": "catalo...
diff --git a/packages/compiler-sfc/package.json b/packages/compiler-sfc/package.json index ca14c6ea8ed..8340c076d32 100644 --- a/packages/compiler-sfc/package.json +++ b/packages/compiler-sfc/package.json @@ -49,7 +49,7 @@ "@vue/shared": "workspace:*", "estree-walker": "catalog:", "magic-string": "catalo...
[ "- resolution: {integrity: sha512-OCVPnIObs4N29kxTjzLfUryOkvZEq+pf8jTF0lg8E7uETuWHA+v7j3c/xJmiqpX450191LlmZfUKkXxkTry7nA==}", "- postcss-modules-extract-imports@3.1.0(postcss@8.4.49):" ]
[ 54, 85 ]
{ "additions": 35, "author": "renovate[bot]", "deletions": 28, "html_url": "https://github.com/vuejs/core/pull/12747", "issue_id": 12747, "merged_at": "2025-01-20T01:43:23Z", "omission_probability": 0.1, "pr_number": 12747, "repo": "vuejs/core", "title": "fix(deps): update dependency postcss to ^8.5...
658
diff --git a/package.json b/package.json index cd2df27c924..89404eb31eb 100644 --- a/package.json +++ b/package.json @@ -74,8 +74,8 @@ "@types/node": "^22.13.10", "@types/semver": "^7.5.8", "@types/serve-handler": "^6.1.4", - "@vitest/coverage-v8": "^3.0.7", - "@vitest/eslint-plugin": "^1.1.36", + ...
diff --git a/package.json b/package.json index cd2df27c924..89404eb31eb 100644 --- a/package.json +++ b/package.json @@ -74,8 +74,8 @@ "@types/node": "^22.13.10", "@types/semver": "^7.5.8", "@types/serve-handler": "^6.1.4", - "@vitest/coverage-v8": "^3.0.7", - "@vitest/eslint-plugin": "^1.1.36", + ...
[ "+ specifier: ^1.1.37", "+ version: 3.0.8(@types/node@22.13.10)(jsdom@26.0.0)(sass@1.85.1)", "+ resolution: {integrity: sha512-y7SAKsQirsEJ2F8bulBck4DoluhI2EEgTimHd6EEUgJBGKy9tC25cpywh1MH4FvDGoG2Unt7+asVd1kj4qOSAw==}", "+ resolution: {integrity: sha512-cnlBV8zr0oaBu1Vk6ruqWzpPzFCtwY0yuwUQp...
[ 48, 71, 93, 106, 136, 161, 180, 201, 245 ]
{ "additions": 86, "author": "renovate[bot]", "deletions": 86, "html_url": "https://github.com/vuejs/core/pull/13048", "issue_id": 13048, "merged_at": "2025-03-17T03:01:54Z", "omission_probability": 0.1, "pr_number": 13048, "repo": "vuejs/core", "title": "chore(deps): update test", "total_changes"...
659
diff --git a/package.json b/package.json index f6de4afdb4d..edd9f99a0ec 100644 --- a/package.json +++ b/package.json @@ -74,8 +74,8 @@ "@types/node": "^22.13.5", "@types/semver": "^7.5.8", "@types/serve-handler": "^6.1.4", - "@vitest/coverage-v8": "^3.0.5", - "@vitest/eslint-plugin": "^1.1.31", + ...
diff --git a/package.json b/package.json index f6de4afdb4d..edd9f99a0ec 100644 --- a/package.json +++ b/package.json @@ -74,8 +74,8 @@ "@types/node": "^22.13.5", "@types/semver": "^7.5.8", "@types/serve-handler": "^6.1.4", - "@vitest/coverage-v8": "^3.0.5", - "@vitest/eslint-plugin": "^1.1.31", + ...
[ "+ specifier: ^1.1.36", "+ version: 24.3.1(typescript@5.6.2)", "- '@vitest/mocker@3.0.5':", "+ resolution: {integrity: sha512-mCuXncKXk5iCLhfhwTc0izo0gtEmpz5CtG2y8GiOINBlMVS6v8TMRc5TaLWKS6692m9+dVVfzgeVxR5UxWHTYw==}", "+ resolution: {integrity: sha512-vtRWBK2uImo5/W2oG6/cDkkHSm+2t6VHgnj...
[ 48, 60, 111, 156, 167, 194, 415 ]
{ "additions": 107, "author": "renovate[bot]", "deletions": 88, "html_url": "https://github.com/vuejs/core/pull/12984", "issue_id": 12984, "merged_at": "2025-03-04T00:26:17Z", "omission_probability": 0.1, "pr_number": 12984, "repo": "vuejs/core", "title": "chore(deps): update test", "total_changes...
660
diff --git a/package.json b/package.json index e7b1bf3449c..3168e422337 100644 --- a/package.json +++ b/package.json @@ -1,7 +1,7 @@ { "private": true, "version": "3.5.13", - "packageManager": "pnpm@10.5.2", + "packageManager": "pnpm@10.6.2", "type": "module", "scripts": { "dev": "node scripts/dev.j...
diff --git a/package.json b/package.json index e7b1bf3449c..3168e422337 100644 --- a/package.json +++ b/package.json @@ -1,7 +1,7 @@ { "private": true, "version": "3.5.13", - "packageManager": "pnpm@10.5.2", + "packageManager": "pnpm@10.6.2", "type": "module", "scripts": { "dev": "node scripts/dev.j...
[ "- '@vitest/eslint-plugin@1.1.36(@typescript-eslint/utils@8.24.0(eslint@9.20.1)(typescript@5.6.2))(eslint@9.20.1)(typescript@5.6.2)(vitest@3.0.7(@types/node@22.13.9)(jsdom@26.0.0)(sass@1.85.1))':", "+ vitest@3.0.7(@types/node@22.13.10)(jsdom@26.0.0)(sass@1.85.1):" ]
[ 150, 211 ]
{ "additions": 34, "author": "renovate[bot]", "deletions": 34, "html_url": "https://github.com/vuejs/core/pull/13014", "issue_id": 13014, "merged_at": "2025-03-10T07:46:47Z", "omission_probability": 0.1, "pr_number": 13014, "repo": "vuejs/core", "title": "chore(deps): update all non-major dependenci...
661
diff --git a/packages-private/dts-test/ref.test-d.ts b/packages-private/dts-test/ref.test-d.ts index 89b80a70fb5..cf99b7bca7a 100644 --- a/packages-private/dts-test/ref.test-d.ts +++ b/packages-private/dts-test/ref.test-d.ts @@ -4,6 +4,7 @@ import { type MaybeRefOrGetter, type Ref, type ShallowRef, + type Tem...
diff --git a/packages-private/dts-test/ref.test-d.ts b/packages-private/dts-test/ref.test-d.ts index 89b80a70fb5..cf99b7bca7a 100644 --- a/packages-private/dts-test/ref.test-d.ts +++ b/packages-private/dts-test/ref.test-d.ts @@ -4,6 +4,7 @@ import { type MaybeRefOrGetter, type Ref, type ShallowRef, type ToR...
[ "+ type TemplateRef,", "-export { useTemplateRef } from './helpers/useTemplateRef'" ]
[ 8, 47 ]
{ "additions": 7, "author": "Shinigami92", "deletions": 4, "html_url": "https://github.com/vuejs/core/pull/12645", "issue_id": 12645, "merged_at": "2025-03-14T00:17:49Z", "omission_probability": 0.1, "pr_number": 12645, "repo": "vuejs/core", "title": "feat(types): add type TemplateRef", "total_cha...
662
diff --git a/package.json b/package.json index edd9f99a0ec..e7b1bf3449c 100644 --- a/package.json +++ b/package.json @@ -1,7 +1,7 @@ { "private": true, "version": "3.5.13", - "packageManager": "pnpm@10.4.1", + "packageManager": "pnpm@10.5.2", "type": "module", "scripts": { "dev": "node scripts/dev.j...
diff --git a/package.json b/package.json index edd9f99a0ec..e7b1bf3449c 100644 --- a/package.json +++ b/package.json @@ -1,7 +1,7 @@ { "private": true, "version": "3.5.13", - "packageManager": "pnpm@10.4.1", + "packageManager": "pnpm@10.5.2", "type": "module", "scripts": { "dev": "node scripts/dev.j...
[ "+ version: 1.85.1", "+ vite@5.4.14(@types/node@22.13.9)(sass@1.85.1):", "- sass: 1.85.0" ]
[ 108, 242, 251 ]
{ "additions": 41, "author": "renovate[bot]", "deletions": 41, "html_url": "https://github.com/vuejs/core/pull/12983", "issue_id": 12983, "merged_at": "2025-03-04T12:15:44Z", "omission_probability": 0.1, "pr_number": 12983, "repo": "vuejs/core", "title": "chore(deps): update all non-major dependenci...
663
diff --git a/package.json b/package.json index c2b68d04b2d..d386a938a90 100644 --- a/package.json +++ b/package.json @@ -82,7 +82,7 @@ "esbuild-plugin-polyfill-node": "^0.3.0", "eslint": "^9.20.1", "eslint-plugin-import-x": "^4.6.1", - "@vitest/eslint-plugin": "^1.1.27", + "@vitest/eslint-plugin": ...
diff --git a/package.json b/package.json index c2b68d04b2d..d386a938a90 100644 --- a/package.json +++ b/package.json @@ -82,7 +82,7 @@ "esbuild-plugin-polyfill-node": "^0.3.0", "eslint": "^9.20.1", "eslint-plugin-import-x": "^4.6.1", - "@vitest/eslint-plugin": "^1.1.27", + "@vitest/eslint-plugin": ...
[ "- chromium-bidi@1.2.0:", "+ resolution: {integrity: sha512-G3x1bkST13kmbL7+dT/oRkNH/7C4UqG+0YQpmySrzXspyOhYgDNc6lhSGpj3cuexvH25WTENhTYq2Tt9JRXtbw==}", "- '@vitest/eslint-plugin@1.1.27(@typescript-eslint/utils@8.24.0(eslint@9.20.1)(typescript@5.6.2))(eslint@9.20.1)(typescript@5.6.2)(vitest@3.0.5(@types/nod...
[ 63, 66, 109, 110 ]
{ "additions": 25, "author": "renovate[bot]", "deletions": 25, "html_url": "https://github.com/vuejs/core/pull/12885", "issue_id": 12885, "merged_at": "2025-02-17T06:42:37Z", "omission_probability": 0.1, "pr_number": 12885, "repo": "vuejs/core", "title": "chore(deps): update test", "total_changes"...
664
diff --git a/packages/runtime-vapor/__tests__/_utils.ts b/packages/runtime-vapor/__tests__/_utils.ts index c34eb05a05c..0ed64554478 100644 --- a/packages/runtime-vapor/__tests__/_utils.ts +++ b/packages/runtime-vapor/__tests__/_utils.ts @@ -1,4 +1,4 @@ -import { createVaporApp, defineVaporComponent } from '../src' +imp...
diff --git a/packages/runtime-vapor/__tests__/_utils.ts b/packages/runtime-vapor/__tests__/_utils.ts index c34eb05a05c..0ed64554478 100644 --- a/packages/runtime-vapor/__tests__/_utils.ts +++ b/packages/runtime-vapor/__tests__/_utils.ts @@ -1,4 +1,4 @@ -import { createVaporApp, defineVaporComponent } from '../src' imp...
[ "+import { createVaporApp } from '../src'", "+ )", "+ expect(attrs).toEqual({ bar: 2 })", "+ // #8236: extend call and options.name access are considered side-effects", "+ }" ]
[ 6, 38, 46, 68, 75 ]
{ "additions": 39, "author": "zhiyuanzmj", "deletions": 4, "html_url": "https://github.com/vuejs/core/pull/12927", "issue_id": 12927, "merged_at": "2025-02-28T09:07:55Z", "omission_probability": 0.1, "pr_number": 12927, "repo": "vuejs/core", "title": "feat(runtime-vapor): support functional componen...
665
diff --git a/packages/compiler-vapor/src/generators/text.ts b/packages/compiler-vapor/src/generators/text.ts index 3c9835f88b8..280d0a9183b 100644 --- a/packages/compiler-vapor/src/generators/text.ts +++ b/packages/compiler-vapor/src/generators/text.ts @@ -14,8 +14,8 @@ export function genSetText( context: CodegenCo...
diff --git a/packages/compiler-vapor/src/generators/text.ts b/packages/compiler-vapor/src/generators/text.ts index 3c9835f88b8..280d0a9183b 100644 --- a/packages/compiler-vapor/src/generators/text.ts +++ b/packages/compiler-vapor/src/generators/text.ts @@ -14,8 +14,8 @@ export function genSetText( - const { element, v...
[ "- const texts = combineValues(values, context)" ]
[ 9 ]
{ "additions": 9, "author": "zhiyuanzmj", "deletions": 6, "html_url": "https://github.com/vuejs/core/pull/12893", "issue_id": 12893, "merged_at": "2025-02-28T09:06:20Z", "omission_probability": 0.1, "pr_number": 12893, "repo": "vuejs/core", "title": "feat(compiler-vapor): add jsx support for setText...
666
diff --git a/packages/compiler-vapor/__tests__/transforms/__snapshots__/vBind.spec.ts.snap b/packages/compiler-vapor/__tests__/transforms/__snapshots__/vBind.spec.ts.snap index 24585e39ea3..6e7d4229df8 100644 --- a/packages/compiler-vapor/__tests__/transforms/__snapshots__/vBind.spec.ts.snap +++ b/packages/compiler-vap...
diff --git a/packages/compiler-vapor/__tests__/transforms/__snapshots__/vBind.spec.ts.snap b/packages/compiler-vapor/__tests__/transforms/__snapshots__/vBind.spec.ts.snap index 24585e39ea3..6e7d4229df8 100644 --- a/packages/compiler-vapor/__tests__/transforms/__snapshots__/vBind.spec.ts.snap +++ b/packages/compiler-vap...
[]
[]
{ "additions": 59, "author": "edison1105", "deletions": 2, "html_url": "https://github.com/vuejs/core/pull/12815", "issue_id": 12815, "merged_at": "2025-02-28T09:02:52Z", "omission_probability": 0.1, "pr_number": 12815, "repo": "vuejs/core", "title": "fix(compiler-vapor): properly cache variable use...
667
diff --git a/packages-private/sfc-playground/package.json b/packages-private/sfc-playground/package.json index 486971ad58b..418b43d2281 100644 --- a/packages-private/sfc-playground/package.json +++ b/packages-private/sfc-playground/package.json @@ -13,7 +13,7 @@ "vite": "catalog:" }, "dependencies": { - "...
diff --git a/packages-private/sfc-playground/package.json b/packages-private/sfc-playground/package.json index 486971ad58b..418b43d2281 100644 --- a/packages-private/sfc-playground/package.json +++ b/packages-private/sfc-playground/package.json @@ -13,7 +13,7 @@ "vite": "catalog:" }, "dependencies": { - "...
[ "+ \"@vue/repl\": \"^4.5.1\",", "+ test('on empty script', () => {", "+ })", "+", "+ '@vue/repl@4.5.1': {}" ]
[ 9, 22, 30, 31, 224 ]
{ "additions": 40, "author": "edison1105", "deletions": 14, "html_url": "https://github.com/vuejs/core/pull/12910", "issue_id": 12910, "merged_at": "2025-02-28T08:59:02Z", "omission_probability": 0.1, "pr_number": 12910, "repo": "vuejs/core", "title": "fix(vapor): handle vapor mode with empty script...
668
diff --git a/packages/reactivity/src/debug.ts b/packages/reactivity/src/debug.ts index 7e96f24ea2f..b830f5a46a7 100644 --- a/packages/reactivity/src/debug.ts +++ b/packages/reactivity/src/debug.ts @@ -69,11 +69,8 @@ function setupFlagsHandler(target: Subscriber): void { }, set(value) { if ( - !(...
diff --git a/packages/reactivity/src/debug.ts b/packages/reactivity/src/debug.ts index 7e96f24ea2f..b830f5a46a7 100644 --- a/packages/reactivity/src/debug.ts +++ b/packages/reactivity/src/debug.ts @@ -69,11 +69,8 @@ function setupFlagsHandler(target: Subscriber): void { }, set(value) { if ( - !(...
[ "- ) &&", "+ !!(value & SubscriberFlags.Propagated)", "-let linkPool: Link | undefined", "- shallowPropagate(subs)", "- } else {", "- newLink.nextDep = nextDep", "+ const newLink: Link = {", "- shallowPropagate(sub.subs!)" ]
[ 11, 14, 33, 59, 62, 77, 88, 101 ]
{ "additions": 16, "author": "johnsoncodehk", "deletions": 45, "html_url": "https://github.com/vuejs/core/pull/12791", "issue_id": 12791, "merged_at": "2025-02-25T07:23:26Z", "omission_probability": 0.1, "pr_number": 12791, "repo": "vuejs/core", "title": "refactor(reactivity): sync alien-signals 1.0...
669
diff --git a/package.json b/package.json index 543b039a85f..f7ce35ecd57 100644 --- a/package.json +++ b/package.json @@ -71,7 +71,7 @@ "@rollup/plugin-replace": "5.0.4", "@swc/core": "^1.10.16", "@types/hash-sum": "^1.0.2", - "@types/node": "^22.13.4", + "@types/node": "^22.13.5", "@types/semv...
diff --git a/package.json b/package.json index 543b039a85f..f7ce35ecd57 100644 --- a/package.json +++ b/package.json @@ -71,7 +71,7 @@ "@rollup/plugin-replace": "5.0.4", "@swc/core": "^1.10.16", "@types/hash-sum": "^1.0.2", - "@types/node": "^22.13.4", + "@types/node": "^22.13.5", "@types/semv...
[ "- version: 3.0.5(vitest@3.0.5(@types/node@22.13.4)(jsdom@26.0.0)(sass@1.85.0))", "- version: 3.0.5(@types/node@22.13.4)(jsdom@26.0.0)(sass@1.85.0)", "+ resolution: {integrity: sha512-+lTU0PxZXn0Dr1NBtC7Y8cR21AJr87dLLU953CWA6pMxxv/UDc7jYAY90upcrie1nRcD6XNG5HOYEDtgW5TxAg==}", "+ '@vitest/cove...
[ 32, 49, 87, 128 ]
{ "additions": 33, "author": "renovate[bot]", "deletions": 33, "html_url": "https://github.com/vuejs/core/pull/12932", "issue_id": 12932, "merged_at": "2025-02-24T01:37:17Z", "omission_probability": 0.1, "pr_number": 12932, "repo": "vuejs/core", "title": "chore(deps): update dependency @types/node t...
670
diff --git a/.github/workflows/autofix.yml b/.github/workflows/autofix.yml index 3ef9bbce54b..9816f7f5257 100644 --- a/.github/workflows/autofix.yml +++ b/.github/workflows/autofix.yml @@ -14,7 +14,7 @@ jobs: - uses: actions/checkout@v4 - name: Install pnpm - uses: pnpm/action-setup@v4.0.0 + ...
diff --git a/.github/workflows/autofix.yml b/.github/workflows/autofix.yml index 3ef9bbce54b..9816f7f5257 100644 --- a/.github/workflows/autofix.yml +++ b/.github/workflows/autofix.yml diff --git a/.github/workflows/canary-minor.yml b/.github/workflows/canary-minor.yml index b5d75b9cebb..0b6401b8ce4 100644 --- a/.githu...
[ "- \"@types/node\": \"^22.12.0\",", "+ resolution: {integrity: sha512-3ToiC1xZ1Y8aU7+CkgCI/tqyuPXEmYGJXO7H4uqp0xkLXUqp88rQQ4j1HmP37xSJLbCJPaIiv+cT1y+grssrww==}", "- engines: {node: '>=10'}", "- engines: {node: '>=0.10.0'}", "- '@vitejs/plugin-vue@5.2.1(vite@5.4.14(@types/node@22.12.0)(sass@1.83...
[ 122, 293, 303, 315, 349, 357, 509 ]
{ "additions": 61, "author": "renovate[bot]", "deletions": 74, "html_url": "https://github.com/vuejs/core/pull/12886", "issue_id": 12886, "merged_at": "2025-02-17T06:50:23Z", "omission_probability": 0.1, "pr_number": 12886, "repo": "vuejs/core", "title": "chore(deps): update all non-major dependenci...
671
diff --git a/packages/reactivity/__tests__/reactive.spec.ts b/packages/reactivity/__tests__/reactive.spec.ts index a23f2066f24..a3ba6a39c1d 100644 --- a/packages/reactivity/__tests__/reactive.spec.ts +++ b/packages/reactivity/__tests__/reactive.spec.ts @@ -1,4 +1,4 @@ -import { isRef, ref } from '../src/ref' +import { ...
diff --git a/packages/reactivity/__tests__/reactive.spec.ts b/packages/reactivity/__tests__/reactive.spec.ts index a23f2066f24..a3ba6a39c1d 100644 --- a/packages/reactivity/__tests__/reactive.spec.ts +++ b/packages/reactivity/__tests__/reactive.spec.ts @@ -1,4 +1,4 @@ -import { isRef, ref } from '../src/ref' +import { ...
[]
[]
{ "additions": 14, "author": "Sunny-117", "deletions": 1, "html_url": "https://github.com/vuejs/core/pull/12576", "issue_id": 12576, "merged_at": "2025-02-20T09:00:32Z", "omission_probability": 0.1, "pr_number": 12576, "repo": "vuejs/core", "title": "test(reactivity): add tests for reactive and non-...
672
diff --git a/package.json b/package.json index 2e6aec1a978..543b039a85f 100644 --- a/package.json +++ b/package.json @@ -75,6 +75,7 @@ "@types/semver": "^7.5.8", "@types/serve-handler": "^6.1.4", "@vitest/coverage-v8": "^3.0.5", + "@vitest/eslint-plugin": "^1.1.31", "@vue/consolidate": "1.0.0", ...
diff --git a/package.json b/package.json index 2e6aec1a978..543b039a85f 100644 --- a/package.json +++ b/package.json @@ -75,6 +75,7 @@ "@types/semver": "^7.5.8", "@types/serve-handler": "^6.1.4", "@vitest/coverage-v8": "^3.0.5", + "@vitest/eslint-plugin": "^1.1.31", "@vue/consolidate": "1.0.0", ...
[]
[]
{ "additions": 8, "author": "btea", "deletions": 2, "html_url": "https://github.com/vuejs/core/pull/12912", "issue_id": 12912, "merged_at": "2025-02-19T12:49:51Z", "omission_probability": 0.1, "pr_number": 12912, "repo": "vuejs/core", "title": "chore: add `onlyBuiltDependencies` list", "total_chan...
673
diff --git a/packages/reactivity/__tests__/reactive.spec.ts b/packages/reactivity/__tests__/reactive.spec.ts index aabd954568a..a23f2066f24 100644 --- a/packages/reactivity/__tests__/reactive.spec.ts +++ b/packages/reactivity/__tests__/reactive.spec.ts @@ -301,6 +301,13 @@ describe('reactivity/reactive', () => { e...
diff --git a/packages/reactivity/__tests__/reactive.spec.ts b/packages/reactivity/__tests__/reactive.spec.ts index aabd954568a..a23f2066f24 100644 --- a/packages/reactivity/__tests__/reactive.spec.ts +++ b/packages/reactivity/__tests__/reactive.spec.ts @@ -301,6 +301,13 @@ describe('reactivity/reactive', () => { e...
[]
[]
{ "additions": 12, "author": "FatRadish", "deletions": 5, "html_url": "https://github.com/vuejs/core/pull/12824", "issue_id": 12824, "merged_at": "2025-02-19T06:25:30Z", "omission_probability": 0.1, "pr_number": 12824, "repo": "vuejs/core", "title": "fix(reactivity): enhance reactive function to han...
674
diff --git a/packages/compiler-sfc/__tests__/parse.spec.ts b/packages/compiler-sfc/__tests__/parse.spec.ts index 87cd05ed0ef..265655e47ef 100644 --- a/packages/compiler-sfc/__tests__/parse.spec.ts +++ b/packages/compiler-sfc/__tests__/parse.spec.ts @@ -81,7 +81,7 @@ font-weight: bold; const consumer = new Sour...
diff --git a/packages/compiler-sfc/__tests__/parse.spec.ts b/packages/compiler-sfc/__tests__/parse.spec.ts index 87cd05ed0ef..265655e47ef 100644 --- a/packages/compiler-sfc/__tests__/parse.spec.ts +++ b/packages/compiler-sfc/__tests__/parse.spec.ts @@ -81,7 +81,7 @@ font-weight: bold; const consumer = new Source...
[]
[]
{ "additions": 6, "author": "edison1105", "deletions": 6, "html_url": "https://github.com/vuejs/core/pull/12891", "issue_id": 12891, "merged_at": "2025-02-17T07:07:11Z", "omission_probability": 0.1, "pr_number": 12891, "repo": "vuejs/core", "title": "chore(deps): fix MappingItem type", "total_chan...
675
diff --git a/package.json b/package.json index 7674806efd8..6b5eab9ae25 100644 --- a/package.json +++ b/package.json @@ -85,7 +85,7 @@ "@vitest/eslint-plugin": "^1.1.25", "estree-walker": "catalog:", "jsdom": "^26.0.0", - "lint-staged": "^15.3.0", + "lint-staged": "^15.4.1", "lodash": "^4.17.2...
diff --git a/package.json b/package.json index 7674806efd8..6b5eab9ae25 100644 --- a/package.json +++ b/package.json @@ -85,7 +85,7 @@ "@vitest/eslint-plugin": "^1.1.25", "estree-walker": "catalog:", "jsdom": "^26.0.0", - "lint-staged": "^15.3.0", + "lint-staged": "^15.4.1", "lodash": "^4.17.2...
[ "- version: 1.1.25(@typescript-eslint/utils@8.19.1(eslint@9.18.0)(typescript@5.6.2))(eslint@9.18.0)(typescript@5.6.2)(vitest@3.0.2(@types/node@22.10.7)(jsdom@26.0.0)(sass@1.83.4))", "- specifier: ^15.3.0", "- specifier: ^8.19.1", "- '@typescript-eslint/parser@8.19.1':", "- '@typescrip...
[ 30, 39, 50, 71, 110, 133, 165, 300 ]
{ "additions": 61, "author": "renovate[bot]", "deletions": 61, "html_url": "https://github.com/vuejs/core/pull/12746", "issue_id": 12746, "merged_at": "2025-01-20T01:43:06Z", "omission_probability": 0.1, "pr_number": 12746, "repo": "vuejs/core", "title": "chore(deps): update lint - autoclosed", "t...
676
diff --git a/package.json b/package.json index 03897cb1988..186e2adeec8 100644 --- a/package.json +++ b/package.json @@ -71,7 +71,7 @@ "@rollup/plugin-replace": "5.0.4", "@swc/core": "^1.10.8", "@types/hash-sum": "^1.0.2", - "@types/node": "^22.10.7", + "@types/node": "^22.12.0", "@types/semve...
diff --git a/package.json b/package.json index 03897cb1988..186e2adeec8 100644 --- a/package.json +++ b/package.json @@ -71,7 +71,7 @@ "@rollup/plugin-replace": "5.0.4", "@swc/core": "^1.10.8", "@types/hash-sum": "^1.0.2", - "@types/node": "^22.10.7", + "@types/node": "^22.12.0", "@types/semve...
[ "+ '@vitest/mocker': 3.0.2(vite@5.4.8(@types/node@22.12.0)(sass@1.83.4))" ]
[ 218 ]
{ "additions": 35, "author": "renovate[bot]", "deletions": 35, "html_url": "https://github.com/vuejs/core/pull/12784", "issue_id": 12784, "merged_at": "2025-01-29T12:18:27Z", "omission_probability": 0.1, "pr_number": 12784, "repo": "vuejs/core", "title": "chore(deps): update dependency @types/node t...
677
diff --git a/package.json b/package.json index 1bed35bfea9..04ed40fe9f3 100644 --- a/package.json +++ b/package.json @@ -82,7 +82,7 @@ "esbuild-plugin-polyfill-node": "^0.3.0", "eslint": "^9.18.0", "eslint-plugin-import-x": "^4.6.1", - "@vitest/eslint-plugin": "^1.1.25", + "@vitest/eslint-plugin": ...
diff --git a/package.json b/package.json index 1bed35bfea9..04ed40fe9f3 100644 --- a/package.json +++ b/package.json @@ -82,7 +82,7 @@ "esbuild-plugin-polyfill-node": "^0.3.0", "eslint": "^9.18.0", "eslint-plugin-import-x": "^4.6.1", - "@vitest/eslint-plugin": "^1.1.25", + "@vitest/eslint-plugin": ...
[ "- version: 1.1.25(@typescript-eslint/utils@8.20.0(eslint@9.18.0)(typescript@5.6.2))(eslint@9.18.0)(typescript@5.6.2)(vitest@3.0.5(@types/node@22.12.0)(jsdom@26.0.0)(sass@1.83.4))", "- chromium-bidi@1.1.0:", "+ resolution: {integrity: sha512-JwAYQgEvm3yD45CHB+RmF5kMbWtXBaOGwuxa87sZogHcLCv8c/IqnThaoQ1...
[ 31, 114, 128, 136, 154, 197, 214, 346, 383 ]
{ "additions": 59, "author": "renovate[bot]", "deletions": 82, "html_url": "https://github.com/vuejs/core/pull/12835", "issue_id": 12835, "merged_at": "2025-02-10T01:38:39Z", "omission_probability": 0.1, "pr_number": 12835, "repo": "vuejs/core", "title": "chore(deps): update test", "total_changes"...
678
diff --git a/packages/compiler-vapor/__tests__/transforms/__snapshots__/transformChildren.spec.ts.snap b/packages/compiler-vapor/__tests__/transforms/__snapshots__/transformChildren.spec.ts.snap index 373b0795bb1..215ab9036ec 100644 --- a/packages/compiler-vapor/__tests__/transforms/__snapshots__/transformChildren.spec...
diff --git a/packages/compiler-vapor/__tests__/transforms/__snapshots__/transformChildren.spec.ts.snap b/packages/compiler-vapor/__tests__/transforms/__snapshots__/transformChildren.spec.ts.snap index 373b0795bb1..215ab9036ec 100644 --- a/packages/compiler-vapor/__tests__/transforms/__snapshots__/transformChildren.spec...
[ "+ `<div>", "-export function nextn(node: Node, offset: number = 1): Node {" ]
[ 51, 136 ]
{ "additions": 47, "author": "edison1105", "deletions": 14, "html_url": "https://github.com/vuejs/core/pull/12847", "issue_id": 12847, "merged_at": "2025-02-12T08:43:26Z", "omission_probability": 0.1, "pr_number": 12847, "repo": "vuejs/core", "title": "perf(vapor): use nthChild instead of nextn", ...
679
diff --git a/packages/runtime-core/src/components/KeepAlive.ts b/packages/runtime-core/src/components/KeepAlive.ts index 5976f3a4b33..f2b7bdf9738 100644 --- a/packages/runtime-core/src/components/KeepAlive.ts +++ b/packages/runtime-core/src/components/KeepAlive.ts @@ -187,6 +187,11 @@ const KeepAliveImpl: ComponentOpti...
diff --git a/packages/runtime-core/src/components/KeepAlive.ts b/packages/runtime-core/src/components/KeepAlive.ts index 5976f3a4b33..f2b7bdf9738 100644 --- a/packages/runtime-core/src/components/KeepAlive.ts +++ b/packages/runtime-core/src/components/KeepAlive.ts @@ -187,6 +187,11 @@ const KeepAliveImpl: ComponentOpti...
[ "+ if (vnode.ctx!.isUnmounted) {", "+ await page().evaluate(() => {", "+ const { createApp, ref, h, onUnmounted, getCurrentInstance } = (", "+ ).Vue", "+ <div id=\"container\">" ]
[ 26, 59, 61, 63, 66 ]
{ "additions": 81, "author": "edison1105", "deletions": 1, "html_url": "https://github.com/vuejs/core/pull/12862", "issue_id": 12862, "merged_at": "2025-02-12T07:30:08Z", "omission_probability": 0.1, "pr_number": 12862, "repo": "vuejs/core", "title": "fix(runtime-core): prevent unmounted vnode from ...
680
diff --git a/package.json b/package.json index 0e7fbf86e29..49e5a8e2064 100644 --- a/package.json +++ b/package.json @@ -74,7 +74,7 @@ "@types/node": "^22.12.0", "@types/semver": "^7.5.8", "@types/serve-handler": "^6.1.4", - "@vitest/coverage-v8": "^3.0.2", + "@vitest/coverage-v8": "^3.0.5", "...
diff --git a/package.json b/package.json index 0e7fbf86e29..49e5a8e2064 100644 --- a/package.json +++ b/package.json @@ -74,7 +74,7 @@ "@types/node": "^22.12.0", "@types/semver": "^7.5.8", "@types/serve-handler": "^6.1.4", - "@vitest/coverage-v8": "^3.0.2", + "@vitest/coverage-v8": "^3.0.5", "...
[ "+ '@vitest/coverage-v8@3.0.5':", "+ '@vitest/browser': 3.0.5", "+ resolution: {integrity: sha512-HislCEczCuamWm3+55Lig9XKmMF13K+BGKum9rwtDAzgUAHT4h5jNwhDmD4U20VoVUG8ujnv9UZ89qiIf5uF8w==}", "+ resolution: {integrity: sha512-fuhceZ5HZuDXVuaMIRxUuDHfCJLmK0pXh8FlzVQ0/+OApStevxZhU5kAVeYFOEqeCF5OoAyZjc...
[ 72, 77, 94, 111, 166, 175 ]
{ "additions": 25, "author": "renovate[bot]", "deletions": 41, "html_url": "https://github.com/vuejs/core/pull/12806", "issue_id": 12806, "merged_at": "2025-02-05T00:31:25Z", "omission_probability": 0.1, "pr_number": 12806, "repo": "vuejs/core", "title": "chore(deps): update test", "total_changes"...
681
diff --git a/pnpm-lock.yaml b/pnpm-lock.yaml index 890b79725db..2736e3b163d 100644 --- a/pnpm-lock.yaml +++ b/pnpm-lock.yaml @@ -24,6 +24,9 @@ catalogs: source-map-js: specifier: ^1.2.0 version: 1.2.0 + vite: + specifier: ^5.4.0 + version: 5.4.12 importers: @@ -67,10 +70,10 @@ impor...
diff --git a/pnpm-lock.yaml b/pnpm-lock.yaml index 890b79725db..2736e3b163d 100644 --- a/pnpm-lock.yaml +++ b/pnpm-lock.yaml @@ -24,6 +24,9 @@ catalogs: source-map-js: specifier: ^1.2.0 version: 1.2.0 + vite: + specifier: ^5.4.0 + version: 5.4.12 importers: @@ -67,10 +70,10 @@ importers...
[ "+ resolution: {integrity: sha512-nNIOqupgZ4v5jWuQx2DSlHLEs7Q4Oh/7AYwNyE+k0UQzG7tSmjPXShUikn1mpNGzYEN2jJbTvLejwShMitovBA==}", "+ resolution: {integrity: sha512-CjUtdmpOcm4RVtB+up8r2vVDLR16Mgm/bYdkGFe3Yj/scRfCpbSi2W/BDSDcFK7ohw8UXvjMbOp9H4fByd/cOA==}", "+ resolution: {integrity: sha512-N9AX0NUoUtVwKwy21...
[ 43, 59, 79, 87, 117, 229, 254 ]
{ "additions": 61, "author": "renovate[bot]", "deletions": 55, "html_url": "https://github.com/vuejs/core/pull/12812", "issue_id": 12812, "merged_at": "2025-02-05T00:25:10Z", "omission_probability": 0.1, "pr_number": 12812, "repo": "vuejs/core", "title": "chore(deps): update dependency vitest to v3....
682
diff --git a/package.json b/package.json index 7674806efd8..162c4642bc5 100644 --- a/package.json +++ b/package.json @@ -95,7 +95,7 @@ "prettier": "^3.4.2", "pretty-bytes": "^6.1.1", "pug": "^3.0.3", - "puppeteer": "~24.0.0", + "puppeteer": "~24.1.0", "rimraf": "^6.0.1", "rollup": "^4.31....
diff --git a/package.json b/package.json index 7674806efd8..162c4642bc5 100644 --- a/package.json +++ b/package.json @@ -95,7 +95,7 @@ "prettier": "^3.4.2", "pretty-bytes": "^6.1.1", "pug": "^3.0.3", - "puppeteer": "~24.0.0", "rimraf": "^6.0.1", "rollup": "^4.31.0", "rollup-plugin-dts":...
[ "+ \"puppeteer\": \"~24.1.0\",", "+ resolution: {integrity: sha512-1CJABgqLxbYxVI+uJY/UDUHJtJ0KZTSjNYJYKqd9FRoXT33WDakDHNxRapMEgzeJ/C3rcs01+avshMnPmKQbvA==}", "- chromium-bidi: 0.11.0(devtools-protocol@0.0.1367902)", "- chromium-bidi: 0.12.0(devtools-protocol@0.0.1367902)" ]
[ 9, 35, 93, 109 ]
{ "additions": 21, "author": "renovate[bot]", "deletions": 21, "html_url": "https://github.com/vuejs/core/pull/12745", "issue_id": 12745, "merged_at": "2025-01-20T01:42:48Z", "omission_probability": 0.1, "pr_number": 12745, "repo": "vuejs/core", "title": "chore(deps): update dependency puppeteer to ...
683
diff --git a/packages/vue/__tests__/e2e/todomvc.spec.ts b/packages/vue/__tests__/e2e/todomvc.spec.ts index 6283172c396..c76bba53515 100644 --- a/packages/vue/__tests__/e2e/todomvc.spec.ts +++ b/packages/vue/__tests__/e2e/todomvc.spec.ts @@ -139,7 +139,7 @@ describe('e2e: todomvc', () => { // editing triggered by b...
diff --git a/packages/vue/__tests__/e2e/todomvc.spec.ts b/packages/vue/__tests__/e2e/todomvc.spec.ts index 6283172c396..c76bba53515 100644 --- a/packages/vue/__tests__/e2e/todomvc.spec.ts +++ b/packages/vue/__tests__/e2e/todomvc.spec.ts @@ -139,7 +139,7 @@ describe('e2e: todomvc', () => { // editing triggered by b...
[ "+ await click('#demo ul > .item div', { count: 2 })" ]
[ 47 ]
{ "additions": 5, "author": "jrmuizel", "deletions": 5, "html_url": "https://github.com/vuejs/core/pull/12778", "issue_id": 12778, "merged_at": "2025-01-29T12:22:20Z", "omission_probability": 0.1, "pr_number": 12778, "repo": "vuejs/core", "title": "test(e2e): Replace deprecated 'clickCount' property...
684
diff --git a/packages/runtime-vapor/__tests__/component.spec.ts b/packages/runtime-vapor/__tests__/component.spec.ts index a4af5be7ab1..c9f3a5ffd68 100644 --- a/packages/runtime-vapor/__tests__/component.spec.ts +++ b/packages/runtime-vapor/__tests__/component.spec.ts @@ -282,6 +282,24 @@ describe('component', () => { ...
diff --git a/packages/runtime-vapor/__tests__/component.spec.ts b/packages/runtime-vapor/__tests__/component.spec.ts index a4af5be7ab1..c9f3a5ffd68 100644 --- a/packages/runtime-vapor/__tests__/component.spec.ts +++ b/packages/runtime-vapor/__tests__/component.spec.ts @@ -282,6 +282,24 @@ describe('component', () => { ...
[]
[]
{ "additions": 30, "author": "edison1105", "deletions": 2, "html_url": "https://github.com/vuejs/core/pull/12727", "issue_id": 12727, "merged_at": "2025-01-29T04:30:00Z", "omission_probability": 0.1, "pr_number": 12727, "repo": "vuejs/core", "title": "fix(runtime-vapor): properly mount template-only...
685
diff --git a/packages/runtime-vapor/__tests__/apiLifecycle.spec.ts b/packages/runtime-vapor/__tests__/apiLifecycle.spec.ts index af9f10f9f42..7c941d254ac 100644 --- a/packages/runtime-vapor/__tests__/apiLifecycle.spec.ts +++ b/packages/runtime-vapor/__tests__/apiLifecycle.spec.ts @@ -21,7 +21,7 @@ import { } from '@vu...
diff --git a/packages/runtime-vapor/__tests__/apiLifecycle.spec.ts b/packages/runtime-vapor/__tests__/apiLifecycle.spec.ts index af9f10f9f42..7c941d254ac 100644 --- a/packages/runtime-vapor/__tests__/apiLifecycle.spec.ts +++ b/packages/runtime-vapor/__tests__/apiLifecycle.spec.ts @@ -21,7 +21,7 @@ import { } from '@vu...
[ "- // createIf,", "+ it('onBeforeUnmount', async () => {", "- onMounted(() => calls.push('onMounted'))", "- onBeforeUnmount(() => calls.push('onBeforeUnmount'))", "+", "- 'onMounted',", "- // 'mid onUpdated',", "- // 'mid onBeforeUnmount',", "+ expect(calls).toEqual...
[ 8, 18, 92, 95, 105, 122, 137, 150, 158, 164 ]
{ "additions": 38, "author": "edison1105", "deletions": 50, "html_url": "https://github.com/vuejs/core/pull/12678", "issue_id": 12678, "merged_at": "2025-01-29T04:13:42Z", "omission_probability": 0.1, "pr_number": 12678, "repo": "vuejs/core", "title": "test: update test cases", "total_changes": 88...
686
diff --git a/packages/runtime-core/src/component.ts b/packages/runtime-core/src/component.ts index f91af6c7399..493d08b5a05 100644 --- a/packages/runtime-core/src/component.ts +++ b/packages/runtime-core/src/component.ts @@ -366,6 +366,7 @@ export interface GenericComponentInstance { * @internal */ refs: Dat...
diff --git a/packages/runtime-core/src/component.ts b/packages/runtime-core/src/component.ts index f91af6c7399..493d08b5a05 100644 --- a/packages/runtime-core/src/component.ts +++ b/packages/runtime-core/src/component.ts @@ -366,6 +366,7 @@ export interface GenericComponentInstance { refs: Data + emit: EmitFn /*...
[ "+ * used for getting the keys of a component's raw props, vapor only", "- `onUpdate:${camelizedName}` in rawProps ||", "- )", "+ let rawPropKeys", "+ rawPropKeys = rawProps && Object.keys(rawProps)", "+ if (", "+ key === `onUpdate:${cameli...
[ 17, 70, 72, 75, 84, 89, 97 ]
{ "additions": 53, "author": "edison1105", "deletions": 16, "html_url": "https://github.com/vuejs/core/pull/12666", "issue_id": 12666, "merged_at": "2025-01-29T04:12:44Z", "omission_probability": 0.1, "pr_number": 12666, "repo": "vuejs/core", "title": "refactor(runtime-core): useModel work with vapo...
687
diff --git a/packages/runtime-vapor/__tests__/componentSlots.spec.ts b/packages/runtime-vapor/__tests__/componentSlots.spec.ts index f4ff0c31cba..452efa9bc33 100644 --- a/packages/runtime-vapor/__tests__/componentSlots.spec.ts +++ b/packages/runtime-vapor/__tests__/componentSlots.spec.ts @@ -15,6 +15,7 @@ import { } f...
diff --git a/packages/runtime-vapor/__tests__/componentSlots.spec.ts b/packages/runtime-vapor/__tests__/componentSlots.spec.ts index f4ff0c31cba..452efa9bc33 100644 --- a/packages/runtime-vapor/__tests__/componentSlots.spec.ts +++ b/packages/runtime-vapor/__tests__/componentSlots.spec.ts @@ -15,6 +15,7 @@ import { } f...
[ "+ prepend(n0 as any as ParentNode, createSlot('header', null))", "+ await nextTick()", "- if (isArray(slot)) {", "+ return slot.fn" ]
[ 23, 47, 60, 69 ]
{ "additions": 42, "author": "edison1105", "deletions": 5, "html_url": "https://github.com/vuejs/core/pull/12660", "issue_id": 12660, "merged_at": "2025-01-29T02:21:31Z", "omission_probability": 0.1, "pr_number": 12660, "repo": "vuejs/core", "title": "fix(runtime-vapor): properly handle dynamic slot...
688
diff --git a/packages/runtime-vapor/__tests__/componentEmits.spec.ts b/packages/runtime-vapor/__tests__/componentEmits.spec.ts index 7c3bfe69ed4..8c8a56085ba 100644 --- a/packages/runtime-vapor/__tests__/componentEmits.spec.ts +++ b/packages/runtime-vapor/__tests__/componentEmits.spec.ts @@ -195,8 +195,17 @@ describe('...
diff --git a/packages/runtime-vapor/__tests__/componentEmits.spec.ts b/packages/runtime-vapor/__tests__/componentEmits.spec.ts index 7c3bfe69ed4..8c8a56085ba 100644 --- a/packages/runtime-vapor/__tests__/componentEmits.spec.ts +++ b/packages/runtime-vapor/__tests__/componentEmits.spec.ts @@ -195,8 +195,17 @@ describe('...
[ "- // NOTE: not supported mixins", "- // test.todo('merge string array emits', async () => {})" ]
[ 29, 30 ]
{ "additions": 12, "author": "edison1105", "deletions": 7, "html_url": "https://github.com/vuejs/core/pull/12614", "issue_id": 12614, "merged_at": "2025-01-28T09:04:48Z", "omission_probability": 0.1, "pr_number": 12614, "repo": "vuejs/core", "title": "fix(runtime-vapor): properly normalize emits opt...
689
diff --git a/packages/runtime-vapor/src/componentMetadata.ts b/packages/runtime-vapor/src/componentMetadata.ts deleted file mode 100644 index 2a790b9ac3b..00000000000 --- a/packages/runtime-vapor/src/componentMetadata.ts +++ /dev/null @@ -1,25 +0,0 @@ -import { remove } from '@vue/shared' -import type { DelegatedHandle...
diff --git a/packages/runtime-vapor/src/componentMetadata.ts b/packages/runtime-vapor/src/componentMetadata.ts deleted file mode 100644 index 2a790b9ac3b..00000000000 --- a/packages/runtime-vapor/src/componentMetadata.ts +++ /dev/null @@ -1,25 +0,0 @@ -import { remove } from '@vue/shared' -import type { DelegatedHandle...
[ "+ el: any,", "+ const handlers: DelegatedHandler[] = el[cacheKey] || (el[cacheKey] = [])", "+ handlers.push(handler)", "+ onScopeDispose(() => remove(handlers, handler))" ]
[ 54, 63, 64, 65 ]
{ "additions": 8, "author": "edison1105", "deletions": 33, "html_url": "https://github.com/vuejs/core/pull/12610", "issue_id": 12610, "merged_at": "2025-01-28T09:03:42Z", "omission_probability": 0.1, "pr_number": 12610, "repo": "vuejs/core", "title": "refactor(runtime-vapor): cache delegate event ha...
690
diff --git a/drivers/unix/os_unix.cpp b/drivers/unix/os_unix.cpp index 3376a4d22f1c..a78a87bbdb5a 100644 --- a/drivers/unix/os_unix.cpp +++ b/drivers/unix/os_unix.cpp @@ -580,7 +580,7 @@ Dictionary OS_Unix::get_memory_info() const { return meminfo; } -#ifndef __GLIBC__ +#if !defined(__GLIBC__) && !defined(WEB_ENAB...
diff --git a/drivers/unix/os_unix.cpp b/drivers/unix/os_unix.cpp index 3376a4d22f1c..a78a87bbdb5a 100644 --- a/drivers/unix/os_unix.cpp +++ b/drivers/unix/os_unix.cpp @@ -580,7 +580,7 @@ Dictionary OS_Unix::get_memory_info() const { return meminfo; } void OS_Unix::_load_iconv() { #if defined(MACOS_ENABLED) || defi...
[]
[]
{ "additions": 6, "author": "dsnopek", "deletions": 6, "html_url": "https://github.com/godotengine/godot/pull/105768", "issue_id": 105768, "merged_at": "2025-04-25T23:30:25Z", "omission_probability": 0.1, "pr_number": 105768, "repo": "godotengine/godot", "title": "Web: Fix crash when built with `dli...
691
diff --git a/doc/classes/RenderingServer.xml b/doc/classes/RenderingServer.xml index 048b024e62f3..820563af0e82 100644 --- a/doc/classes/RenderingServer.xml +++ b/doc/classes/RenderingServer.xml @@ -2046,6 +2046,13 @@ Sets whether an instance is drawn or not. Equivalent to [member Node3D.visible]. </descriptio...
diff --git a/doc/classes/RenderingServer.xml b/doc/classes/RenderingServer.xml index 048b024e62f3..820563af0e82 100644 --- a/doc/classes/RenderingServer.xml +++ b/doc/classes/RenderingServer.xml @@ -2046,6 +2046,13 @@ Sets whether an instance is drawn or not. Equivalent to [member Node3D.visible]. </descriptio...
[ "-\t\t\t\tbool transform_changed = inst->prev_transform_change_frame == frame;", "+\t\t} transform_status = TransformStatus::MOVED;", "+\tvirtual void instance_teleport(RID p_instance);" ]
[ 86, 137, 211 ]
{ "additions": 55, "author": "Ansraer", "deletions": 7, "html_url": "https://github.com/godotengine/godot/pull/105437", "issue_id": 105437, "merged_at": "2025-04-25T16:42:00Z", "omission_probability": 0.1, "pr_number": 105437, "repo": "godotengine/godot", "title": "Allow moving meshes without motion...
692
diff --git a/editor/editor_help.cpp b/editor/editor_help.cpp index aebe0b40e888..71ae8bec43ec 100644 --- a/editor/editor_help.cpp +++ b/editor/editor_help.cpp @@ -1512,15 +1512,27 @@ void EditorHelp::_update_doc() { cd.signals.sort(); } - class_desc->add_newline(); - class_desc->add_newline(); - - section_l...
diff --git a/editor/editor_help.cpp b/editor/editor_help.cpp index aebe0b40e888..71ae8bec43ec 100644 --- a/editor/editor_help.cpp +++ b/editor/editor_help.cpp @@ -1512,15 +1512,27 @@ void EditorHelp::_update_doc() { cd.signals.sort(); } - - section_line.push_back(Pair<String, int>(TTR("Signals"), class_desc->ge...
[ "+\t\t\tif (!is_documented && signal.name.begins_with(\"_\")) {", "+\t\t\t\t_pop_title_font();" ]
[ 20, 33 ]
{ "additions": 19, "author": "Grublady", "deletions": 7, "html_url": "https://github.com/godotengine/godot/pull/105691", "issue_id": 105691, "merged_at": "2025-04-25T16:42:00Z", "omission_probability": 0.1, "pr_number": 105691, "repo": "godotengine/godot", "title": "Make documentation ignore undocum...
693
diff --git a/platform/linuxbsd/wayland/display_server_wayland.cpp b/platform/linuxbsd/wayland/display_server_wayland.cpp index ee09b816ac47..2feb3b4974ed 100644 --- a/platform/linuxbsd/wayland/display_server_wayland.cpp +++ b/platform/linuxbsd/wayland/display_server_wayland.cpp @@ -822,8 +822,9 @@ void DisplayServerWay...
diff --git a/platform/linuxbsd/wayland/display_server_wayland.cpp b/platform/linuxbsd/wayland/display_server_wayland.cpp index ee09b816ac47..2feb3b4974ed 100644 --- a/platform/linuxbsd/wayland/display_server_wayland.cpp +++ b/platform/linuxbsd/wayland/display_server_wayland.cpp @@ -822,8 +822,9 @@ void DisplayServerWay...
[ "+\tbool frame = wayland_thread.wait_frame_suspend_ms(WAYLAND_MAX_FRAME_TIME_US / 1000);", "-\t\t\t// that if a new frame is expected it's going to be committed by the renderer", "-\t\tif (suspend_state == SuspendState::CAPABILITY) {", "+\t\t\t\t// Due to the way legacy suspension works, we have to treat low ...
[ 70, 86, 113, 121, 142, 179 ]
{ "additions": 93, "author": "Riteo", "deletions": 65, "html_url": "https://github.com/godotengine/godot/pull/101454", "issue_id": 101454, "merged_at": "2025-04-25T16:42:00Z", "omission_probability": 0.1, "pr_number": 101454, "repo": "godotengine/godot", "title": "Wayland: Handle `fifo_v1` and clean...
694
diff --git a/doc/classes/ProjectSettings.xml b/doc/classes/ProjectSettings.xml index 6d6a4de968b1..c301222264d5 100644 --- a/doc/classes/ProjectSettings.xml +++ b/doc/classes/ProjectSettings.xml @@ -1160,6 +1160,7 @@ Maximum undo/redo history size for [TextEdit] fields. </member> <member name="gui/fonts/dynam...
diff --git a/doc/classes/ProjectSettings.xml b/doc/classes/ProjectSettings.xml index 6d6a4de968b1..c301222264d5 100644 --- a/doc/classes/ProjectSettings.xml +++ b/doc/classes/ProjectSettings.xml @@ -1160,6 +1160,7 @@ Maximum undo/redo history size for [TextEdit] fields. <member name="gui/fonts/dynamic_fonts/use_...
[ "-\t\tscaling_levels.insert(p_scale, new_sl);", "-\tRID *rid = texture_cache.getptr(p_scale);", "+\tRID *rid = texture_cache.getptr(scale);" ]
[ 47, 88, 91 ]
{ "additions": 21, "author": "bruvzg", "deletions": 13, "html_url": "https://github.com/godotengine/godot/pull/105725", "issue_id": 105725, "merged_at": "2025-04-25T16:42:00Z", "omission_probability": 0.1, "pr_number": 105725, "repo": "godotengine/godot", "title": "Use same oversampling granularity ...
695
diff --git a/drivers/gles3/storage/mesh_storage.h b/drivers/gles3/storage/mesh_storage.h index 05de4a58d574..a364636e378a 100644 --- a/drivers/gles3/storage/mesh_storage.h +++ b/drivers/gles3/storage/mesh_storage.h @@ -319,6 +319,7 @@ class MeshStorage : public RendererMeshStorage { virtual void mesh_clear(RID p_me...
diff --git a/drivers/gles3/storage/mesh_storage.h b/drivers/gles3/storage/mesh_storage.h index 05de4a58d574..a364636e378a 100644 --- a/drivers/gles3/storage/mesh_storage.h +++ b/drivers/gles3/storage/mesh_storage.h @@ -319,6 +319,7 @@ class MeshStorage : public RendererMeshStorage { Mesh *mesh = mesh_owner.get_or_nu...
[ "+\t\t\twhile (base_type != \"Resource\" || base_type != \"\") {", "+\t\t\t\tbase_type = ClassDB::get_parent_class(base_type);", "-\t\tvmlb->set_theme_type_variation(\"HeaderSmall\");", "+\t\t\tvmem_notice_icon = memnew(TextureRect);", "+\t\t\tvmem_notice_icon->set_tooltip_text(TTR(R\"(Notice:", "+\t\tif ...
[ 37, 38, 63, 71, 75, 195, 196, 246, 280, 283, 412, 413, 420 ]
{ "additions": 176, "author": "Ryan-000", "deletions": 8, "html_url": "https://github.com/godotengine/godot/pull/103238", "issue_id": 103238, "merged_at": "2025-04-25T16:42:00Z", "omission_probability": 0.1, "pr_number": 103238, "repo": "godotengine/godot", "title": "Add Meshes to the Video RAM Prof...
696
diff --git a/platform/linuxbsd/crash_handler_linuxbsd.cpp b/platform/linuxbsd/crash_handler_linuxbsd.cpp index d35e2f994d15..7258659c003f 100644 --- a/platform/linuxbsd/crash_handler_linuxbsd.cpp +++ b/platform/linuxbsd/crash_handler_linuxbsd.cpp @@ -31,6 +31,7 @@ #include "crash_handler_linuxbsd.h" #include "core/...
diff --git a/platform/linuxbsd/crash_handler_linuxbsd.cpp b/platform/linuxbsd/crash_handler_linuxbsd.cpp index d35e2f994d15..7258659c003f 100644 --- a/platform/linuxbsd/crash_handler_linuxbsd.cpp +++ b/platform/linuxbsd/crash_handler_linuxbsd.cpp #include "crash_handler_linuxbsd.h" @@ -146,6 +147,18 @@ static void han...
[]
[]
{ "additions": 52, "author": "bruvzg", "deletions": 0, "html_url": "https://github.com/godotengine/godot/pull/105741", "issue_id": 105741, "merged_at": "2025-04-25T16:42:00Z", "omission_probability": 0.1, "pr_number": 105741, "repo": "godotengine/godot", "title": "Print script backtrace in the crash...
697
diff --git a/modules/gdscript/gdscript_parser.cpp b/modules/gdscript/gdscript_parser.cpp index b6231d06b2b4..698675677af3 100644 --- a/modules/gdscript/gdscript_parser.cpp +++ b/modules/gdscript/gdscript_parser.cpp @@ -1087,7 +1087,27 @@ void GDScriptParser::parse_class_body(bool p_is_multiline) { // Display a com...
diff --git a/modules/gdscript/gdscript_parser.cpp b/modules/gdscript/gdscript_parser.cpp index b6231d06b2b4..698675677af3 100644 --- a/modules/gdscript/gdscript_parser.cpp +++ b/modules/gdscript/gdscript_parser.cpp @@ -1087,7 +1087,27 @@ void GDScriptParser::parse_class_body(bool p_is_multiline) { // Display a com...
[ "+\t\t\t\tif (previous.get_identifier() == \"export\") {", "+\t\t\t\t\tpush_error(R\"(The \"remote\" keyword was removed in Godot 4. Use the \"@rpc\" annotation with \"any_peer\" instead.)\");", "+\t\t\t\t\tpush_error(R\"(The \"remotesync\" keyword was removed in Godot 4. Use the \"@rpc\" annotation with \"any_...
[ 9, 16, 18, 25 ]
{ "additions": 35, "author": "Meorge", "deletions": 1, "html_url": "https://github.com/godotengine/godot/pull/104636", "issue_id": 104636, "merged_at": "2025-04-25T16:42:00Z", "omission_probability": 0.1, "pr_number": 104636, "repo": "godotengine/godot", "title": "Add specific errors for use of keyw...
698
diff --git a/modules/camera/camera_linux.cpp b/modules/camera/camera_linux.cpp index c95069442e0f..4991f0238e80 100644 --- a/modules/camera/camera_linux.cpp +++ b/modules/camera/camera_linux.cpp @@ -61,23 +61,23 @@ void CameraLinux::_update_devices() { } } - DIR *devices = opendir("/dev"); - - if (device...
diff --git a/modules/camera/camera_linux.cpp b/modules/camera/camera_linux.cpp index c95069442e0f..4991f0238e80 100644 --- a/modules/camera/camera_linux.cpp +++ b/modules/camera/camera_linux.cpp @@ -61,23 +61,23 @@ void CameraLinux::_update_devices() { - if (devices) { - struct dirent *device; - while ((device ...
[ "-\t\t\tDIR *devices = opendir(\"/dev\");" ]
[ 8 ]
{ "additions": 13, "author": "erodozer", "deletions": 13, "html_url": "https://github.com/godotengine/godot/pull/105734", "issue_id": 105734, "merged_at": "2025-04-25T16:42:00Z", "omission_probability": 0.1, "pr_number": 105734, "repo": "godotengine/godot", "title": "Fix camera feed device order on ...
699
diff --git a/drivers/d3d12/SCsub b/drivers/d3d12/SCsub index de9a16a16870..8e325c5a1b7f 100644 --- a/drivers/d3d12/SCsub +++ b/drivers/d3d12/SCsub @@ -43,8 +43,16 @@ if env["use_pix"]: # Mesa (SPIR-V to DXIL functionality). -mesa_dir = (env["mesa_libs"] + "/godot-mesa").replace("\\", "/") -mesa_gen_dir = (env["mes...
diff --git a/drivers/d3d12/SCsub b/drivers/d3d12/SCsub index de9a16a16870..8e325c5a1b7f 100644 --- a/drivers/d3d12/SCsub +++ b/drivers/d3d12/SCsub @@ -43,8 +43,16 @@ if env["use_pix"]: # Mesa (SPIR-V to DXIL functionality). -mesa_dir = (env["mesa_libs"] + "/godot-mesa").replace("\\", "/") -mesa_gen_dir = (env["mesa_li...
[ "+ \"x86_32-llvm\",", "+ if os.path.isfile(mesa_archive):", "+ os.remove(mesa_archive)", "+ mesa_archive,", "-print(f\"Downloading Mesa NIR {mesa_filename} ...\")" ]
[ 50, 60, 61, 65, 73 ]
{ "additions": 55, "author": "bruvzg", "deletions": 25, "html_url": "https://github.com/godotengine/godot/pull/105740", "issue_id": 105740, "merged_at": "2025-04-25T16:42:00Z", "omission_probability": 0.1, "pr_number": 105740, "repo": "godotengine/godot", "title": "Update Mesa-NIR library detection ...