-
Notifications
You must be signed in to change notification settings - Fork 4
chore: update mcp sdk, oauth provider, and agents packages #533
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
Changes from all commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -1,5 +1,5 @@ | ||
| { | ||
| "version": "6.1.1", | ||
| "version": "6.1.2", | ||
| "commands": { | ||
| "authCommand": { | ||
| "id": "authCommand", | ||
|
|
||
| Original file line number | Diff line number | Diff line change | ||||||||||
|---|---|---|---|---|---|---|---|---|---|---|---|---|
|
|
@@ -9,7 +9,9 @@ process.env.OCLIF_NEXT_VERSION = '1' | |||||||||||
| // Ensure TypeScript files required by @oclif/test are compiled at runtime | ||||||||||||
| try { | ||||||||||||
| require('ts-node/register') | ||||||||||||
| } catch {} | ||||||||||||
| } catch { | ||||||||||||
| // ts-node may not be available in all environments, ignore error | ||||||||||||
|
Comment on lines
+12
to
+13
|
||||||||||||
| } catch { | |
| // ts-node may not be available in all environments, ignore error | |
| } catch (err) { | |
| // ts-node may not be available in all environments, ignore MODULE_NOT_FOUND error | |
| if (!err || err.code !== 'MODULE_NOT_FOUND') throw err; |
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.
[nitpick] The removed
clientUrivariable was assigned fromclient.clientUri || '#', but the code comment indicates 'No default logo' for the clientLogo assignment. Consider verifying that the 'No default logo' comment is still accurate and appropriately placed. The comment placement may be misleading as it appears after the clientLogo assignment when it might have been related to the removed clientUri line.