Skip to content

Commit 953a126

Browse files
committed
Update ezyang/htmlpurifier dependency to version 4.17.
1 parent 923c309 commit 953a126

File tree

7 files changed

+30
-5
lines changed

7 files changed

+30
-5
lines changed

.github/workflows/build.yml

+5
Original file line numberDiff line numberDiff line change
@@ -65,8 +65,13 @@ jobs:
6565
uses: niden/actions-memcached@v7
6666

6767
- name: Install dependencies.
68+
if: matrix.php != '8.4'
6869
run: composer update $DEFAULT_COMPOSER_FLAGS
6970

71+
- name: Install dependencies with PHP 8.4.
72+
if: matrix.php == '8.4'
73+
run: composer update $DEFAULT_COMPOSER_FLAGS --ignore-platform-reqs
74+
7075
- name: Run tests with PHPUnit and generate coverage.
7176
if: matrix.php == '7.4'
7277
run: vendor/bin/phpunit --verbose --exclude-group $PHPUNIT_EXCLUDE_GROUP --coverage-clover=coverage.xml --colors=always

.github/workflows/ci-mssql.yml

+5
Original file line numberDiff line numberDiff line change
@@ -66,8 +66,13 @@ jobs:
6666
run: composer self-update
6767

6868
- name: Install dependencies with composer
69+
if: matrix.php != '8.4'
6970
run: composer update --prefer-dist --no-interaction --no-progress --optimize-autoloader --ansi
7071

72+
- name: Install dependencies with PHP 8.4.
73+
if: matrix.php == '8.4'
74+
run: composer update --prefer-dist --no-interaction --no-progress --optimize-autoloader --ignore-platform-reqs --ansi
75+
7176
- name: Run MSSQL tests with PHPUnit and generate coverage.
7277
run: vendor/bin/phpunit --group mssql --coverage-clover=coverage.xml --colors=always
7378

.github/workflows/ci-mysql.yml

+6-1
Original file line numberDiff line numberDiff line change
@@ -47,9 +47,14 @@ jobs:
4747
php-version: ${{ matrix.php }}
4848
tools: composer:v2, pecl
4949

50-
- name: Install dependencies with composer.
50+
- name: Install dependencies with composer
51+
if: matrix.php != '8.4'
5152
run: composer update --prefer-dist --no-interaction --no-progress --optimize-autoloader --ansi
5253

54+
- name: Install dependencies with PHP 8.4.
55+
if: matrix.php == '8.4'
56+
run: composer update --prefer-dist --no-interaction --no-progress --optimize-autoloader --ignore-platform-reqs --ansi
57+
5358
- name: Run MySQL tests with PHPUnit and generate coverage.
5459
run: vendor/bin/phpunit --group mysql --coverage-clover=coverage.xml --colors=always
5560

.github/workflows/ci-pgsql.yml

+6-1
Original file line numberDiff line numberDiff line change
@@ -51,9 +51,14 @@ jobs:
5151
- name: Update composer.
5252
run: composer self-update
5353

54-
- name: Install dependencies with composer.
54+
- name: Install dependencies with composer
55+
if: matrix.php != '8.4'
5556
run: composer update --prefer-dist --no-interaction --no-progress --optimize-autoloader --ansi
5657

58+
- name: Install dependencies with PHP 8.4.
59+
if: matrix.php == '8.4'
60+
run: composer update --prefer-dist --no-interaction --no-progress --optimize-autoloader --ignore-platform-reqs --ansi
61+
5762
- name: Run Pgsql tests with PHPUnit and generate coverage.
5863
run: vendor/bin/phpunit --group pgsql --coverage-clover=coverage.xml --colors=always
5964

.github/workflows/ci-sqlite.yml

+6-1
Original file line numberDiff line numberDiff line change
@@ -40,9 +40,14 @@ jobs:
4040
- name: Update composer.
4141
run: composer self-update
4242

43-
- name: Install dependencies with composer.
43+
- name: Install dependencies with composer
44+
if: matrix.php != '8.4'
4445
run: composer update --prefer-dist --no-interaction --no-progress --optimize-autoloader --ansi
4546

47+
- name: Install dependencies with PHP 8.4.
48+
if: matrix.php == '8.4'
49+
run: composer update --prefer-dist --no-interaction --no-progress --optimize-autoloader --ignore-platform-reqs --ansi
50+
4651
- name: Run SQLite tests with PHPUnit and generate coverage.
4752
run: vendor/bin/phpunit --group sqlite --coverage-clover=coverage.xml --colors=always
4853

composer.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -73,7 +73,7 @@
7373
"ext-ctype": "*",
7474
"lib-pcre": "*",
7575
"yiisoft/yii2-composer": "~2.0.4",
76-
"ezyang/htmlpurifier": "^4.6",
76+
"ezyang/htmlpurifier": "^4.17",
7777
"cebe/markdown": "~1.0.0 | ~1.1.0 | ~1.2.0",
7878
"bower-asset/jquery": "3.7.*@stable | 3.6.*@stable | 3.5.*@stable | 3.4.*@stable | 3.3.*@stable | 3.2.*@stable | 3.1.*@stable | 2.2.*@stable | 2.1.*@stable | 1.11.*@stable | 1.12.*@stable",
7979
"bower-asset/inputmask": "^5.0.8 ",

framework/composer.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -68,7 +68,7 @@
6868
"ext-ctype": "*",
6969
"lib-pcre": "*",
7070
"yiisoft/yii2-composer": "~2.0.4",
71-
"ezyang/htmlpurifier": "^4.6",
71+
"ezyang/htmlpurifier": "^4.17",
7272
"cebe/markdown": "~1.0.0 | ~1.1.0 | ~1.2.0",
7373
"bower-asset/jquery": "3.7.*@stable | 3.6.*@stable | 3.5.*@stable | 3.4.*@stable | 3.3.*@stable | 3.2.*@stable | 3.1.*@stable | 2.2.*@stable | 2.1.*@stable | 1.11.*@stable | 1.12.*@stable",
7474
"bower-asset/inputmask": "^5.0.8 ",

0 commit comments

Comments
 (0)