docs/releases/v1.15.0-next.0-changelog.md
1fd38bc4141a: Material UI v5 Support: Adding platform-wide support for Material UI v5 allowing a transition phase for migrating central plugins & components over. We still support v4 instances & plugins by adding a
To allow the future support of plugins & components using Material UI v5 you want to upgrade your AppTheme's to using the UnifiedThemeProvider
Provider: ({ children }) => (
- <ThemeProvider theme={lightTheme}>
- <CssBaseline>{children}</CssBaseline>
- </ThemeProvider>
+ <UnifiedThemeProvider theme={builtinThemes.light} children={children} />
),
UnifiedThemeProvider for supporting Material UI v5 next to Material UI v4 in tests.1fd38bc4141a: Material UI v5 Support: Adding platform-wide support for Material UI v5 allowing a transition phase for migrating central plugins & components over. We still support v4 instances & plugins by adding a
To allow the future support of plugins & components using Material UI v5 you want to upgrade your AppTheme's to using the UnifiedThemeProvider
Provider: ({ children }) => (
- <ThemeProvider theme={lightTheme}>
- <CssBaseline>{children}</CssBaseline>
- </ThemeProvider>
+ <UnifiedThemeProvider theme={builtinThemes.light} children={children} />
),
cb4c15989b6b: The EntityOwnerPicker component has undergone improvements to enhance its performance.
The component now loads entities asynchronously, resulting in improved performance and responsiveness. Instead of loading all entities upfront, they are now loaded in batches as the user scrolls.
The previous implementation inferred users and groups displayed by the EntityOwnerPicker component based on the entities available in the EntityListContext. The updated version no longer relies on the EntityListContext for inference, allowing for better decoupling and improved performance.
96e1004e2a02: Added support GitHub Enterprise hosted repositories.
BREAKING: The GithubActionsClient is updated to take an scmAuthApi instead of the previous githubAuthApi. This does not require any code changes unless you construct your own GithubActionsClient
bbf91840a52a: BREAKING: Removed public constructor from LinguistBackendApi. Removed export of LinguistBackendDatabase and LinguistBackendStore
Several improvements to the Linguist backend have been made:
LinguistBackendDatabase and LinguistBackendApiprocesses_date columnLinguistBackendApi into an InterfaceLinguistBackendClient which implements the LinguistBackendApi Interface/ in the key were incorrectly handled.Authorization header for EventSource when credentials are available.optional property in catalog:register scaffolder actionpublish:gitlab:merge-requesta5baeea2cb87: Allows for an optional tokenManager to authenticate requests from the collator to the explore backend. For example:
indexBuilder.addCollator({
schedule: every10MinutesSchedule,
factory: ToolDocumentCollatorFactory.fromConfig(env.config, {
discovery: env.discovery,
logger: env.logger,
+ tokenManager: env.tokenManager,
}),
});
Updated dependencies
plugin-techdocs-react plugin