@lando/drupal 1.14.0 → 1.14.1

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 CHANGED
@@ -1,5 +1,9 @@
1
1
  ## {{ UNRELEASED_VERSION }} - [{{ UNRELEASED_DATE }}]({{ UNRELEASED_LINK }})
2
2
 
3
+ ## v1.14.1 - [February 20, 2026](https://github.com/lando/drupal/releases/tag/v1.14.1)
4
+
5
+ * Updated to [@lando/php@1.11.1](https://github.com/lando/php/releases/tag/v1.11.1)
6
+
3
7
  ## v1.14.0 - [February 19, 2026](https://github.com/lando/drupal/releases/tag/v1.14.0)
4
8
 
5
9
  * Added `drush_uri` configuration option to set `DRUSH_OPTIONS_URI` environment variable in the appserver service with SSL support
@@ -1,5 +1,10 @@
1
1
  ## {{ UNRELEASED_VERSION }} - [{{ UNRELEASED_DATE }}]({{ UNRELEASED_LINK }})
2
2
 
3
+ ## v1.11.1 - [February 20, 2026](https://github.com/lando/php/releases/tag/v1.11.1)
4
+
5
+ * Fixed database type detection when no version is specified
6
+ * Added npm edge-to-latest tag promotion on release
7
+
3
8
  ## v1.11.0 - [February 19, 2026](https://github.com/lando/php/releases/tag/v1.11.0)
4
9
 
5
10
  * Fixed database client auto-detection for recipe-based services [#223](https://github.com/lando/php/pull/223)
@@ -68,12 +68,12 @@ const detectDatabaseClient = (options, debug = () => {}) => {
68
68
 
69
69
  for (const service of Object.values(services)) {
70
70
  const type = service?.type || '';
71
- // Match mysql:X or recipe-mysql:X (e.g., backdrop-mysql:8.0, drupal-mysql:8.4)
72
- const mysqlMatch = type.match(/(?:^|-)mysql:(\d+(?:\.\d+)?)/);
73
- if (mysqlMatch && !mysqlVersion) mysqlVersion = mysqlMatch[1];
74
- // Match mariadb:X or recipe-mariadb:X (e.g., backdrop-mariadb:10.6, drupal-mariadb:11.4)
75
- const mariaMatch = type.match(/(?:^|-)mariadb:(\d+(?:\.\d+)?)/);
76
- if (mariaMatch && !mariaVersion) mariaVersion = mariaMatch[1];
71
+ // Match mysql or mysql:X, including recipe prefixes (e.g., backdrop-mysql, backdrop-mysql:8.0)
72
+ const mysqlMatch = type.match(/(?:^|-)mysql(?::(\d+(?:\.\d+)?))?(?:$|[^a-z])/);
73
+ if (mysqlMatch && !mysqlVersion) mysqlVersion = mysqlMatch[1] || '8.0';
74
+ // Match mariadb or mariadb:X, including recipe prefixes (e.g., backdrop-mariadb:10.6)
75
+ const mariaMatch = type.match(/(?:^|-)mariadb(?::(\d+(?:\.\d+)?))?(?:$|[^a-z])/);
76
+ if (mariaMatch && !mariaVersion) mariaVersion = mariaMatch[1] || '11.4';
77
77
  }
78
78
 
79
79
  if (mariaVersion && mysqlVersion) {
@@ -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.0",
4
+ "version": "1.11.1",
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-DXgh9l91jzrUk7wGgfTLLdlHzWnILc+VNJzPqtiTLa6sx9APcbUTQO4ns4efDjto64+cyRYqiyMSGAxrEmP/TA==",
70
- "shasum": "bbaaf72ebdb5eaf2e8f94157cbad92022356e662",
71
- "filename": "lando-php-1.11.0.tgz",
72
- "unpackedSize": 3058868
69
+ "integrity": "sha512-YARvLV+LsZ5LloDW2E7r3stkptHPkCtMh7VrEQu7Wa0pNF1N8TAQJlGxIRrWWuVT/6N7mgw+IWgro3CtPlCKsw==",
70
+ "shasum": "74c9af6bc8853760d8ca3a57528658580f99e409",
71
+ "filename": "lando-php-1.11.1.tgz",
72
+ "unpackedSize": 3059346
73
73
  }
74
74
  }
@@ -50,10 +50,15 @@ mkdir -p /etc/mysql/conf.d
50
50
  cat > /etc/mysql/conf.d/lando.cnf << 'MYCNF'
51
51
  [client]
52
52
  default-character-set=utf8mb4
53
+ # Use PREFERRED so SSL is used when available but self-signed certs
54
+ # (e.g. MySQL 5.7 defaults) don't cause verification failures.
55
+ # Preserves SSL for servers that support it
56
+ ssl-mode=PREFERRED
53
57
 
54
58
  [mysqldump]
55
59
  # Prevent column-statistics errors with newer mysqldump
56
60
  skip-column-statistics
61
+ ssl-mode=PREFERRED
57
62
  MYCNF
58
63
 
59
64
  if ! mysql --version 2>/dev/null; then
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@lando/drupal",
3
3
  "description": "A Lando plugin that provides a tight integration with Drupal.",
4
- "version": "1.14.0",
4
+ "version": "1.14.1",
5
5
  "author": "Mike Pirog @pirog",
6
6
  "license": "MIT",
7
7
  "repository": "lando/drupal",
@@ -46,7 +46,7 @@
46
46
  "@lando/mariadb": "^1.8.0",
47
47
  "@lando/mssql": "^1.4.3",
48
48
  "@lando/mysql": "^1.6.0",
49
- "@lando/php": "^1.11.0",
49
+ "@lando/php": "^1.11.1",
50
50
  "@lando/postgres": "^1.6.0",
51
51
  "lodash": "^4.17.21",
52
52
  "semver": "^7.7.2"
@@ -75,9 +75,9 @@
75
75
  "semver"
76
76
  ],
77
77
  "dist": {
78
- "integrity": "sha512-Mgd7jSGj9fr9dOcPdKqoC4BRk/gXLkOTY7MlfwveMIiAZrybU4zpxphzji3f94FdiuFrPr+U2fEWKe4ons8t9Q==",
79
- "shasum": "8ac87472662a3150a13d983c6617a4ed68883898",
80
- "filename": "lando-drupal-1.14.0.tgz",
81
- "unpackedSize": 10429789
78
+ "integrity": "sha512-Iy55JfT3twXVmLLWJdeak+3hlc4u76uZo5jvxc4FbmDwGByMtXDfZ+3n66do5dp0KPcifiCSVL6bdd1n7HevDQ==",
79
+ "shasum": "76d0482382c275ce0efaeacb35129d28d07ba186",
80
+ "filename": "lando-drupal-1.14.1.tgz",
81
+ "unpackedSize": 10430440
82
82
  }
83
83
  }