tag:github.com,2008:https://github.com/Blaspsoft/blasp/releasesRelease notes from blasp2025-02-27T21:59:47Ztag:github.com,2008:Repository/875360512/v2.1.02025-02-27T22:01:26Zv2.1.0<h1>v2.1.0 - Simplified Service Configuration</h1>
<h2>What's Changed</h2>
<ul>
<li>Simplified the <code>configure</code> method in <code>BlaspService</code> class by removing unnecessary null parameter</li>
<li>Improved code clarity and reduced redundancy in service instantiation</li>
</ul>
<h2>Technical Details</h2>
<p>Modified <code>src/BlaspService.php</code>:</p>
<ul>
<li>Removed redundant null parameter from <code>BlaspService</code> configuration</li>
<li>Streamlined service instantiation process</li>
</ul>
<h2>Upgrading</h2>
<p>This update is fully backwards compatible with v2.0.0. No changes are required in existing implementations.</p>deemonictag:github.com,2008:Repository/875360512/v2.0.02025-02-27T13:00:23Zv2.0.0<h1>Version 2.0.0</h1>
<h2>Major Changes</h2>
<ul>
<li>🚀 Added caching system for improved performance</li>
<li>⚡ Added <code>configure()</code> method for custom profanity and false positive lists</li>
<li>🔧 Removed incomplete language support for better maintainability</li>
<li>⚙️ Updated configuration structure and options</li>
</ul>
<h2>New Features</h2>
<h3>Caching System</h3>
<ul>
<li>Added automatic caching of profanity expressions</li>
<li>Added <code>php artisan blasp:clear</code> command to clear cache</li>
<li>Improved performance for repeated checks</li>
</ul>
<h3>Custom Lists Configuration</h3>
<p>You can now specify custom profanity and false positive lists which override the default config:</p>
<div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="$blasp = Blasp::configure(
profanities: $your_custom_list ,
falsePositives: $your_custom_false_positives
)->check($text);"><pre class="notranslate"><code>$blasp = Blasp::configure(
profanities: $your_custom_list ,
falsePositives: $your_custom_false_positives
)->check($text);
</code></pre></div>
<h2>Breaking Changes</h2>
<ul>
<li>Removed language support functionality</li>
<li>Updated configuration structure</li>
<li>Changed method signatures for configuration</li>
</ul>
<h2>Configuration Updates</h2>
<p>The configuration file now supports:</p>
<ul>
<li>Custom profanity lists</li>
<li>Custom false positive lists</li>
<li>Cached expressions for better performance</li>
</ul>
<h2>Migration Guide</h2>
<p>If you're upgrading from v1.x, you'll need to:</p>
<ol>
<li>Remove any language-specific configuration</li>
<li>Update to the new configuration structure</li>
<li>Use the new <code>configure()</code> method for custom lists</li>
</ol>
<h2>Requirements</h2>
<ul>
<li>PHP 8.0 or higher</li>
<li>Laravel 8.0 or higher</li>
</ul>deemonictag:github.com,2008:Repository/875360512/v1.2.22024-11-27T03:22:39Zv1.2.2<h2>Description</h2>
<p>This patch release focuses on resolving bugs and improving regex handling for better profanity detection accuracy.</p>
<h2>Fixes</h2>
<ul>
<li>Resolved an issue where certain profanities (e.g., <code>a$$</code>) were not correctly masked due to special character handling in regex.</li>
<li>Improved boundary checks to ensure proper detection of embedded profanities (e.g., <code>afuckb</code>).</li>
<li>Fixed false negatives and positives caused by specific edge cases in regex pattern matching.</li>
</ul>
<h2>Notes</h2>
<ul>
<li>All existing tests have been validated and updated to ensure compatibility and correctness.</li>
<li>This update is fully backward-compatible with <code>v1.2.x</code>.</li>
</ul>deemonictag:github.com,2008:Repository/875360512/v1.2.12024-10-25T15:12:37Zv1.2.1<p>Hotfixes and profanity list additions</p>deemonictag:github.com,2008:Repository/875360512/v1.2.02024-10-21T16:27:08Zv1.2.0: Merge pull request #1 from Blaspsoft/bugs/minor-fixes<p>Bugs/minor fixes</p>deemonictag:github.com,2008:Repository/875360512/v1.1.02024-10-20T14:58:59Zv1.1.0<p>updated readme</p>deemonictag:github.com,2008:Repository/875360512/v1.0.02024-10-19T19:23:33Zv1.0.0<p>updated image size in readme</p>deemonic