Skip to content

Commit ce25bf2

Browse files
[Timelion] Update the removal message to mention the exact version (#100994) (#101466)
* [Timelion] Update the removal message to mention the exact version * Fix typo Co-authored-by: Kibana Machine <42973632+kibanamachine@users.noreply.github.com> Co-authored-by: Kibana Machine <42973632+kibanamachine@users.noreply.github.com>
1 parent 99edd52 commit ce25bf2

3 files changed

Lines changed: 4 additions & 4 deletions

File tree

docs/user/dashboard/timelion.asciidoc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
To use *Timelion*, you define a graph by chaining functions together, using the *Timelion*-specific syntax.
55
The syntax enables some features that classical point series charts don't offer, such as pulling data from different indices or data sources into one graph.
66

7-
deprecated::[7.0.0,"*Timelion* is still supported. The *Timelion app* is deprecated in 7.0, replaced by dashboard features. In the last 7.x minor version and later, the *Timelion app* is removed from {kib}. To prepare for the removal of *Timelion app*, you must migrate *Timelion app* worksheets to a dashboard. For information on how to migrate *Timelion app* worksheets, refer to the link:https://www.elastic.co/guide/en/kibana/7.10/release-notes-7.10.0.html#deprecation-v7.10.0[7.10.0 Release Notes]."]
7+
deprecated::[7.0.0,"*Timelion* is still supported. The *Timelion app* is deprecated in 7.0, replaced by dashboard features. In 7.16 and later, the *Timelion app* is removed from {kib}. To prepare for the removal of *Timelion app*, you must migrate *Timelion app* worksheets to a dashboard. For information on how to migrate *Timelion app* worksheets, refer to the link:https://www.elastic.co/guide/en/kibana/7.10/release-notes-7.10.0.html#deprecation-v7.10.0[7.10.0 Release Notes]."]
88

99
[float]
1010
==== Timelion expressions

src/plugins/timelion/public/components/timelion_deprecation.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ export const TimelionDeprecation = ({ links }: DocLinksStart) => {
1919
title={
2020
<FormattedMessage
2121
id="timelion.deprecation.message"
22-
defaultMessage="Deprecated since 7.0, the Timelion app will be removed in the last 7.x minor version. To continue using your Timelion worksheets, {timeLionDeprecationLink}."
22+
defaultMessage="Deprecated since 7.0, the Timelion app will be removed in 7.16. To continue using your Timelion worksheets, {timeLionDeprecationLink}."
2323
values={{
2424
timeLionDeprecationLink: (
2525
<EuiLink href={timelionDeprecationLink} target="_blank" external>

src/plugins/timelion/server/deprecations.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ export const showWarningMessageIfTimelionSheetWasFound = async (
3030
const count = await getTimelionSheetsCount(savedObjectsClient);
3131
if (count > 0) {
3232
logger.warn(
33-
'Deprecated since 7.0, the Timelion app will be removed in the last 7.x minor version. To continue using your Timelion worksheets, migrate them to a dashboard. See https://www.elastic.co/guide/en/kibana/current/create-panels-with-timelion.html.'
33+
'Deprecated since 7.0, the Timelion app will be removed in 7.16. To continue using your Timelion worksheets, migrate them to a dashboard. See https://www.elastic.co/guide/en/kibana/current/create-panels-with-timelion.html.'
3434
);
3535
}
3636
};
@@ -49,7 +49,7 @@ export async function getDeprecations({
4949

5050
if (count > 0) {
5151
deprecations.push({
52-
message: `You have ${count} Timelion worksheets. The Timelion app will be removed in the last 7.x minor version. To continue using your Timelion worksheets, migrate them to a dashboard.`,
52+
message: `You have ${count} Timelion worksheets. The Timelion app will be removed in 7.16. To continue using your Timelion worksheets, migrate them to a dashboard.`,
5353
documentationUrl:
5454
'https://www.elastic.co/guide/en/kibana/current/create-panels-with-timelion.html',
5555
level: 'warning',

0 commit comments

Comments
 (0)