From bf086c37fec5d11110c8d38c4e902c3949e5ae0a Mon Sep 17 00:00:00 2001 From: OlegIvaniv Date: Fri, 21 Apr 2023 12:08:24 +0200 Subject: [PATCH] fix(core): Add breaking change record for domain and url matching (no-changelog) (#6048) * fix(core): Add breaking change record for domain and url matching * Correct version --- packages/cli/BREAKING-CHANGES.md | 11 +++++++++++ 1 file changed, 11 insertions(+) diff --git a/packages/cli/BREAKING-CHANGES.md b/packages/cli/BREAKING-CHANGES.md index 47bb59f918d9e..f260be6fa2fb5 100644 --- a/packages/cli/BREAKING-CHANGES.md +++ b/packages/cli/BREAKING-CHANGES.md @@ -2,6 +2,17 @@ This list shows all the versions which include breaking changes and how to upgrade. +## 0.226.0 + +### What changed? + +The `extractDomain` and `isDomain` are now also matching localhost, domains without protocol and domains with query parameters. +The `extractUrl` and `isUrl` are additionally also matching localhost and domains with query parameters. + +### When is action necessary? + +If you're using the `extractDomain` or `isDomain` functions and expect them to not match localhost, domains without protocol and domains with query parameters. + ## 0.223.0 ### What changed?