Chore: update dependencies and fix test cases#214
Merged
FogDong merged 3 commits intokubevela:mainfrom Oct 7, 2025
Merged
Conversation
dbc74a6 to
48a5e9f
Compare
Codecov Report✅ All modified and coverable lines are covered by tests. Additional details and impacted files@@ Coverage Diff @@
## main #214 +/- ##
==========================================
+ Coverage 62.49% 67.41% +4.92%
==========================================
Files 62 62
Lines 4415 5939 +1524
==========================================
+ Hits 2759 4004 +1245
- Misses 1324 1584 +260
- Partials 332 351 +19
Flags with carried forward coverage won't be shown. Click here to find out more. ☔ View full report in Codecov by Sentry. 🚀 New features to boost your workflow:
|
e7251f6 to
078d694
Compare
- Updated cuelang.org/go from v0.9.2 to v0.14.1 - Updated github.com/google/go-cmp from v0.6.0 to v0.7.0 - Updated github.com/spf13/pflag from v1.0.5 to v1.0.7 - Added indirect dependency github.com/emicklei/proto v1.14.2 - Updated indirect dependencies including golang.org/x/crypto, golang.org/x/net, golang.org/x/oauth2, golang.org/x/sync, golang.org/x/sys, golang.org/x/term, and golang.org/x/text to their latest versions - Fixed test cases in operation_test.go to correct patchKey and patchStrategy annotations Signed-off-by: Ayush Kumar <ayushshyamkumar888@gmail.com>
Signed-off-by: Ayush Kumar <ayushshyamkumar888@gmail.com>
Signed-off-by: Ayush Kumar <ayushshyamkumar888@gmail.com>
4b31629 to
b27b160
Compare
briankane
approved these changes
Oct 7, 2025
FogDong
approved these changes
Oct 7, 2025
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Description of your changes
This PR upgrades the CUE dependency from v0.9.2 to v0.14.1
Changes:
cuelang.org/gofrom v0.9.2 to v0.14.1 in go.modgo mod tidypkg/cue/model/sets/operation_test.goandpkg/cue/model/sets/utils_test.goto accommodate CUE v0.14.1's field ordering changesFixes #
I have:
kubevela/kubevela/blob/master/contribute/create-pull-request.md).
properly. In a new feature or configuration option, an update to the
documentation is necessary.
make reviewableto ensure this PR is ready for review.backport release-x.ylabels to auto-backport this PR ifnecessary.
How has this code been tested
go build ./...go test ./pkg/...modifications
Special notes for your reviewer
Field Ordering Changes:
CUE v0.14.1 changed how fields are ordered in formatted output. This is expected behavior as CUE fields are inherently unordered. Test expectations in
pkg/cue/model/sets/operation_test.goandpkg/cue/model/sets/utils_test.gohave been updated to reflect the new ordering (e.g., fields now appear in lexicographic order in some cases).Summary by cubic
Upgraded CUE to v0.14.1 and refreshed related dependencies. Updated test expectations to match CUE’s new field ordering and corrected patch annotations.
Dependencies
Bug Fixes