Skip to content

Commit 8a7c450

Browse files
committed
Merge branch 'develop' for v4.4.2
2 parents a25d72d + 0f0a77c commit 8a7c450

File tree

6 files changed

+42
-40
lines changed

6 files changed

+42
-40
lines changed

.github/workflows/test_and_build.yml

Lines changed: 2 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -125,11 +125,8 @@ jobs:
125125
126126
- name: Install docker-compose
127127
run: |
128-
VERSION=$(curl --silent "https://api.github.com/repos/docker/compose/releases/latest" |
129-
grep '"tag_name":' |
130-
sed -E 's/.*"([^"]+)".*/\1/'
131-
)
132-
sudo curl -L "https://github.com/docker/compose/releases/download/$VERSION/docker-compose-$(uname -s)-$(uname -m)" -o /usr/local/bin/docker-compose
128+
sudo curl -L https://github.com/docker/compose/releases/download/1.29.2/docker-compose-$(uname -s)-$(uname -m) -o /usr/local/bin/docker-compose
129+
sudo chmod +x /usr/local/bin/docker-compose
133130
134131
- name: Install dependencies
135132
run: |

VERSION

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
4.4.1
1+
4.4.2

composer.json

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -33,11 +33,11 @@
3333
"easyengine/cron-command": "v1.2.0",
3434
"easyengine/log-command": "v1.1.0",
3535
"easyengine/mailhog-command": "v1.0.2",
36-
"easyengine/service-command": "v1.3.0",
36+
"easyengine/service-command": "v1.3.1",
3737
"easyengine/shell-command": "v1.1.0",
38-
"easyengine/site-command": "v2.9.1",
39-
"easyengine/site-type-php": "v1.6.0",
40-
"easyengine/site-type-wp": "v1.6.0",
38+
"easyengine/site-command": "v2.9.2",
39+
"easyengine/site-type-php": "v1.6.1",
40+
"easyengine/site-type-wp": "v1.6.1",
4141
"monolog/monolog": "1.24.0",
4242
"mustache/mustache": "2.13.0",
4343
"rmccue/requests": "1.8.0",

composer.lock

Lines changed: 25 additions & 25 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

php/EE/Migration/GlobalContainers.php

Lines changed: 5 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -164,8 +164,10 @@ public static function disable_support_containers() {
164164
}
165165

166166
$command = \EE_DOCKER::docker_compose_with_custom() . ' --project-name=ee down';
167-
if ( ! EE::exec( $command ) ) {
168-
throw new \Exception( 'Unable to remove support container.' );
169-
}
167+
/**
168+
* Return code can be 1 due to error in removing network. This is expected.
169+
* TODO: Get a fix for global network / make them external so that the return code is not 1.
170+
*/
171+
EE::exec( $command );
170172
}
171173
}

utils/make-phar.php

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -68,14 +68,14 @@ function add_file( $phar, $path ) {
6868
'\/nb\/oxymel\/',
6969
'-command\/src\/',
7070
'\/ee\/[^\n]+?-command\/',
71-
'\/symfony\/(?!finder|polyfill-mbstring)[^\/]+\/',
71+
'\/symfony\/(?!finder|polyfill-mbstring|polyfill-ctype|polyfill-php81|polyfill-php80|polyfill-php73)[^\/]+\/',
7272
'\/(?:dealerdirect|squizlabs|wimg)\/',
7373
);
7474
} else {
7575
$strips = array(
7676
'\/(?:behat|gherkin)\/src\/',
7777
'\/phpunit\/',
78-
'\/symfony\/(?!console|filesystem|finder|polyfill-mbstring|process|serializer|service-contracts)',
78+
'\/symfony\/(?!console|filesystem|finder|polyfill-mbstring|polyfill-ctype|polyfill-php81|polyfill-php80|polyfill-php73|process|serializer|service-contracts)',
7979
'\/composer\/spdx-licenses\/',
8080
'\/Composer\/(?:Command\/|Compiler\.php|Console\/|Downloader\/Pear|Installer\/Pear|Question\/|Repository\/Pear|SelfUpdate\/)',
8181
'\/(?:dealerdirect|squizlabs|wimg)\/',
@@ -171,6 +171,9 @@ function get_composer_versions( $current_version ) {
171171
->in(EE_VENDOR_DIR . '/symfony/finder')
172172
->in(EE_VENDOR_DIR . '/symfony/polyfill-mbstring')
173173
->in(EE_VENDOR_DIR . '/symfony/polyfill-ctype')
174+
->in(EE_VENDOR_DIR . '/symfony/polyfill-php73')
175+
->in(EE_VENDOR_DIR . '/symfony/polyfill-php80')
176+
->in(EE_VENDOR_DIR . '/symfony/polyfill-php81')
174177
->in(EE_VENDOR_DIR . '/monolog')
175178
->in(EE_VENDOR_DIR . '/guzzlehttp')
176179
->in(EE_VENDOR_DIR . '/ralouphie/getallheaders')

0 commit comments

Comments
 (0)