From cabf2cbbae1f1e160d922918da5d747fb4ce64a5 Mon Sep 17 00:00:00 2001 From: Niall McCullagh Date: Wed, 30 Dec 2020 10:27:46 +0000 Subject: [PATCH 1/2] docs(techradar-plugin) Update loader resp example Updates the tech-radar loader response example to reflect changes in the schema for supporting event history tracking. --- plugins/tech-radar/README.md | 11 +++++++++-- 1 file changed, 9 insertions(+), 2 deletions(-) diff --git a/plugins/tech-radar/README.md b/plugins/tech-radar/README.md index cbe4dd22eb..21f90ec432 100644 --- a/plugins/tech-radar/README.md +++ b/plugins/tech-radar/README.md @@ -83,13 +83,20 @@ const getHardCodedData = () => rings: [{ id: 'use', name: 'USE', color: '#93c47d' }], entries: [ { - moved: 0, - ring: 'use', url: '#', key: 'github-actions', id: 'github-actions', title: 'GitHub Actions', quadrant: 'infrastructure', + timeline: [ + { + moved: 0, + ringId: 'use', + date: new Date('2020-08-06'), + description: + 'Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat', + }, + ], }, ], }); From bc909178d7b1c4c39275b72cfd9bd25e832eceed Mon Sep 17 00:00:00 2001 From: Patrik Oldsberg Date: Wed, 30 Dec 2020 13:57:55 +0100 Subject: [PATCH 2/2] Create tough-jars-share.md --- .changeset/tough-jars-share.md | 5 +++++ 1 file changed, 5 insertions(+) create mode 100644 .changeset/tough-jars-share.md diff --git a/.changeset/tough-jars-share.md b/.changeset/tough-jars-share.md new file mode 100644 index 0000000000..f1b551f31e --- /dev/null +++ b/.changeset/tough-jars-share.md @@ -0,0 +1,5 @@ +--- +'@backstage/plugin-tech-radar': patch +--- + +Updated example data in `README`.