Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
33 commits
Select commit Hold shift + click to select a range
2f98002
fix(importer): replace die() with exit() in BPMediaAlbumimporter
NoumaanAhamed Dec 5, 2025
0e75fa7
Merge pull request #2238 from rtCamp/fix/php-8.4-changes
NoumaanAhamed Dec 12, 2025
cc309ba
fix(package-lock): remove unnecessary peer properties from dependencies
NoumaanAhamed Dec 31, 2025
d305ee3
fix: replace .html() with .text() and handle XSS attack
NoumaanAhamed Dec 31, 2025
42b6890
Security-fix: update dependencies in wp-e2e-playwright package.json (…
NoumaanAhamed Dec 31, 2025
2c8049d
Secuirty-fix: code scanning alert no. 13: Incomplete string escaping …
NoumaanAhamed Dec 31, 2025
5c866e8
fix: replace .html() with .text() and handle XSS attack (#2248)
NoumaanAhamed Dec 31, 2025
06bd91f
chore: update magnific popup to v1.2.0 (#2246)
NoumaanAhamed Dec 31, 2025
ab319b0
chore: update composer packages (#2243)
NoumaanAhamed Dec 31, 2025
249e530
fix(security): implement XSS and DOM injection prevention in rtMedia.…
NoumaanAhamed Dec 31, 2025
ef86eb7
fix: add explicit permissions to GitHub Actions workflows
rtBot Jan 1, 2026
734382c
Merge pull request #2252 from rtCamp/fix/workflow-permissions
mrrobot47 Jan 1, 2026
bb0373b
Fix/workflow permissions (#2254)
NoumaanAhamed Jan 1, 2026
df37586
bug: Update app/assets/js/rtMedia.backbone.js
NoumaanAhamed Jan 1, 2026
f0c04ba
Security-fix: Remove further security issues in magnific.js (#2255)
NoumaanAhamed Jan 2, 2026
fb70f35
Merge pull request #2251 from rtCamp/fix/codeql-issues
NoumaanAhamed Jan 2, 2026
060128e
chore: npm update the package files
NoumaanAhamed Jan 2, 2026
a083462
Merge pull request #2245 from rtCamp/security-issue/root-npm
NoumaanAhamed Jan 2, 2026
aa94575
fix: use jquery to prevent XSS
NoumaanAhamed Jan 2, 2026
ea1bc13
Merge branch 'develop' into security-issue/rtmedia-js
NoumaanAhamed Jan 2, 2026
460e436
Merge pull request #2256 from rtCamp/security-issue/rtmedia-js
NoumaanAhamed Jan 2, 2026
0542ce8
Update Docker image version in Playwright workflow
mrrobot47 Jan 2, 2026
1b69c98
fix: enhance security by safely parsing HTML and validating selectors…
NoumaanAhamed Jan 2, 2026
316275a
fix: improve element selection in Magnific Popup by validating select…
NoumaanAhamed Jan 2, 2026
67e3d1e
fix: update comment
NoumaanAhamed Jan 2, 2026
5f4c43a
Merge pull request #2259 from rtCamp/fix/magnific-js
NoumaanAhamed Jan 2, 2026
5706e3d
Merge pull request #2258 from rtCamp/fix/codeql-issues
NoumaanAhamed Jan 2, 2026
e6b6b52
Version update v4.7.8
NoumaanAhamed Jan 5, 2026
2e55c22
version update v4.7.8
NoumaanAhamed Jan 5, 2026
41da4a8
fix: remove PHP version requirement from plugin files
NoumaanAhamed Jan 5, 2026
0f5604e
Merge pull request #2260 from rtCamp/version-update/v4.7.8
NoumaanAhamed Jan 5, 2026
2745dbc
chore: update changelog and date for version 4.7.8 release
NoumaanAhamed Jan 6, 2026
183c160
Merge pull request #2265 from rtCamp/version-update/v4.7.8
NoumaanAhamed Jan 6, 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
4 changes: 4 additions & 0 deletions .github/workflows/create.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,10 @@ on:
push:
tags:
- '*'

permissions:
contents: read

jobs:
tag:
runs-on: ubuntu-latest
Expand Down
5 changes: 5 additions & 0 deletions .github/workflows/phpcs_on_pull_request.yml
Original file line number Diff line number Diff line change
@@ -1,5 +1,10 @@
on: pull_request
name: Inspections

permissions:
contents: read
pull-requests: write

jobs:
runPHPCSInspection:
name: Run PHPCS inspection
Expand Down
9 changes: 6 additions & 3 deletions .github/workflows/playwright.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,9 @@ on:
# Allows you to run this workflow manually from the Actions tab
workflow_dispatch:

permissions:
contents: read

jobs:
Run-wpe2e-TestCase:
# The type of runner that the job will run on
Expand All @@ -36,9 +39,9 @@ jobs:
ls -al
# Install config site
- name: Install and config site
uses: docker://rtcamp/base-wo:v1.0.0
uses: docker://rtcamp/base-wo:v1.1.0
env:
NODE_VERSION: 17
NODE_VERSION: 22
RCLONE_CONFIG: ${{ secrets.RCLONE_CONFIG }}

- name: Archive HTML Report on failure
Expand All @@ -50,4 +53,4 @@ jobs:

- name: Cleanup
if: ${{ always() }}
uses: rtCamp/action-cleanup@master
uses: rtCamp/action-cleanup@master
Loading
Loading