Skip to content
Merged

beta #618

Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
19 commits
Select commit Hold shift + click to select a range
6af921c
New. SecurityLog. Defining authorization by a token link
AntonV1211 Feb 17, 2026
cbfabb6
upd version
svfcode Feb 17, 2026
bfd8339
upd version
svfcode Feb 17, 2026
5a21cf6
New. Tests. Add phpunit tests, test fixs
AntonV1211 Feb 17, 2026
348760d
New. Settings. Add options overview traffic light to General Settings…
svfcode Feb 17, 2026
cd2a106
Merge pull request #610 from CleanTalk/sec_log_login_token_av
AntonV1211 Feb 19, 2026
8defe72
Fix. Code. Gulp Old module replaced.
Glomberg Feb 20, 2026
c3e7e4d
Fix. Code. CSS minify fixed.
Glomberg Feb 20, 2026
17c8316
Fix. Settings. Setting overview block rebuilt to react component. (#611)
Glomberg Feb 21, 2026
1a2a5a2
Upd. Outbound links. Preparing data before output. https://app.doboar…
alexandergull Feb 25, 2026
56377ec
Upd. Security log. Preparing data before output. https://app.doboard.…
alexandergull Feb 25, 2026
c5a44bd
Fix. Firewall. Clearing the link parameter
AntonV1211 Feb 26, 2026
a098566
Merge pull request #616 from CleanTalk/vuln_xss_link_av
AntonV1211 Feb 26, 2026
88bc2ca
Merge pull request #614 from CleanTalk/fix_domain_and_links.ag
alexandergull Feb 26, 2026
71ce847
Merge branch 'fix' into beta
alexandergull Feb 26, 2026
cf3b218
Code. Assets flow. Now asset contain plugin folder instead of direct …
alexandergull Feb 26, 2026
adbf17f
Enhance malware scanner description in readme
shagimuratov Feb 18, 2026
983bd37
Fix. Unit. TokenLoginDetectionTest. Create spbc_users_pass table duri…
alexandergull Mar 2, 2026
b0323e4
Version: 2.174 and readme updated.
alexandergull Mar 2, 2026
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
18 changes: 13 additions & 5 deletions .github/workflows/dev-fix-zip.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,8 +17,8 @@ jobs:
with:
fetch-depth: 0

- name: Install p7zip
run: sudo apt-get update && sudo apt-get install -y p7zip-full
- name: Install dependencies
run: sudo apt-get update && sudo apt-get install -y p7zip-full rsync

- name: Set plugin name
run: echo "PLUGIN_NAME=security-malware-firewall" >> $GITHUB_ENV
Expand Down Expand Up @@ -58,8 +58,15 @@ jobs:
webpack.config.js
EOF

- name: Create ZIP archive with 7z
run: 7z a -tzip "${PLUGIN_NAME}.zip" . -xr@.7zignore
- name: Prepare plugin directory
run: |
mkdir "${PLUGIN_NAME}"
rsync -a ./ "${PLUGIN_NAME}/" \
--exclude-from=.7zignore \
--exclude="${PLUGIN_NAME}"

- name: Create ZIP archive
run: 7z a -tzip "${PLUGIN_NAME}.zip" "${PLUGIN_NAME}"

- name: Create / update GitHub Release and upload asset
uses: softprops/action-gh-release@v2
Expand All @@ -77,7 +84,8 @@ jobs:

- name: Clean up
run: |
rm -rf "${PLUGIN_NAME}"
rm -f "${PLUGIN_NAME}.zip"
if [ "${{ steps.check_ignore.outputs.ignore_exists }}" = "false" ]; then
rm -f .7zignore
fi
fi
2 changes: 1 addition & 1 deletion css/spbc-admin.min.css

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion css/spbc-dashboard-widget.min.css

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Loading