-
Notifications
You must be signed in to change notification settings - Fork 8.6k
fix(cli): harden extension registration and discovery workflows #2499
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Merged
+846
−60
Merged
Changes from all commits
Commits
Show all changes
31 commits
Select commit
Hold shift + click to select a range
0b244a8
chore: update community catalog with latest extension versions
DyanGalih 730918e
fix(cli): harden extension registration with project-level tracking i…
DyanGalih c953140
test(cli): add comprehensive unit tests for extension registration logic
DyanGalih 4af789a
chore: remove out-of-scope catalog changes
DyanGalih 0fd9a14
refactor: address PR feedback for extension registration hardening
DyanGalih 019acae
fix: harden extension registration defensive logic and add comprehens…
DyanGalih 51d19ce
fix: sanitize installed to strings, guard unregister_hooks dict, hand…
DyanGalih ba34237
fix(cli): persist sanitization results and harden hook registration
DyanGalih f7785b5
Harden extension registration to always persist sanitization results
DyanGalih 6da7a6c
Hardening extension registration: support mapping entries, improve pe…
DyanGalih 0c83a00
fix(cli): harden extension update and unregistration workflows
DyanGalih 2279905
fix(cli): move update sentinels outside try block to prevent NameErro…
DyanGalih 1c4d01f
fix(cli): sanitize hook event lists in register_hooks to prevent crashes
DyanGalih 353f2b6
fix(cli): deduplicate hook entries and harden rollback hooks-restore …
DyanGalih f71a37a
test(cli): add regression tests for extension update and rollback har…
DyanGalih cdda39a
fix(cli): deduplicate installed list by id in register_extension
DyanGalih d8a091e
fix(cli): consolidate and harden extension update rollback logic
DyanGalih b1074a2
fix(cli): initialize backup_registry_entry before try block to preven…
DyanGalih bad7c92
fix(tests): return Path from download_extension mock and add Path import
DyanGalih 1f0e3d2
fix(cli): normalize get_project_config() return to dict; deduplicate …
DyanGalih 614b9f5
fix(cli): normalize hooks/installed/settings in get_project_config();…
DyanGalih 07a6e02
fix(cli): set modified=True on hook coercion in rollback; sanitize ho…
DyanGalih 160ecd5
fix(cli): filter non-dict hook entries in get_project_config(); remov…
DyanGalih 921f65d
fix(cli): gate extensions.yml rollback on backup_hooks is not None; u…
DyanGalih 91d10c7
fix(cli): move _AgentReg import outside try block; assert result.exce…
DyanGalih bc957de
fix(extensions): normalize empty-file config; clarify comment; assert…
DyanGalih 2e77b19
fix(extensions): consistent key order in default config; deep-copy ba…
DyanGalih 808c73a
test: fix misleading comment; assert exit_code==1 in rollback test
DyanGalih cc37aba
test: clean up duplicate imports in hardening tests
DyanGalih 22efd6a
refactor(extensions): extract _sanitize_installed_list helper; streng…
DyanGalih ff5e189
fix(extensions): validate extension IDs in _sanitize_installed_list; …
DyanGalih File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Some comments aren't visible on the classic Files Changed page.
There are no files selected for viewing
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
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
Oops, something went wrong.
Oops, something went wrong.
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.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
✅ Fixed in commit 91d10c7. Moved the
_AgentRegimport to just outside thetryblock, alongside the other module-level setup:The inline import inside step 3 was removed. Rollback can now always reference
_AgentRegregardless of which step raised the exception.