Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
34 commits
Select commit Hold shift + click to select a range
6d26cb3
fix(update): preserve Kptfile formatting during upgrades
Jaisheesh-2006 Mar 6, 2026
aba7432
fix(kptfile): validate and sanitize Kptfile updates
Jaisheesh-2006 Mar 12, 2026
0867239
fix(update) : implement copilot suggestions
Jaisheesh-2006 Apr 8, 2026
f80d687
fix : explicitly treat maps and slices
Jaisheesh-2006 Apr 8, 2026
31bf47d
fix: harden kptfile writes, stabilize tests, and relax flaky live-app…
Jaisheesh-2006 Apr 8, 2026
871e685
fix(e2e): quote reconcile summary optional output in crd-and-cr config
Jaisheesh-2006 Apr 8, 2026
c1ea9f1
fix(kptfileutil): harden write/update paths and recover from invalid …
Jaisheesh-2006 Apr 8, 2026
6e86718
test: centralize normalization helpers and clean up kptfile test asse…
Jaisheesh-2006 Apr 10, 2026
f0f68c1
fix: preserve kptfile handling semantics and tighten related test hyg…
Jaisheesh-2006 Apr 10, 2026
938aa0b
fix(kptfileutil): extend format preservation to WriteKptfileToFS and …
Jaisheesh-2006 Apr 15, 2026
d7e7888
fix :
Jaisheesh-2006 Apr 15, 2026
1b8e20f
fix(test): normalize e2e diffs and align Kptfile comment-preservation…
Jaisheesh-2006 Apr 17, 2026
357e3fb
test(e2e): stabilize fn-render golden diffs for Kptfile status ordering
Jaisheesh-2006 Apr 19, 2026
0cbb4c9
test(runner): make Kptfile diff normalization robust for fn-render sn…
Jaisheesh-2006 Apr 19, 2026
ce259d7
test(runner): harden Kptfile diff normalization for podman fn-render …
Jaisheesh-2006 Apr 19, 2026
23790d0
test(runner): stabilize Kptfile diff normalization for e2e comparisons
Jaisheesh-2006 Apr 22, 2026
e99261b
test: fix linting failures in test runner utility
Jaisheesh-2006 Apr 22, 2026
95ec40b
test: sync fn-render expected diffs with kptfileko Kptfile output format
Jaisheesh-2006 Apr 22, 2026
fede79b
test(e2e): sync fn-render goldens and keep runner diff normalization …
Jaisheesh-2006 Apr 23, 2026
609cafc
test(runner): strip indent drift in non-Kptfile diff hunks
Jaisheesh-2006 Apr 23, 2026
efdcdad
fix(kptfileutil): satisfy ST1005 + gofmt on Kptfile decode guard
Jaisheesh-2006 Apr 23, 2026
aee0790
fix(e2e): restore lost golden content + ST1005 fixes for Kptfile decode
Jaisheesh-2006 Apr 23, 2026
61fdb72
fix(test): make Test_GitParseArgs hermetic
Jaisheesh-2006 Apr 23, 2026
10fe48a
fix(e2e/test): stderr stripRE + race-free resolver injection
Jaisheesh-2006 Apr 24, 2026
d7ee346
fix: address copilot review findings on decode/normalizer paths
Jaisheesh-2006 Apr 24, 2026
b8450b1
Preserve indentation in diff normalization
Jaisheesh-2006 May 15, 2026
cef553e
Fix: Conflict resolution during rebase
Jaisheesh-2006 May 15, 2026
22d1a4b
Fix : Lint check
Jaisheesh-2006 May 15, 2026
29a4fdd
test(e2e): align fn-render expectations after diff normalization
Jaisheesh-2006 May 18, 2026
f5484e8
Fix: wasm test errors
Jaisheesh-2006 May 18, 2026
c2c1cd5
Fix: rerun kind test
Jaisheesh-2006 May 22, 2026
2c91f43
Fix:import error of utilstrings
Jaisheesh-2006 May 22, 2026
33bea8b
Fix: no-op function input
Jaisheesh-2006 May 22, 2026
2145ae9
Fix: no-op issue
Jaisheesh-2006 May 25, 2026
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 10 additions & 0 deletions .gitattributes
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
* text=auto eol=lf

*.go text eol=lf
*.yaml text eol=lf
*.yml text eol=lf
*.json text eol=lf
*.sh text eol=lf
*.patch text eol=lf
*.txt text eol=lf
Makefile text eol=lf
4 changes: 2 additions & 2 deletions commands/live/migrate/migratecmd.go
Original file line number Diff line number Diff line change
Expand Up @@ -386,8 +386,8 @@ func (mr *Runner) migrateKptfileToRG(args []string) error {
switch {
case rgFileErr == nil:
return errors.E(op, errors.IO, types.UniquePath(dir), "the resourcegroup file already exists and inventory information cannot be migrated")
case err != nil && !goerrors.Is(err, os.ErrNotExist):
return errors.E(op, errors.IO, types.UniquePath(dir), err)
case rgFileErr != nil && !goerrors.Is(rgFileErr, os.ErrNotExist):
return errors.E(op, errors.IO, types.UniquePath(dir), rgFileErr)
}

err = (&initialization.ConfigureInventoryInfo{
Expand Down
Loading
Loading