-
Notifications
You must be signed in to change notification settings - Fork 30
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
fix: expand server settings returned by LanguageClientMiddleware
[HEAD-975]
#392
fix: expand server settings returned by LanguageClientMiddleware
[HEAD-975]
#392
Conversation
`LanguageClientMiddleware` includes new attributes such as `deviceId`, `integrationName`, and `integrationVersion` to align with the initialization options. BREAKING CHANGE: The middleware now requires a `User` object to be instantiated.
nitpick: Please update the changelog :) |
`ServerSettings` includes user-specific attributes such as `integrationName`, `integrationVersion`, `automaticAuthentication`, and `deviceId`. This change consolidates all configuration-related options into a single `ServerSettings` structure. BREAKING CHANGE: The `fromConfiguration` method in `LanguageServerSettings` now requires `User` object. All consumers of `ServerSettings` must now expect the additional user-specific properties.
Reworked ServerSettings to enhance clarity and logical grouping of configuration properties. Added `defaultToTrue` utility function to handle undefined feature flags, defaulting them to 'true' and ensuring consistent server settings initialization.
## [1.26.1] | ||
|
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.
I'm not sure about this version 🤔 Where can I validate it?
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.
It should be the next version (minor) after the currently released.
Description
LanguageClientMiddleware
includes new attributes such asdeviceId
,integrationName
, andintegrationVersion
to align with the initialization options.BREAKING CHANGE: The middleware now requires a
User
object to be instantiated.Checklist