@lando/laravel 1.12.1 → 1.12.3
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/CHANGELOG.md +9 -0
- package/builders/laravel.js +1 -2
- package/netlify.toml +1 -1
- package/node_modules/@lando/php/CHANGELOG.md +7 -0
- package/node_modules/@lando/php/node_modules/@lando/nginx/CHANGELOG.md +2 -0
- package/node_modules/@lando/php/node_modules/@lando/nginx/config/launch.sh +9 -0
- package/node_modules/@lando/php/node_modules/@lando/nginx/netlify.toml +1 -1
- package/node_modules/@lando/php/node_modules/@lando/nginx/package.json +5 -5
- package/node_modules/@lando/php/package.json +5 -5
- package/node_modules/@lando/php/scripts/install-composer.sh +3 -9
- package/node_modules/@lando/php/scripts/mariadb-compat-install.sh +0 -3
- package/package.json +7 -7
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,14 @@
|
|
|
1
1
|
## {{ UNRELEASED_VERSION }} - [{{ UNRELEASED_DATE }}]({{ UNRELEASED_LINK }})
|
|
2
2
|
|
|
3
|
+
## v1.12.3 - [March 5, 2026](https://github.com/lando/laravel/releases/tag/v1.12.3)
|
|
4
|
+
|
|
5
|
+
* Removed `--ansi` flag from composer tooling command to prevent escape codes in redirected output
|
|
6
|
+
* Fixed MySQL 8.4 startup failure by removing hardcoded `mysql_native_password` authentication [lando/mysql#69](https://github.com/lando/mysql/issues/69)
|
|
7
|
+
|
|
8
|
+
## v1.12.2 - [February 25, 2026](https://github.com/lando/laravel/releases/tag/v1.12.2)
|
|
9
|
+
|
|
10
|
+
* Updated to [@lando/php@1.11.2](https://github.com/lando/php/releases/tag/v1.11.2) for composer install fix and MariaDB mysqldump compatibility.
|
|
11
|
+
|
|
3
12
|
## v1.12.1 - [February 22, 2026](https://github.com/lando/laravel/releases/tag/v1.12.1)
|
|
4
13
|
|
|
5
14
|
* Updated to [@lando/php@1.11.1](https://github.com/lando/php/releases/tag/v1.11.1) for PHP 8.5 support, database client auto-detection, and more.
|
package/builders/laravel.js
CHANGED
|
@@ -37,7 +37,7 @@ const getDatabaseType = options => {
|
|
|
37
37
|
const toolingDefaults = {
|
|
38
38
|
'composer': {
|
|
39
39
|
service: 'appserver',
|
|
40
|
-
cmd: 'composer
|
|
40
|
+
cmd: 'composer',
|
|
41
41
|
},
|
|
42
42
|
'db-import <file>': {
|
|
43
43
|
service: ':host',
|
|
@@ -169,7 +169,6 @@ const getServices = options => ({
|
|
|
169
169
|
},
|
|
170
170
|
database: {
|
|
171
171
|
config: getServiceConfig(options, ['database']),
|
|
172
|
-
authentication: 'mysql_native_password',
|
|
173
172
|
type: `laravel-${options.database}`,
|
|
174
173
|
portforward: true,
|
|
175
174
|
creds: {
|
package/netlify.toml
CHANGED
|
@@ -10,7 +10,7 @@
|
|
|
10
10
|
[[context.deploy-preview.plugins]]
|
|
11
11
|
package = "netlify-plugin-checklinks"
|
|
12
12
|
[context.deploy-preview.plugins.inputs]
|
|
13
|
-
todoPatterns = [ "load", "CHANGELOG.html", "x.com", "twitter.com", "/v/" ]
|
|
13
|
+
todoPatterns = [ "load", "CHANGELOG.html", "x.com", "twitter.com", "/v/", "hub.docker.com" ]
|
|
14
14
|
skipPatterns = [ ".rss", ".gif", ".jpg" ]
|
|
15
15
|
checkExternal = true
|
|
16
16
|
|
|
@@ -1,5 +1,12 @@
|
|
|
1
1
|
## {{ UNRELEASED_VERSION }} - [{{ UNRELEASED_DATE }}]({{ UNRELEASED_LINK }})
|
|
2
2
|
|
|
3
|
+
## v1.11.2 - [February 25, 2026](https://github.com/lando/php/releases/tag/v1.11.2)
|
|
4
|
+
|
|
5
|
+
* Fixed composer install crash caused by legacy prestissimo removal running as wrong user
|
|
6
|
+
* Improved composer install script to default to latest stable
|
|
7
|
+
* Fixed `mysqldump` warning for unknown option on MariaDB 11.4/11.8 [#237](https://github.com/lando/php/issues/237)
|
|
8
|
+
* Updated to [@lando/nginx@1.6.0](https://github.com/lando/nginx/releases/tag/v1.6.0)
|
|
9
|
+
|
|
3
10
|
## v1.11.1 - [February 20, 2026](https://github.com/lando/php/releases/tag/v1.11.1)
|
|
4
11
|
|
|
5
12
|
* Fixed database type detection when no version is specified
|
|
@@ -1,5 +1,7 @@
|
|
|
1
1
|
## {{ UNRELEASED_VERSION }} - [{{ UNRELEASED_DATE }}]({{ UNRELEASED_LINK }})
|
|
2
2
|
|
|
3
|
+
## v1.6.0 - [February 23, 2026](https://github.com/lando/nginx/releases/tag/v1.6.0)
|
|
4
|
+
|
|
3
5
|
## v1.5.0 - [August 31, 2025](https://github.com/lando/nginx/releases/tag/v1.5.0)
|
|
4
6
|
|
|
5
7
|
* Switched images to [bitnamilegacy](https://github.com/bitnami/containers/issues/83267) namespace
|
|
@@ -47,6 +47,15 @@ fi
|
|
|
47
47
|
lando_info "Rendered template /tmp/vhosts.lando to /opt/bitnami/nginx/conf/vhosts/lando.conf"
|
|
48
48
|
lando_debug $(cat /opt/bitnami/nginx/conf/vhosts/lando.conf)
|
|
49
49
|
|
|
50
|
+
# Set nginx worker user to www-data so it can serve files created by PHP
|
|
51
|
+
# Bitnami's nginx-env.sh hardcodes NGINX_DAEMON_USER=daemon which overwrites
|
|
52
|
+
# any env var we set, so we patch it before the entrypoint runs
|
|
53
|
+
# See: https://github.com/lando/drupal/issues/124
|
|
54
|
+
if [ -f "/opt/bitnami/scripts/nginx-env.sh" ]; then
|
|
55
|
+
sed -i 's/export NGINX_DAEMON_USER="daemon"/export NGINX_DAEMON_USER="www-data"/' /opt/bitnami/scripts/nginx-env.sh
|
|
56
|
+
sed -i 's/export NGINX_DAEMON_GROUP="daemon"/export NGINX_DAEMON_GROUP="www-data"/' /opt/bitnami/scripts/nginx-env.sh
|
|
57
|
+
fi
|
|
58
|
+
|
|
50
59
|
# Detect and run the correct entrypoint script. THANKS BITNAMI!
|
|
51
60
|
if [ -f "/opt/bitnami/scripts/nginx/entrypoint.sh" ]; then
|
|
52
61
|
/opt/bitnami/scripts/nginx/entrypoint.sh /opt/bitnami/scripts/nginx/run.sh
|
|
@@ -10,7 +10,7 @@
|
|
|
10
10
|
[[context.deploy-preview.plugins]]
|
|
11
11
|
package = "netlify-plugin-checklinks"
|
|
12
12
|
[context.deploy-preview.plugins.inputs]
|
|
13
|
-
todoPatterns = [ "load", "CHANGELOG.html", "x.com", "twitter.com", "/v/" ]
|
|
13
|
+
todoPatterns = [ "load", "CHANGELOG.html", "x.com", "twitter.com", "/v/", "hub.docker.com" ]
|
|
14
14
|
skipPatterns = [ ".rss", ".gif", ".jpg" ]
|
|
15
15
|
checkExternal = true
|
|
16
16
|
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@lando/nginx",
|
|
3
3
|
"description": "A Lando plugin that provides a tight integration with NGINX.",
|
|
4
|
-
"version": "1.
|
|
4
|
+
"version": "1.6.0",
|
|
5
5
|
"author": "Mike Pirog @pirog",
|
|
6
6
|
"license": "MIT",
|
|
7
7
|
"repository": "lando/nginx",
|
|
@@ -62,9 +62,9 @@
|
|
|
62
62
|
"lodash"
|
|
63
63
|
],
|
|
64
64
|
"dist": {
|
|
65
|
-
"integrity": "sha512-
|
|
66
|
-
"shasum": "
|
|
67
|
-
"filename": "lando-nginx-1.
|
|
68
|
-
"unpackedSize":
|
|
65
|
+
"integrity": "sha512-hFMXf957vKd++pvHh08Ywc8h2Aftg1uDg+4Pt4HqsTQxYSnlN8ayoOVYphV7cUe2WV1gRIbFCLz5pKAPak/bYQ==",
|
|
66
|
+
"shasum": "648e64c6fc22418c8cd65b6ebe3274d16a6dc115",
|
|
67
|
+
"filename": "lando-nginx-1.6.0.tgz",
|
|
68
|
+
"unpackedSize": 1439572
|
|
69
69
|
}
|
|
70
70
|
}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@lando/php",
|
|
3
3
|
"description": "A Lando plugin that provides a tight integration with PHP.",
|
|
4
|
-
"version": "1.11.
|
|
4
|
+
"version": "1.11.2",
|
|
5
5
|
"author": "Mike Pirog @pirog",
|
|
6
6
|
"license": "MIT",
|
|
7
7
|
"repository": "lando/php",
|
|
@@ -66,9 +66,9 @@
|
|
|
66
66
|
"semver"
|
|
67
67
|
],
|
|
68
68
|
"dist": {
|
|
69
|
-
"integrity": "sha512-
|
|
70
|
-
"shasum": "
|
|
71
|
-
"filename": "lando-php-1.11.
|
|
72
|
-
"unpackedSize":
|
|
69
|
+
"integrity": "sha512-Jn6jP037tdYErBJBdIectKZxAen896JEtQD7sM0/OIztjpogAS94m6AGLfGqlj9g13nPyg2X9m8jR8V7gyIzkw==",
|
|
70
|
+
"shasum": "3abc7d8bccedcaeb8edb0557dc920475dea2273c",
|
|
71
|
+
"filename": "lando-php-1.11.2.tgz",
|
|
72
|
+
"unpackedSize": 3060141
|
|
73
73
|
}
|
|
74
74
|
}
|
|
@@ -24,17 +24,11 @@ elif [ "$VERSION" = 'preview' ]; then
|
|
|
24
24
|
php /tmp/composer-setup.php --install-dir=/usr/local/bin --filename=composer --preview
|
|
25
25
|
elif [ "$VERSION" = 'snapshot' ]; then
|
|
26
26
|
php /tmp/composer-setup.php --install-dir=/usr/local/bin --filename=composer --snapshot
|
|
27
|
-
|
|
27
|
+
elif [ -n "$VERSION" ]; then
|
|
28
28
|
php /tmp/composer-setup.php --install-dir=/usr/local/bin --filename=composer --version="$VERSION"
|
|
29
|
+
else
|
|
30
|
+
php /tmp/composer-setup.php --install-dir=/usr/local/bin --filename=composer
|
|
29
31
|
fi
|
|
30
32
|
|
|
31
33
|
# Remove the setup script
|
|
32
34
|
php -r "unlink('/tmp/composer-setup.php');"
|
|
33
|
-
|
|
34
|
-
# Check if anything is installed globally
|
|
35
|
-
if [ -f /var/www/.composer/composer.json ]; then
|
|
36
|
-
# If this is version 2 then let's make sure hirak/prestissimo is removed
|
|
37
|
-
if composer --version 2>/dev/null | grep -E "Composer (version )?2." > /dev/null; then
|
|
38
|
-
composer global remove hirak/prestissimo
|
|
39
|
-
fi
|
|
40
|
-
fi
|
|
@@ -34,9 +34,6 @@ default-character-set=utf8mb4
|
|
|
34
34
|
# Prevent SSL errors when connecting to servers without SSL
|
|
35
35
|
disable-ssl-verify-server-cert
|
|
36
36
|
|
|
37
|
-
[mysqldump]
|
|
38
|
-
# MySQL 8 uses this; MariaDB safely ignores it via loose- prefix
|
|
39
|
-
loose-skip-column-statistics
|
|
40
37
|
MYCNF
|
|
41
38
|
|
|
42
39
|
echo "MariaDB compatibility wrappers installed"
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@lando/laravel",
|
|
3
3
|
"description": "A Lando plugin that provides a tight integration with Laravel.",
|
|
4
|
-
"version": "1.12.
|
|
4
|
+
"version": "1.12.3",
|
|
5
5
|
"author": "Mike Pirog @pirog",
|
|
6
6
|
"license": "MIT",
|
|
7
7
|
"repository": "lando/laravel",
|
|
@@ -47,7 +47,7 @@
|
|
|
47
47
|
"@lando/memcached": "^1.4.2",
|
|
48
48
|
"@lando/mssql": "^1.4.3",
|
|
49
49
|
"@lando/mysql": "^1.6.0",
|
|
50
|
-
"@lando/php": "^1.11.
|
|
50
|
+
"@lando/php": "^1.11.2",
|
|
51
51
|
"@lando/postgres": "^1.5.0",
|
|
52
52
|
"@lando/redis": "^1.2.3",
|
|
53
53
|
"lodash": "^4.17.21"
|
|
@@ -55,7 +55,7 @@
|
|
|
55
55
|
"devDependencies": {
|
|
56
56
|
"@babel/eslint-parser": "^7.23.10",
|
|
57
57
|
"@lando/leia": "^1.0.0-beta.3",
|
|
58
|
-
"@lando/vitepress-theme-default-plus": "^1.1.
|
|
58
|
+
"@lando/vitepress-theme-default-plus": "^1.1.5",
|
|
59
59
|
"chai": "~4.3.4",
|
|
60
60
|
"command-line-test": "^1.0.10",
|
|
61
61
|
"eslint": "^8.56.0",
|
|
@@ -76,9 +76,9 @@
|
|
|
76
76
|
"lodash"
|
|
77
77
|
],
|
|
78
78
|
"dist": {
|
|
79
|
-
"integrity": "sha512-
|
|
80
|
-
"shasum": "
|
|
81
|
-
"filename": "lando-laravel-1.12.
|
|
82
|
-
"unpackedSize":
|
|
79
|
+
"integrity": "sha512-HFbCbiZcxVy0awruCuAT09SnXfSkEyjFnMhC/wr1esOqSeN9uQjAFf3Yvs0IzKeWWDKM8YBQHpCcu30Pnc9Nrw==",
|
|
80
|
+
"shasum": "aea1aa69cb212cbd112ba7c0f2e239ea65086673",
|
|
81
|
+
"filename": "lando-laravel-1.12.3.tgz",
|
|
82
|
+
"unpackedSize": 13205271
|
|
83
83
|
}
|
|
84
84
|
}
|