From 12e0aecb702e061058458de4c6a3ea157307ad17 Mon Sep 17 00:00:00 2001 From: "renovate[bot]" <29139614+renovate[bot]@users.noreply.github.com> Date: Fri, 28 Jun 2024 14:33:33 -0400 Subject: [PATCH 1/5] fix(deps): update dependency lru-cache to v10.3.0 (#12664) Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com> --- install/package.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/install/package.json b/install/package.json index 72117cb44d..7cc3f2318d 100644 --- a/install/package.json +++ b/install/package.json @@ -86,7 +86,7 @@ "jsonwebtoken": "9.0.2", "lodash": "4.17.21", "logrotate-stream": "0.2.9", - "lru-cache": "10.2.2", + "lru-cache": "10.3.0", "mime": "3.0.0", "mkdirp": "3.0.1", "mongodb": "6.7.0", From 48f8e464245884baaddee27852a908139c524db0 Mon Sep 17 00:00:00 2001 From: "renovate[bot]" <29139614+renovate[bot]@users.noreply.github.com> Date: Sun, 30 Jun 2024 13:20:12 -0400 Subject: [PATCH 2/5] fix(deps): update dependency mongodb to v6.8.0 (#12663) Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com> --- install/package.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/install/package.json b/install/package.json index 7cc3f2318d..484e23b7c1 100644 --- a/install/package.json +++ b/install/package.json @@ -89,7 +89,7 @@ "lru-cache": "10.3.0", "mime": "3.0.0", "mkdirp": "3.0.1", - "mongodb": "6.7.0", + "mongodb": "6.8.0", "morgan": "1.10.0", "mousetrap": "1.6.5", "multiparty": "4.2.3", From cba80283edc1d8ac8679afb3effd5e9d70251f67 Mon Sep 17 00:00:00 2001 From: "renovate[bot]" <29139614+renovate[bot]@users.noreply.github.com> Date: Sun, 30 Jun 2024 13:20:19 -0400 Subject: [PATCH 3/5] fix(deps): update dependency workerpool to v9.1.3 (#12665) Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com> --- install/package.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/install/package.json b/install/package.json index 484e23b7c1..70d5180f85 100644 --- a/install/package.json +++ b/install/package.json @@ -146,7 +146,7 @@ "webpack": "5.92.1", "webpack-merge": "5.10.0", "winston": "3.13.0", - "workerpool": "9.1.2", + "workerpool": "9.1.3", "xml": "1.0.1", "xregexp": "5.1.1", "yargs": "17.7.2", From ba65f193d442bc26cccfb4d3b91398fd293b5ae4 Mon Sep 17 00:00:00 2001 From: "renovate[bot]" <29139614+renovate[bot]@users.noreply.github.com> Date: Sun, 30 Jun 2024 13:20:28 -0400 Subject: [PATCH 4/5] fix(deps): update dependency postcss to v8.4.39 (#12666) Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com> --- install/package.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/install/package.json b/install/package.json index 70d5180f85..7f645d6457 100644 --- a/install/package.json +++ b/install/package.json @@ -116,7 +116,7 @@ "passport-local": "1.0.0", "pg": "8.12.0", "pg-cursor": "2.11.0", - "postcss": "8.4.38", + "postcss": "8.4.39", "postcss-clean": "1.2.0", "progress-webpack-plugin": "1.0.16", "prompt": "1.3.0", From 10c5cd4c62443e2a11cf83f94a16ab4ab8c97106 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Bar=C4=B1=C5=9F=20Soner=20U=C5=9Fakl=C4=B1?= Date: Wed, 3 Jul 2024 13:46:52 -0400 Subject: [PATCH 5/5] fix: prevent category filter to go to selected cid if there is an href on the clicked element, like all categories item --- public/src/modules/categoryFilter.js | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/public/src/modules/categoryFilter.js b/public/src/modules/categoryFilter.js index 21dcd46b96..7c76182dd3 100644 --- a/public/src/modules/categoryFilter.js +++ b/public/src/modules/categoryFilter.js @@ -61,11 +61,12 @@ define('categoryFilter', ['categorySearch', 'api', 'hooks'], function (categoryS } }); - el.on('click', '[component="category/list"] [data-cid]', function () { + el.on('click', '[component="category/list"] [data-cid]', function (ev) { const listEl = el.find('[component="category/list"]'); const categoryEl = $(this); const link = categoryEl.find('a').attr('href'); if (link && link !== '#' && link.length) { + ev.stopPropagation(); return; } const cid = categoryEl.attr('data-cid');