Skip to content
Merged

Release #1095

Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
17 commits
Select commit Hold shift + click to select a range
7e73e40
Sync branch [skip ci]
pirate-bot Jul 16, 2025
621af35
Sync branch [skip ci]
pirate-bot Jul 16, 2025
5bde3d5
dev: upgrade phpcs and add phpstan
Soare-Robert-Daniel Jul 21, 2025
2052c85
chore(deps-dev): bump wp-coding-standards/wpcs from 3.1.0 to 3.2.0
dependabot[bot] Jul 28, 2025
898b288
chore(deps): bump codeinwp/themeisle-sdk from 3.3.46 to 3.3.47
dependabot[bot] Jul 28, 2025
79ab951
chore(deps-dev): bump wp-coding-standards/wpcs from 3.1.0 to 3.2.0 (#…
Soare-Robert-Daniel Jul 28, 2025
1b19d05
Merge pull request #1104 from Codeinwp/dependabot/composer/developmen…
Soare-Robert-Daniel Jul 28, 2025
ccfb1fd
feat: add optgroup label support in feed options sanitizer (#1101)
RaduCristianPopescu Jul 28, 2025
1008ea5
fix: image handling in Feedzy RSS Feeds (#1107)
RaduCristianPopescu Jul 28, 2025
45cec8b
fix: feed export action visibility (#1098)
girishpanchal30 Jul 28, 2025
797c900
feat: new onboarding workflow (#1106)
Soare-Robert-Daniel Jul 29, 2025
e1b8122
fix: disable input elements in PRO upsell for conditionals (#1096)
RaduCristianPopescu Jul 29, 2025
19e5e87
refactor: deprecate the Feedzy Classic Block http protocol selector (…
RaduCristianPopescu Jul 29, 2025
dc20f64
dev: track the import count per week and days since install (#1102)
Soare-Robert-Daniel Jul 30, 2025
a4b7788
refactor: removed the headers for plugin pages (#1110)
RaduCristianPopescu Jul 30, 2025
fcdaac0
fix: react component structure in inspector for feedzy block (#1111)
RaduCristianPopescu Jul 30, 2025
df00a78
chore: do not run import on Oboarding import draft creation
Soare-Robert-Daniel Jul 30, 2025
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
2 changes: 2 additions & 0 deletions .distignore
Original file line number Diff line number Diff line change
Expand Up @@ -42,3 +42,5 @@ docker-compose.travis.yml
docker-compose.ci.yml
.wp-env.json
artifacts
phpstan.neon
phpstan-baseline.neon
2 changes: 1 addition & 1 deletion .github/workflows/test-e2e.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ jobs:
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
with:
node-version: "18"
node-version: "20"
cache: "npm"
- name: Install npm deps
run: |
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/test-lint-js.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ jobs:
- name: Setup node
uses: actions/setup-node@v4
with:
node-version: "18"
node-version: "20"
cache: "npm"
- name: Install Dependencies
run: npm install
Expand Down
17 changes: 17 additions & 0 deletions .github/workflows/test-php.yml
Original file line number Diff line number Diff line change
Expand Up @@ -25,6 +25,23 @@ jobs:
- name: Run PHPCS
run: composer run lint

phpstan:
name: PHPStan
runs-on: ubuntu-latest
steps:
- name: Setup PHP version
uses: shivammathur/setup-php@v2
with:
php-version: "7.4"
extensions: simplexml
- name: Checkout source code
uses: actions/checkout@v4
- name: Install composer
run: |
composer install --prefer-dist --no-progress
- name: Run phpstan
run: composer run phpstan

phpunit:
name: PHPUnit
runs-on: ubuntu-latest
Expand Down
9 changes: 7 additions & 2 deletions composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,9 @@
"scripts": {
"format": "phpcbf --standard=phpcs.xml --report-summary --report-source",
"lint": "phpcs --standard=phpcs.xml",
"test": "phpunit"
"test": "phpunit",
"phpstan": "phpstan",
"phpstan:generate:baseline": "phpstan --generate-baseline"
},
"minimum-stability": "dev",
"prefer-stable": true,
Expand All @@ -48,6 +50,9 @@
"wp-coding-standards/wpcs": "^3.1",
"dealerdirect/phpcodesniffer-composer-installer": "^1.0.0",
"phpcompatibility/phpcompatibility-wp": "^2.1",
"yoast/phpunit-polyfills": "^4.0"
"yoast/phpunit-polyfills": "^4.0",
"automattic/vipwpcs": "^3.0",
"phpstan/phpstan": "^1.12",
"szepeviktor/phpstan-wordpress": "^1.3"
}
}
Loading
Loading