-
Notifications
You must be signed in to change notification settings - Fork 960
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
Refactored ext:install to use the latest extension metadata. #5997
Merged
Merged
Changes from all commits
Commits
Show all changes
28 commits
Select commit
Hold shift + click to select a range
8d993df
Added cascading of latest approved version to latest version when ins…
apascal07 caf805d
Changed output of extension version info.
apascal07 4ce8fc6
Formatting, added more metadata, and cleaned up TODOs.
apascal07 3ce0c95
Formatting and extra notices.
apascal07 1ef2992
Added even more metadata.
apascal07 160eb51
Formatting.
apascal07 5558760
Fixing tests.
apascal07 f4a6231
Merge branch 'master' into ap-latest-version
apascal07 e3e7065
Added display of extension resources.
apascal07 d8fcfb4
Added link to Extensions Hub.
apascal07 83abfb0
Added displaying of events.
apascal07 89bd3d4
Formatting.
apascal07 8aa5f18
Formatting.
apascal07 2f26e26
Version bug.
apascal07 7190227
Added displaying of secrets and task queues.
apascal07 79d21d1
Added displaying of external services.
apascal07 f07fe5e
Fixed resolveVersion() + tests.
apascal07 6fb7722
Added tests for displayExtensionInfo().
apascal07 7e6fcb9
Merge branch 'master' into ap-latest-version
apascal07 66edd99
Update CHANGELOG.md
apascal07 1e3d2e2
Update CHANGELOG.md
apascal07 286685f
Update CHANGELOG.md
apascal07 6d0c1a9
Better messaging and parameterizing.
apascal07 6ce2d53
Merge branch 'master' into ap-latest-version
apascal07 01c68e3
Update displayExtensionInfo.ts
apascal07 dad2289
Update displayExtensionInfo.spec.ts
apascal07 9b9f959
Merge branch 'master' into ap-latest-version
apascal07 376e595
Update CHANGELOG.md
apascal07 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
There are no files selected for viewing
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
- Refactored `ext:install` to use the latest extension metadata. (#5997) |
This file contains 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 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 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 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.
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.
Are these
| undefined
needed? I think it is usually only necessary if you are explicitly settingsource=undefined
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.
Hmm, if I don't then
if (!source && !extensionVersion)
complains about using them before initialization. Isn'tMyType | undefined
the expanded version of an optional/nullable in TS?