Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

chore: Update dependencies #2619

Merged
merged 8 commits into from
Nov 6, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
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: 1 addition & 1 deletion .github/workflows/phpunit.yml
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,7 @@ jobs:
- run: devenv shell info-setup
- run: sudo mount -t tmpfs tmpfs $(pwd)/.devenv/profile/lib/mysql -o size=4G
- run: devenv up &
- run: devenv shell composer update laminas/laminas-code cocur/slugify
- run: devenv shell composer update 'laminas/*' cocur/slugify
- run: devenv shell test-phpunit

mysql:
Expand Down
2 changes: 1 addition & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -130,7 +130,7 @@ debug-config-test: .make.config.build.debug
touch $@

.make.install.composer-dependencies:
composer update laminas/laminas-code cocur/slugify
composer update 'laminas/*' cocur/slugify
composer install
composer install -d recovery/common
composer bin all install
Expand Down
8 changes: 5 additions & 3 deletions UPGRADE-5.7.md
Original file line number Diff line number Diff line change
Expand Up @@ -13,14 +13,16 @@ This changelog references changes done in Shopware 5.7 patch versions.

* Updated `cocur/slugify` to version 4.5.1 for PHP 8.0 and newer
* Updated `doctrine/orm` to version 2.15.5
* Updated `google/cloud-storage` to version 1.33.2
* Updated `google/cloud-storage` to version 1.34.0
* Updated `guzzlehttp/guzzle` to version 7.8.0
* Updated `guzzlehttp/psr7` to version 2.6.1
* Updated `monolog/monolog` to version 2.9.2
* Updated `mpdf/mpdf` to version 8.2.0
* Updated `laminas/laminas-code` to version 4.12.0 for PHP 8.1 and newer
* Updated `laminas/laminas-code` to version 4.13.0 for PHP 8.1 and newer
* Updated `laminas/laminas-escaper` to version 2.13.0 for PHP 8.1 and newer
* Updated `phpunit/phpuit` to version 9.6.11
* Updated `setasign/fpdf` to version 1.8.6
* Updated `setasign/fpdi` to version 2.4.1
* Updated `setasign/fpdi` to version 2.5.0
* Updated `symfony/polyfill-php80` to version 1.28.0
* Updated `symfony/polyfill-php81` to version 1.28.0
* Updated `symfony/polyfill-php82` to version 1.28.0
Expand Down
2 changes: 1 addition & 1 deletion build/build.xml
Original file line number Diff line number Diff line change
Expand Up @@ -99,7 +99,7 @@
<exec executable="${script.php}" failonerror="true">
<arg value="composer.phar"/>
<arg value="update"/>
<arg value="laminas/laminas-code cocur/slugify"/>
<arg value="'laminas/*' cocur/slugify"/>
</exec>

<exec executable="${script.php}" failonerror="true">
Expand Down
22 changes: 11 additions & 11 deletions composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -54,21 +54,21 @@
"elasticsearch/elasticsearch": "^7",
"fig/link-util": "1.1.2",
"friendsofphp/proxy-manager-lts": "1.0.16",
"google/cloud-storage": "1.33.2",
"google/cloud-storage": "1.34.0",
"guzzlehttp/guzzle": "~7.8.0",
"guzzlehttp/psr7": "~2.6.1",
"laminas/laminas-code": "4.7.1 || 4.12.0",
"laminas/laminas-escaper": "2.12.0",
"laminas/laminas-code": "4.7.1 || 4.13.0",
"laminas/laminas-escaper": "2.12.0 || 2.13.0",
"league/flysystem": "~1.1.4",
"league/flysystem-aws-s3-v3": "1.0.30",
"monolog/monolog": "2.9.1",
"monolog/monolog": "2.9.2",
"mpdf/mpdf": "8.2.0",
"ongr/elasticsearch-dsl": "7.2.2",
"psr/link": "1.0.0",
"psr/log": "1.1.4",
"ramsey/uuid": "4.2.3",
"setasign/fpdf": "1.8.6",
"setasign/fpdi": "2.4.1",
"setasign/fpdi": "2.5.0",
"stecman/symfony-console-completion": "0.11.0",
"superbalist/flysystem-google-storage": "7.2.2",
"symfony/config": "~4.4.34",
Expand Down Expand Up @@ -109,17 +109,17 @@
"behat/gherkin": "4.9.0",
"behat/mink": "1.10.0",
"behat/mink-selenium2-driver": "1.6.0",
"friends-of-behat/mink-extension": "2.7.3",
"friends-of-behat/mink-extension": "2.7.4",
"php-parallel-lint/php-var-dump-check": "^0.5",
"phpspec/prophecy-phpunit": "^2.0",
"phpstan/extension-installer": "1.3.1",
"phpstan/phpstan": "1.10.35",
"phpstan/phpstan-doctrine": "1.3.43",
"phpstan/phpstan-phpunit": "1.3.14",
"phpstan/phpstan-symfony": "1.3.2",
"phpstan/phpstan": "1.10.41",
"phpstan/phpstan-doctrine": "1.3.45",
"phpstan/phpstan-phpunit": "1.3.15",
"phpstan/phpstan-symfony": "1.3.5",
"phpunit/phpunit": "^9.6",
"sensiolabs/behat-page-object-extension": "2.3.7",
"staabm/phpstan-dba": "0.2.75",
"staabm/phpstan-dba": "0.2.79",
"symfony/browser-kit": "~4.4.27",
"symfony/dom-crawler": "~4.4.30"
},
Expand Down
Loading