From 8c3f24428631925e7a03dc2d0f8d800fa0d7fed2 Mon Sep 17 00:00:00 2001 From: Mitch Downey Date: Mon, 31 Jul 2023 23:03:09 -0500 Subject: [PATCH 1/2] Handle "!" as a wildcard in manticore search --- src/services/manticore.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/services/manticore.ts b/src/services/manticore.ts index ecdb1e18..82efe4bc 100644 --- a/src/services/manticore.ts +++ b/src/services/manticore.ts @@ -9,4 +9,4 @@ client.basePath = `${protocol}://${domain}:${port}` export const searchApi = new Manticoresearch.UtilsApi(client) -export const manticoreWildcardSpecialCharacters = (str: string) => str.replace(/\?|-| |%|:|\(|\)|\//g, "'") +export const manticoreWildcardSpecialCharacters = (str: string) => str.replace(/\?|-|!| |%|:|\(|\)|\//g, "'") From 0a6a99ad324dcd8fb3e1e4ea55483b906d1096de Mon Sep 17 00:00:00 2001 From: Mitch Downey Date: Mon, 31 Jul 2023 23:03:19 -0500 Subject: [PATCH 2/2] Bump to version 4.13.8 --- package.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package.json b/package.json index 543da462..fe00930a 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "podverse-api", - "version": "4.13.7", + "version": "4.13.8", "description": "Data API, database migration scripts, and backend services for all Podverse models.", "contributors": [ "Mitch Downey"