-
Notifications
You must be signed in to change notification settings - Fork 8.3k
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] Remove "download CSV" export type functionality, Part 2 #201010
[Reporting] Remove "download CSV" export type functionality, Part 2 #201010
Conversation
A documentation preview will be available soon. Request a new doc build by commenting
If your PR continues to fail for an unknown reason, the doc build pipeline may be broken. Elastic employees can check the pipeline status here. |
b5ff439
to
60d1cf9
Compare
60d1cf9
to
392b936
Compare
Pinging @elastic/appex-sharedux (Team:SharedUX) |
/ci |
💛 Build succeeded, but was flaky
Failed CI StepsTest FailuresMetrics [docs]
|
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.
LGTM 👍
@@ -60,7 +60,7 @@ const CaptureSchema = schema.object({ | |||
const CsvSchema = schema.object({ | |||
checkForFormulas: schema.boolean({ defaultValue: true }), | |||
escapeFormulaValues: schema.boolean({ defaultValue: false }), | |||
enablePanelActionDownload: schema.boolean({ defaultValue: false }), // unused as of 9.0 | |||
enablePanelActionDownload: schema.maybe(schema.boolean({ defaultValue: false })), // unused as of 9.0 |
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.
So we still allow the enablePanelActionDownload
setting to be in the yml
file?
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.
Yes. We do not want to block instances from startup if this setting exists. The extent of the breaking change is just to ignore the setting.
…lastic#201010) Follows elastic#199033 ## Summary This PR further removes logic that uses `xpack.reporting.csv.enablePanelActionDownload`, and removes references of that setting from our documentation. See elastic#199033 for the **release note**. ### Changes 1. `enablePanelActionDownload` exists as an **optional** setting in `packages/kbn-reporting/server/config_schema.ts` 2. The only reference to this setting marks it as unused in `x-pack/plugins/reporting/server/config/index.ts` 3. Removes the detection of the setting from the Upgrade Assistant integration ### Checklist Check the PR satisfies following conditions. Reviewers should verify this PR satisfies this list as well. - [x] [Documentation](https://www.elastic.co/guide/en/kibana/master/development-documentation.html) was added for features that require explanation or tutorials - [x] This was checked for breaking HTTP API changes, and any breaking changes have been approved by the breaking-change committee. The `release_note:breaking` label should be applied in these situations.
…lastic#201010) Follows elastic#199033 ## Summary This PR further removes logic that uses `xpack.reporting.csv.enablePanelActionDownload`, and removes references of that setting from our documentation. See elastic#199033 for the **release note**. ### Changes 1. `enablePanelActionDownload` exists as an **optional** setting in `packages/kbn-reporting/server/config_schema.ts` 2. The only reference to this setting marks it as unused in `x-pack/plugins/reporting/server/config/index.ts` 3. Removes the detection of the setting from the Upgrade Assistant integration ### Checklist Check the PR satisfies following conditions. Reviewers should verify this PR satisfies this list as well. - [x] [Documentation](https://www.elastic.co/guide/en/kibana/master/development-documentation.html) was added for features that require explanation or tutorials - [x] This was checked for breaking HTTP API changes, and any breaking changes have been approved by the breaking-change committee. The `release_note:breaking` label should be applied in these situations.
Follows #199033
Summary
This PR further removes logic that uses
xpack.reporting.csv.enablePanelActionDownload
, and removes references of that setting from our documentation. See #199033 for the release note.Changes
enablePanelActionDownload
exists as an optional setting inpackages/kbn-reporting/server/config_schema.ts
x-pack/plugins/reporting/server/config/index.ts
Checklist
Check the PR satisfies following conditions.
Reviewers should verify this PR satisfies this list as well.
release_note:breaking
label should be applied in these situations.