From 3e66d850775ce8f5c49a4ab0d011dc2d69e2104e Mon Sep 17 00:00:00 2001 From: Conventional Changelog Action Date: Wed, 23 Jun 2021 22:10:04 +0000 Subject: [PATCH] chore(release): v1.0.38 --- CHANGELOG.md | 14 ++++++-------- index.js | 2 +- package.json | 2 +- 3 files changed, 8 insertions(+), 10 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index ad16774..0ff4fa3 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,11 @@ +## 1.0.38 (2021-06-23) + + + + ## 1.0.37 (2021-06-23) +* chore(release): v1.0.37 ([1643092](https://github.com/simonecorsi/mawesome/commit/1643092)) * build(deps): bump glob-parent from 5.1.1 to 5.1.2 ([e558e07](https://github.com/simonecorsi/mawesome/commit/e558e07)) * build(deps): bump hosted-git-info from 2.8.8 to 2.8.9 ([110a667](https://github.com/simonecorsi/mawesome/commit/110a667)) * build(deps): bump normalize-url from 4.5.0 to 4.5.1 ([202d6fe](https://github.com/simonecorsi/mawesome/commit/202d6fe)) @@ -26,11 +32,3 @@ -## 1.0.33 (2021-05-19) - -* chore(release): v1.0.33 ([fc187df](https://github.com/simonecorsi/mawesome/commit/fc187df)) -* build(deps): bump handlebars from 4.7.6 to 4.7.7 ([012928b](https://github.com/simonecorsi/mawesome/commit/012928b)) -* build(deps): bump lodash from 4.17.20 to 4.17.21 ([1015179](https://github.com/simonecorsi/mawesome/commit/1015179)) - - - diff --git a/index.js b/index.js index 4bc6455..02e636c 100644 --- a/index.js +++ b/index.js @@ -18482,7 +18482,7 @@ const testParameter = (name, filters) => { }; const normalizeDataURL = (urlString, {stripHash}) => { - const parts = urlString.match(/^data:(.*?),(.*?)(?:#(.*))?$/); + const parts = urlString.match(/^data:([^,]*?),([^#]*?)(?:#(.*))?$/); if (!parts) { throw new Error(`Invalid URL: ${urlString}`); diff --git a/package.json b/package.json index 1975775..4b77336 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "mawesome", - "version": "1.0.37", + "version": "1.0.38", "description": "Generate awesome list from user starred repositories", "main": "index.js", "author": "Simone Corsi",