Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
28 commits
Select commit Hold shift + click to select a range
b8fcd1b
chore(release): 0.1.41
Genyus Feb 27, 2026
1506c0f
Merge pull request #878 from CodingBlackFemales/release-20260227031127
Genyus Mar 5, 2026
e3a8207
chore(deps): update Composer dependencies
Genyus Mar 5, 2026
bcd46cd
chore(deps): update BuddyBoss Pro 2.5.00->2.13.1
Genyus Mar 17, 2026
b346f27
chore(deps): restore original BuddyBoss plugin
Genyus Mar 17, 2026
3e199bc
chore(deps): update BuddyBoss theme 2.7.30->2.19.0
Genyus Mar 17, 2026
62d0a21
chore(deps): update Composer dependencies
Genyus Mar 17, 2026
46d1ec6
chore(deps): update outdated dependencies
Genyus Mar 17, 2026
d9d6fa0
chore: remove web/.htaccess from Git
Genyus Mar 17, 2026
987a742
ci: update actions to support Node24
Genyus Mar 17, 2026
d745e19
ci: update more actions for Node24
Genyus Mar 17, 2026
e13db43
chore: enable debugging in staging
Genyus Mar 17, 2026
a2c2953
fix: add missing function
Genyus Mar 17, 2026
d6739aa
fix: include erroneously ignored vendor directory
Genyus Mar 17, 2026
467a27e
fix: include theme vendor directories
Genyus Mar 17, 2026
147c3b4
fix: add more missing vendor directories
Genyus Mar 17, 2026
0f69034
ci: bump health check action
Genyus Mar 23, 2026
1c70dae
chore(deps): update Composer dependencies
Genyus Mar 24, 2026
0c0debc
chore(deps): update BuddyBoss Platform
Genyus Mar 24, 2026
82e0320
chore(deps): update BuddyBoss theme
Genyus Mar 24, 2026
ad23034
chore(deps): update npm dependencies
Genyus Mar 24, 2026
1114ec4
chore(deps-dev): bump flatted from 3.3.1 to 3.4.2
dependabot[bot] Mar 24, 2026
88071ee
chore(deps-dev): bump minimatch from 3.1.2 to 3.1.5
dependabot[bot] Mar 24, 2026
413b958
Merge pull request #877 from CodingBlackFemales/dependabot/npm_and_ya…
Genyus Mar 24, 2026
24287f1
Merge pull request #885 from CodingBlackFemales/dependabot/npm_and_ya…
Genyus Mar 24, 2026
68ca47e
chore(deps): update WP Rocket
Genyus Mar 25, 2026
1f8e1f6
Merge branch 'develop' of github.com:CodingBlackFemales/wordpress int…
Genyus Mar 25, 2026
17d0b47
chore(deps): remove WP All Import Pro plugin
Genyus Mar 25, 2026
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
The table of contents is too big for display.
Diff view
Diff view
  •  
  •  
  •  
The diff you're trying to view is too large. We only load the first 3000 changed files.
6 changes: 3 additions & 3 deletions .github/workflows/deploy-application.yml
Original file line number Diff line number Diff line change
Expand Up @@ -49,10 +49,10 @@ jobs:
steps:
# Sets the Node version
- name: Setup Node.js
uses: actions/setup-node@v4
uses: actions/setup-node@v6
with:
node-version: "20.x"
node-version: "24.x"
- name: Check site
uses: jtalk/url-health-check-action@v4
uses: jtalk/url-health-check-action@v5
with:
url: ${{ vars.DESTINATION_URL }}
8 changes: 4 additions & 4 deletions .github/workflows/deploy-push.yml
Original file line number Diff line number Diff line change
Expand Up @@ -23,15 +23,15 @@ jobs:
# Steps represent a sequence of tasks that will be executed as part of the job
steps:
# Checks-out your repository under $GITHUB_WORKSPACE, so your job can access it
- uses: actions/checkout@v4
- uses: actions/checkout@v6

- name: Setup PHP
uses: shivammathur/setup-php@v2
with:
php-version: 8.2

- name: Cache Composer dependencies
uses: actions/cache@v4
uses: actions/cache@v5
with:
path: /tmp/composer-cache
key: ${{ runner.os }}-${{ hashFiles('**/composer.lock') }}
Expand Down Expand Up @@ -59,7 +59,7 @@ jobs:
token: ${{ secrets.ADMIN_GITHUB_TOKEN }}

- name: Setup Node.js
uses: actions/setup-node@v4
uses: actions/setup-node@v6
with:
node-version: "20.x"

Expand Down Expand Up @@ -112,7 +112,7 @@ jobs:
- name: Deploy to hosting environment
env:
WORKFLOW_ID: ${{ 'deploy-application.yml' }}
uses: actions/github-script@v7
uses: actions/github-script@v8
with:
github-token: ${{ secrets.ADMIN_GITHUB_TOKEN }}
script: |-
Expand Down
7 changes: 6 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@
web/app/languages
web/app/plugins/*
!web/app/plugins/.gitkeep
!web/app/plugins/buddyboss-platform
!web/app/plugins/buddyboss-platform-pro
!web/app/plugins/buddypages
web/app/plugins/buddypages/.git
Expand Down Expand Up @@ -48,10 +49,11 @@ web/app/cache/wp-rocket

# Composer
**/vendor/*
!web/app/plugins/buddyboss-platform-pro/vendor/*
!web/app/plugins/buddyboss-platform*/**/vendor/*
!web/app/plugins/wp-all-import-pro/vendor/*
!web/app/plugins/wp-rocket/vendor/*
!web/app/plugins/wpforms/vendor/*
!web/app/themes/buddyboss-theme/**/vendor/*
!vendor/.gitkeep

# WP-CLI
Expand Down Expand Up @@ -86,3 +88,6 @@ sync.conf

# GitHub
auth.json

# Apache
web/.htaccess
13 changes: 13 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,19 @@

All notable changes to this project will be documented in this file. See [commit-and-tag-version](https://github.com/absolute-version/commit-and-tag-version) for commit guidelines.

## [0.1.41](https://github.com/CodingBlackFemales/wordpress/compare/v0.1.40...v0.1.41) (2026-02-27)


### Features

* add S3 endpoint filters ([35e103c](https://github.com/CodingBlackFemales/wordpress/commit/35e103c77affb49b59a88cd5b1cc01ecf1f5d04b))
* configure S3 Uploads plugin ([dfaf029](https://github.com/CodingBlackFemales/wordpress/commit/dfaf029eb073cb091b3ddd1394fa982a58ef3fc2))


### Bug Fixes

* uninstall obsolete plugin ([18499bf](https://github.com/CodingBlackFemales/wordpress/commit/18499bf25f2465d7975ae54a4c55b27c98737971))

## [0.1.40](https://github.com/CodingBlackFemales/wordpress/compare/v0.1.39...v0.1.40) (2025-11-11)

## [0.1.39](https://github.com/CodingBlackFemales/wordpress/compare/v0.1.38...v0.1.39) (2025-11-11)
Expand Down
10 changes: 1 addition & 9 deletions composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -40,15 +40,10 @@
"koodimonni-plugin-language/*",
"koodimonni-theme-language/*"
]
},
{
"type": "vcs",
"url": "https://github.com/codingblackfemales/buddyboss-platform.git"
}
],
"require": {
"php": ">=8.0",
"buddyboss/buddyboss-platform": "dev-release",
"composer/installers": "^2.3.0",
"humanmade/s3-uploads": "^3.0.11",
"johnpbloch/wordpress": "^6.9.1",
Expand All @@ -73,7 +68,7 @@
"wpackagist-plugin/import-meetup-events": "^1.6.9",
"wpackagist-plugin/jetpack": "^15.5.0",
"wpackagist-plugin/login-as-user": "^1.6.8",
"wpackagist-plugin/mailchimp-for-woocommerce": "^5.6.0",
"wpackagist-plugin/mailchimp-for-woocommerce": "^6.0",
"wpackagist-plugin/members": "^3.2.18",
"wpackagist-plugin/myworks-woo-sync-for-quickbooks-online": "^3.0.3",
"wpackagist-plugin/optimole-wp": "^4.2.1",
Expand Down Expand Up @@ -160,16 +155,13 @@
"php -r \"copy('.env.example', '.env');\""
],
"post-install-cmd": [
"@configure-bp",
"@configure-ssp",
"if [ ! -e .env ]; then cp .env.dist .env; fi",
"if [ ! -e wp-cli.yml ]; then cp wp-cli.yml.dist wp-cli.yml; fi"
],
"post-update-cmd": [
"@configure-bp",
"@configure-ssp"
],
"configure-bp": "cd web/app/plugins/buddyboss-platform;composer install;cd ../../../..",
"configure-ssp": "cd web/app/plugins/cbf-multisite;composer install;cd ../../../..",
"lint": "phpcs --standard=phpcs.xml",
"lint:all": "@lint ./web/app/plugins/cbf-multisite ./web/app/themes/cbf-academy ./web/app/themes/cbf-jobs",
Expand Down
Loading
Loading