From 0453619c81b6b394d89b2af63c2eed00f9968df7 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jo=C3=A3o=20Mikos?= Date: Tue, 20 Feb 2024 11:59:55 +0100 Subject: [PATCH 1/2] Changed timeline order in example snippet. MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: João Mikos --- .changeset/neat-buckets-thank.md | 5 +++++ plugins/tech-radar/README.md | 12 ++++++------ 2 files changed, 11 insertions(+), 6 deletions(-) create mode 100644 .changeset/neat-buckets-thank.md diff --git a/.changeset/neat-buckets-thank.md b/.changeset/neat-buckets-thank.md new file mode 100644 index 0000000000..162827c1d7 --- /dev/null +++ b/.changeset/neat-buckets-thank.md @@ -0,0 +1,5 @@ +--- +'@backstage/plugin-tech-radar': minor +--- + +Fixed the order of timeline items in the snippet of the README.md file to match the order required by the plugin to reflect the latest event change in the Tech Radar. This brings the README.md snippet to reflect what is shown in the src/sample.ts file. diff --git a/plugins/tech-radar/README.md b/plugins/tech-radar/README.md index a28ced777e..f90bd2748e 100644 --- a/plugins/tech-radar/README.md +++ b/plugins/tech-radar/README.md @@ -170,17 +170,17 @@ The TS example can be found [here](src/sample.ts). "url": "#", "quadrant": "1", "timeline": [ - { - "moved": 0, - "ringId": "trial", - "date": "2022-02-06", - "description": "Long description for trial" - }, { "moved": 1, "ringId": "adopt", "date": "2022-02-08", "description": "Long description for adopt" + }, + { + "moved": 0, + "ringId": "trial", + "date": "2022-02-06", + "description": "Long description for trial" } ] }, From 7a2a600c2e3f69b4910924280bc142e8c6b59a49 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jo=C3=A3o=20Mikos?= Date: Thu, 7 Mar 2024 20:00:34 -0300 Subject: [PATCH 2/2] More succint changeset message. MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: João Mikos --- .changeset/neat-buckets-thank.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.changeset/neat-buckets-thank.md b/.changeset/neat-buckets-thank.md index 162827c1d7..b19b2b4b2e 100644 --- a/.changeset/neat-buckets-thank.md +++ b/.changeset/neat-buckets-thank.md @@ -2,4 +2,4 @@ '@backstage/plugin-tech-radar': minor --- -Fixed the order of timeline items in the snippet of the README.md file to match the order required by the plugin to reflect the latest event change in the Tech Radar. This brings the README.md snippet to reflect what is shown in the src/sample.ts file. +Fixed example snippet in `README.md` to reflect correct timeline item order.