-
Notifications
You must be signed in to change notification settings - Fork 8.2k
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
[Reporting] Add deprecation messages for roles mapped to reporting_user #115125
Merged
tsullivan
merged 7 commits into
elastic:7.16
from
tsullivan:reporting/roles-deprecation-errorhandling-7.x
Oct 20, 2021
Merged
Changes from all commits
Commits
Show all changes
7 commits
Select commit
Hold shift + click to select a range
4847e72
[Reporting] Add deprecation messages for roles mapped to reporting_user
tsullivan 8eced82
Merge remote-tracking branch 'elastic/7.16' into reporting/roles-depr…
tsullivan e1697d2
updates to content per feedback
tsullivan a72a5f6
updates per feedback
tsullivan f8be210
store packageInfo in reportingCore
tsullivan f61cd48
use branch in the documentation links generated in the server
tsullivan 7bb8efa
add tests for scenario where config does not need to be changed
tsullivan 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
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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -13,6 +13,7 @@ import { | |
BasePath, | ||
IClusterClient, | ||
KibanaRequest, | ||
PackageInfo, | ||
PluginInitializerContext, | ||
SavedObjectsClientContract, | ||
SavedObjectsServiceStart, | ||
|
@@ -57,7 +58,7 @@ export interface ReportingInternalStart { | |
} | ||
|
||
export class ReportingCore { | ||
private kibanaVersion: string; | ||
private packageInfo: PackageInfo; | ||
private pluginSetupDeps?: ReportingInternalSetup; | ||
private pluginStartDeps?: ReportingInternalStart; | ||
private readonly pluginSetup$ = new Rx.ReplaySubject<boolean>(); // observe async background setupDeps and config each are done | ||
|
@@ -72,7 +73,7 @@ export class ReportingCore { | |
public getContract: () => ReportingSetup; | ||
|
||
constructor(private logger: LevelLogger, context: PluginInitializerContext<ReportingConfigType>) { | ||
this.kibanaVersion = context.env.packageInfo.version; | ||
this.packageInfo = context.env.packageInfo; | ||
const syncConfig = context.config.get<ReportingConfigType>(); | ||
this.deprecatedAllowedRoles = syncConfig.roles.enabled ? syncConfig.roles.allow : false; | ||
this.executeTask = new ExecuteReportTask(this, syncConfig, this.logger); | ||
|
@@ -85,8 +86,8 @@ export class ReportingCore { | |
this.executing = new Set(); | ||
} | ||
|
||
public getKibanaVersion() { | ||
return this.kibanaVersion; | ||
public getKibanaPackageInfo() { | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. This change is to allow documentation links generated on the server to use the current branch. |
||
return this.packageInfo; | ||
} | ||
|
||
/* | ||
|
113 changes: 113 additions & 0 deletions
113
x-pack/plugins/reporting/server/deprecations/__snapshots__/reporting_role.test.ts.snap
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
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.
This is unrelated to this PR, but the existing text in this config deprecation was really hard to read on the page.