From 791f711cd0634d4545c2b1d3ddfbf85096274ae7 Mon Sep 17 00:00:00 2001 From: Jennifer Shehane Date: Fri, 25 Oct 2024 14:06:07 -0400 Subject: [PATCH 1/3] Remove odd bolded changelog entries --- docs/ui-coverage/changelog.mdx | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/docs/ui-coverage/changelog.mdx b/docs/ui-coverage/changelog.mdx index f8b81564e2..b9fcac957c 100644 --- a/docs/ui-coverage/changelog.mdx +++ b/docs/ui-coverage/changelog.mdx @@ -7,19 +7,19 @@ sidebar_position: 200 # Changelog -## **Week of 10/7/2024** +## Week of 10/7/2024 - **Improved Table Grouping:** The default grouping rules have been updated to more accurately identify and group elements in tables. -## **Week of 9/30/2024** +## Week of 9/30/2024 - **Slack Messages:** UI Coverage results results are now included in Slack messages alongside test results. [Learn more about our Slack integration here](https://on.cypress.io/slack-integration). -## **Week of 9/23/2024** +## Week of 9/23/2024 - **Improved Link Display Logic:** Links will now more consistently display across the reports, matching defined views more closely. -## **Week of 9/9/2024** +## Week of 9/9/2024 - **Element Tooltips:** We have improved the user experience of UI Coverage by adding tooltips for elements, emphasizing their selectors, making it easier to navigate coverage reports and identify elements. @@ -28,7 +28,7 @@ sidebar_position: 200 - **Results API:** We have added the new [Results API](/ui-coverage/results-api) which enables you to programmatically fetch your run's UI Coverage results in a CI environment. This allows you to act the results within CI by allowing you to determine if the results are acceptable or need to be addressed before code changes can merge. - **Pull and Merge Request Comments:** UI Coverage results will now appear in [GitHub](https://on.cypress.io/github-integration), [GitLab](https://on.cypress.io/gitlab-integration) and [Bitbucket](https://on.cypress.io/bitbucket-integration) pull request and merge request comments alongside test results. Integrations can be installed and comments can be enabled in Project Settings. -## **Week of 8/12/2024** +## Week of 8/12/2024 - **Improved attributeFilters Behavior:** When matching against class attributes, the [attributeFilters](/ui-coverage/configuration/attributefilters) configuration option now targets and filters individual class names rather than the entire value of the class attribute. From 0a5a6244a75a45106b562b20b4117dcd59663df5 Mon Sep 17 00:00:00 2001 From: Jennifer Shehane Date: Fri, 25 Oct 2024 14:07:11 -0400 Subject: [PATCH 2/3] Add UI coverage reroute --- netlify.toml | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/netlify.toml b/netlify.toml index aa0ba0346f..89ff0e851b 100644 --- a/netlify.toml +++ b/netlify.toml @@ -1099,6 +1099,12 @@ status = 301 force = true +[[redirects]] + from = "/ui-coverage" + to = "/ui-coverage/get-started/introduction" + status = 301 + force = true + [[redirects]] from = "/api/plugins/*" to = "/api/node-events/:splat" From 636687a30d0472cfd253ffbdec00d35c9977f464 Mon Sep 17 00:00:00 2001 From: Jennifer Shehane Date: Fri, 25 Oct 2024 14:19:34 -0400 Subject: [PATCH 3/3] reroute on accessibility url to intro --- netlify.toml | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/netlify.toml b/netlify.toml index 89ff0e851b..0d976f9228 100644 --- a/netlify.toml +++ b/netlify.toml @@ -1105,6 +1105,12 @@ status = 301 force = true +[[redirects]] + from = "/accessibility" + to = "/accessibility/get-started/introduction" + status = 301 + force = true + [[redirects]] from = "/api/plugins/*" to = "/api/node-events/:splat"